/* ========================================
   PROFESYONEL HABER TASARIMI
   HEADER MENU + FOOTER MENU + FULL RESİM KAPLAMA
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f0f2f5;
    color: #1e293b;
    overflow-x: hidden;
}

/* ========== KAYAN DÖVİZ KURU ========== */
.currency-ticker {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 2px solid #e11d48;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.currency-track {
    display: flex;
    animation: scrollCurrency 30s linear infinite;
    white-space: nowrap;
}

.currency-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.currency-item i {
    font-size: 1.1rem;
}

.currency-name {
    color: #94a3b8;
}

.currency-value {
    color: #facc15;
    font-weight: 700;
}

.currency-change.positive {
    color: #22c55e;
}

.currency-change.negative {
    color: #ef4444;
}

@keyframes scrollCurrency {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.currency-ticker:hover .currency-track {
    animation-play-state: paused;
}

/* ========== HEADER MENU ========== */
.main-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 46px;
    z-index: 999;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-area-header {
    display: flex;
    flex-direction: column;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
}

.logo-link i {
    color: #e11d48;
    font-size: 2rem;
}

.logo-link span {
    background: linear-gradient(135deg, #0f172a, #e11d48);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-highlight {
    color: #e11d48 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
}

.logo-slogan {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 2px;
    letter-spacing: 1px;
}

/* ANA MENÜ */
.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu li a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.nav-menu li a i {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: 0.2s;
}

.nav-menu li a:hover {
    color: #e11d48;
}

.nav-menu li a:hover i {
    color: #e11d48;
}

.nav-menu li a.active {
    color: #e11d48;
    border-bottom: 2px solid #e11d48;
}

.nav-menu li a.active i {
    color: #e11d48;
}

/* HEADER ARAÇLARI */
.header-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon, .user-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1.1rem;
    color: #1e293b;
}

.search-icon:hover, .user-icon:hover {
    background: #e11d48;
    color: white;
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

/* ARAMA KONTEYNERI */
.search-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.search-container.active {
    max-height: 80px;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box i {
    color: #94a3b8;
    font-size: 1.2rem;
}

.search-box input {
    flex: 1;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
}

.search-box input:focus {
    border-color: #e11d48;
}

.search-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #94a3b8;
}

/* MOBİL SIDEBAR */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.overlay.active {
    display: block;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: #0f172a;
    color: white;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.sidebar-logo i {
    color: #e11d48;
}

.sidebar-logo span span {
    color: #e11d48;
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
}

.sidebar-menu {
    list-style: none;
    padding: 1rem;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    border-radius: 12px;
    transition: 0.2s;
}

.sidebar-menu li a:hover {
    background: #fef2f2;
    color: #e11d48;
}

.sidebar-footer {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    color: #94a3b8;
    font-size: 0.8rem;
}

/* ana konteyner */
.news-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
}

/* ========== ÇİFT MANŞET LAYOUT ========== */
.double-marquee-container {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* ANA MANŞET - RESİM TAM KAPLAMA */
.main-marquee-wrapper {
    min-width: 0;
}

.marquee-news {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
    overflow: hidden;
}

.marquee-header {
    background: #0f172a;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.marquee-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-title i, .marquee-title span {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
}

.live-badge {
    background: #e11d48;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.ctrl-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.ctrl-btn:hover {
    background: #e11d48;
    transform: scale(1.05);
}

.speed-indicator {
    font-size: 0.7rem;
    background: #1e293b;
    padding: 4px 10px;
    border-radius: 20px;
    color: #cbd5e1;
    cursor: pointer;
}

/* RESİM TAM KAPLAMA MANŞET ALANI */
.marquee-viewport {
    overflow: hidden;
    min-height: 450px;
    position: relative;
}

.marquee-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.news-slide {
    min-width: 100%;
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.news-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.slide-content-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
    width: 100%;
}

.slide-number-big {
    background: #e11d48;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slide-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-desc {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.slide-category {
    background: rgba(225, 29, 72, 0.9);
    padding: 5px 14px;
    border-radius: 25px;
    font-size: 0.8rem;
    display: inline-block;
    font-weight: 600;
}

/* NUMARA KARE KUTULARI */
.number-nav-container {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 1rem;
}

.number-nav-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.number-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.number-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.number-btn:hover {
    border-color: #e11d48;
    background: #fff0f3;
    transform: translateY(-2px);
}

.number-btn.active {
    background: #e11d48;
    border-color: #e11d48;
    color: white;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

/* SAĞ TARAF: RESİMLİ KÜÇÜK MANŞET BLOĞU */
.side-marquee-wrapper {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.08);
    height: fit-content;
}

.side-news-card {
    background: white;
}

.side-header {
    background: linear-gradient(135deg, #e11d48, #b91c1c);
    padding: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.hot-badge {
    background: #facc15;
    color: #0f172a;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
}

.side-news-list {
    padding: 0.5rem;
    max-height: 500px;
    overflow-y: auto;
}

.side-news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: 0.2s;
}

.side-news-item:hover {
    background: #fef2f2;
    transform: translateX(3px);
}

.side-news-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.side-news-content {
    flex: 1;
}

.side-news-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.side-news-time {
    font-size: 0.7rem;
    color: #94a3b8;
}

.side-footer {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    color: #e11d48;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
}

/* FEATURE CARDS */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.featured-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: 0.2s;
}

.featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.featured-card i {
    font-size: 2rem;
    color: #e11d48;
    margin-bottom: 1rem;
}

/* RESİMLİ HABER LİSTESİ GRİD */
.news-list-section {
    margin-top: 1rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #e11d48, #cbd5e1);
    border-radius: 3px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
}

.news-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e11d48;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.news-content {
    padding: 1.2rem;
}

.news-category {
    display: inline-block;
    background: #f1f5f9;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e11d48;
    margin-bottom: 10px;
}

.news-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-item p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.4;
    margin-bottom: 12px;
}

.read-more {
    color: #e11d48;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ========== FOOTER MENU ========== */
.news-footer {
    background: #0f172a;
    color: #94a3b8;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
}

.footer-logo i {
    color: #e11d48;
    font-size: 1.8rem;
}

.footer-logo span {
    color: white;
}

.footer-logo span span {
    color: #e11d48;
}

.footer-about p {
    line-height: 1.6;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons i {
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s;
    color: #94a3b8;
}

.social-icons i:hover {
    color: #e11d48;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e11d48;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.85rem;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #e11d48;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 1.2rem 1.5rem;
}

.footer-bottom-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    text-decoration: none;
    color: #94a3b8;
    transition: 0.2s;
}

.footer-bottom-links a:hover {
    color: #e11d48;
}

/* SCROLLBAR */
.side-news-list::-webkit-scrollbar {
    width: 5px;
}

.side-news-list::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.side-news-list::-webkit-scrollbar-thumb {
    background: #e11d48;
    border-radius: 5px;
}

/* MOBİL UYUM */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .double-marquee-container {
        grid-template-columns: 1fr;
    }
    .side-marquee-wrapper {
        max-width: 100%;
    }
    .main-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .header-container {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .news-container {
        padding: 1rem;
    }
    .slide-title {
        font-size: 1.2rem;
    }
    .news-slide {
        height: 350px;
    }
    .slide-content-overlay {
        padding: 1.2rem;
    }
    .number-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .search-box {
        margin: 0 1rem;
    }
}

/* ========================================
   PROFESYONEL HABER TASARIMI
   HEADER MENU + FOOTER MENU + REKLAM ALANLARI
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f0f2f5;
    color: #1e293b;
    overflow-x: hidden;
}

/* ========== KAYAN DÖVİZ KURU ========== */
.currency-ticker {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 2px solid #e11d48;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.currency-track {
    display: flex;
    animation: scrollCurrency 30s linear infinite;
    white-space: nowrap;
}

.currency-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes scrollCurrency {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== REKLAM ALANLARI ========== */
.ad-banner {
    position: relative;
    margin: 1rem auto;
    max-width: 1600px;
}

.ad-container {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ad-label {
    position: absolute;
    top: 8px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 2;
    font-weight: 600;
    letter-spacing: 1px;
}

.ad-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.ad-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ad-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.ad-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: 0.2s;
}

.ad-close:hover {
    background: #e11d48;
}

/* Üst Banner */
.ad-top {
    margin: 0 auto 1.5rem auto;
    width: calc(100% - 3rem);
}

/* Sidebar Reklam */
.ad-sidebar {
    background: white;
    border-radius: 16px;
    margin-top: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.ad-sidebar-content {
    padding: 1rem;
    text-align: center;
}

.ad-sidebar-content img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.ad-sidebar-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #e11d48;
}

.ad-sidebar-content p {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 1rem;
}

.ad-btn {
    background: #e11d48;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.ad-btn:hover {
    background: #b91c1c;
    transform: scale(1.02);
}

/* İçerik Arası Banner */
.ad-inline {
    margin: 2rem auto;
}

/* Haber Listesi Üstü Küçük Banner */
.ad-list-top {
    margin: 1.5rem auto;
}

.ad-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ad-small-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 12px;
    color: white;
    font-weight: 600;
}

.ad-small-content i:first-child {
    font-size: 1.2rem;
}

/* Sticky Sidebar Reklam */
.news-grid-with-ad {
    display: flex;
    gap: 2rem;
    position: relative;
}

.news-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
}

.ad-sticky-sidebar {
    width: 320px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.ad-sticky-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.ad-sticky-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.ad-sticky-text {
    padding: 1rem;
    text-align: center;
}

.ad-sticky-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #e11d48;
}

.ad-sticky-text p {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.ad-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #e11d48;
    display: block;
    margin: 0.5rem 0;
}

.ad-sticky-text button {
    background: #0f172a;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: 0.2s;
}

.ad-sticky-text button:hover {
    background: #e11d48;
}

/* Footer Üstü Reklam */
.ad-footer-top {
    margin: 2rem auto 0 auto;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 16px;
}

.ad-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.ad-footer-item {
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}

.ad-footer-item:hover {
    transform: translateY(-3px);
}

.ad-footer-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.ad-footer-item p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
}

/* ========== DİĞER STİLLER (MEVCUT) ========== */
/* ... (önceki stillerin devamı) ... */

/* MOBİL UYUM */
@media (max-width: 1200px) {
    .news-grid-with-ad {
        flex-direction: column;
    }
    .ad-sticky-sidebar {
        width: 100%;
        position: static;
    }
    .ad-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ad-text {
        display: none;
    }
    .ad-footer-content {
        grid-template-columns: 1fr;
    }
    .ad-sticky-sidebar {
        margin-top: 1rem;
    }
    .ad-sidebar {
        margin-top: 1rem;
    }
}
/* =========================
   PHP + MYSQL EK STİLLERİ
   ========================= */
a { text-decoration: none; }
.news-image-link { display: block; }
.single-news-container { padding-top: 2rem; }
.single-news-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}
.single-news-cover {
    height: 420px;
    background-size: cover;
    background-position: center;
}
.single-news-body { padding: 2rem; }
.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}
.single-summary {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.single-content {
    line-height: 1.9;
    color: #1e293b;
    font-size: 1rem;
}

.alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.alert-danger { background: #fef2f2; color: #b91c1c; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 700;
    background: #e2e8f0;
    color: #0f172a;
}
.btn-primary { background: #e11d48; color: #fff; }
.btn-danger { background: #b91c1c; color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 10px; font-size: 0.85rem; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-control {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 12px 14px;
    outline: none;
    font-size: 0.95rem;
    background: #fff;
}
.form-control:focus { border-color: #e11d48; }
.checkbox-inline { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.table-responsive { overflow-x: auto; }
.admin-thumb { width: 70px; height: 55px; object-fit: cover; border-radius: 10px; }

.admin-auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 1rem;
}
.admin-auth-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.admin-auth-brand { color: #e11d48; font-weight: 800; margin-bottom: 1rem; }
.admin-auth-card h1 { margin-bottom: 1.5rem; }
.admin-auth-help { margin-top: 1rem; color: #64748b; font-size: 0.9rem; }

.admin-body { background: #f8fafc; font-family: 'Inter', sans-serif; }
.admin-layout { min-height: 100vh; display: grid; grid-template-columns: 280px 1fr; }
.admin-sidebar {
    background: #0f172a;
    color: #fff;
    padding: 1.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
}
.admin-logo { font-size: 1.3rem; font-weight: 800; margin-bottom: 2rem; }
.admin-nav { display: flex; flex-direction: column; gap: 10px; }
.admin-nav a {
    color: #cbd5e1;
    padding: 12px 14px;
    border-radius: 14px;
    transition: 0.2s;
}
.admin-nav a:hover { background: #1e293b; color: #fff; }
.admin-main { padding: 1.5rem; }
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.admin-panel-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 1.5rem;
}
.admin-content-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 1.5rem;
}
.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.admin-form-grid.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.stat-card {
    background: #fff;
    border-radius: 22px;
    padding: 1.4rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.stat-card span { display: block; color: #64748b; margin-bottom: 10px; }
.stat-card strong { font-size: 2rem; color: #0f172a; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 10px; border-bottom: 1px solid #e2e8f0; text-align: left; }
.admin-table th { color: #475569; font-size: 0.85rem; text-transform: uppercase; }

@media (max-width: 1200px) {
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; height: auto; }
    .admin-content-grid,
    .admin-stats-grid,
    .admin-form-grid.two-columns { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .single-news-cover { height: 260px; }
    .single-news-body { padding: 1.2rem; }
    .admin-main { padding: 1rem; }
    .admin-topbar { flex-direction: column; align-items: flex-start; }
}
