/* --- CSS BAŞLANGICI --- */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #764ba2;
    --text-dark: #333;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* HEADER & MENÜ TASARIMI */
nav {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 1001;
}

.brand img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links>li {
    position: relative;
    padding: 10px 0;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* --- DROPDOWN DÜZELTİLDİ --- */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    top: 100%;
    left: 0;
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 0px;
    border: 1px solid #f0f0f0;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50px;
    background: transparent;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-content li a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 25px;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-dark);
}

.btn-login {
    background: var(--primary-gradient);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
    white-space: nowrap;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
}

/* HERO BÖLÜMÜ */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    min-height: 80vh;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2d3748;
}

.hero-text span {
    color: #667eea;
    background: -webkit-linear-gradient(#667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
}

.store-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
}

.store-badges img {
    height: 50px;
    transition: transform 0.2s;
    cursor: pointer;
}

.store-badges img:hover {
    transform: translateY(-3px);
}

.hero-img {
    flex: 0.8;
    text-align: center;
    position: relative;
}

.hero-img img {
    height: auto;        /* Yükseklik otomatik ayarlansın */
    max-height: 700px;   /* Ama masaüstünde 700px'i geçmesin */
    width: auto;         /* Genişlik yüksekliğe göre oranlansın */
    max-width: 100%;     /* Ekrana sığmazsa küçülsün */
    
    /* 🔥 CLS PUANINI DÜZELTEN SİHİRLİ KOD 🔥 */
    aspect-ratio: 1080 / 3522; 
    
    /* Süslemeler */
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid #333;
}

/* --- SAYAÇ (ISTATISTIK) BÖLÜMÜ --- */
.stats-bar {
    background: white;
    padding: 60px 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

/* BÖLÜMLER GENEL */
.section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ÖZELLİK KARTI (Gelişmiş Versiyon) */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(118, 75, 162, 0.15);
    border-color: #dcd6f7;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-top: 15px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* İkon Kutusu (Özellikler Sayfası İçin) */
.icon-box {
    width: 70px;
    height: 70px;
    background: #f4f1ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
    transition: 0.3s;
}

.feature-card:hover .icon-box {
    background: var(--primary-gradient);
    color: white;
    transform: rotateY(180deg);
}

/* SSS ve İletişim */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.faq-item h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-item p {
    display: none;
    margin-top: 10px;
    color: #666;
}

.contact-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* KATKIDA BULUNANLAR BÖLÜMÜ */
.contributors-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contributor-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contributor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.contributor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(118, 75, 162, 0.15);
}

.contributor-card:hover::before {
    opacity: 1;
}

.contributor-logo-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f8f9ff;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    border: 2px solid transparent;
    /* Border placeholder */
}

.contributor-card:hover .contributor-logo-wrapper {
    transform: scale(1.05);
    border-color: #eee;
    background: white;
}

.contributor-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.contributor-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* "Şekilli" isim için gradient text */
}

.contributor-info .role {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

/* FOOTER */
footer {
    background: var(--primary-gradient);
    color: white;
    padding: 60px 5%;
    text-align: center;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 15px;
    font-weight: 500;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- ALT SAYFALAR İÇİN ORTAK STİLLER --- */

/* Sayfa Başlığı (Page Header) */
.page-header {
    background: var(--primary-gradient);
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* İçerik Konteynerleri */
.content-container {
    max-width: 1000px;
    margin: -50px auto 50px auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.content-section p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Özellikler Sayfası Konteyneri */
.features-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

/* Hakkımızda / Hikaye Izgarası */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: 0.3s;
}

.story-img:hover {
    transform: rotate(0deg);
}

.wide-banner {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Değerlerimiz (Hakkımızda) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e0e7ff;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

/* HMGS Nedir Sayfası Elementleri */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.topic-item {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.topic-item span:first-child {
    color: var(--text-dark);
}

.topic-item span:last-child {
    background: #eef2ff;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.highlight-box {
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.highlight-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Yasal Sayfalar (Gizlilik vb.) */
.legal-content {
    max-width: 900px;
    margin: -60px auto 60px auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-content p,
.legal-content li {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-content strong {
    color: #222;
}

.header-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.trust-banner {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e0e7ff;
}

.trust-banner img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

.trust-banner p {
    font-size: 0.9rem !important;
    color: #666;
    margin-top: 10px;
}

/* Blog Sayfası */
.blog-header {
    background: var(--primary-gradient);
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.blog-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    background: #eef2ff;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    align-self: flex-start;
    margin-bottom: 15px;
}

.blog-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #222;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.read-more-text {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.blog-card:hover .read-more-text {
    gap: 10px;
}

/* MOBİL UYUM */
@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 90px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-links .btn-login {
        display: inline-block;
        margin-top: 20px;
    }

    .store-badges {
        justify-content: center;
    }
    .store-badges {
        flex-direction: column; /* Mobilde alt alta diz */
        align-items: center;    /* Ortala */
        gap: 20px;              /* Alt alta olunca boşluğu biraz arttıralım */
    }
    
    /* 🔥 SORUNU ÇÖZEN KISIM BURASI 🔥 */
    .store-badges img {
        /* İkisini de zorla aynı yüksekliğe eşitliyoruz */
        height: 55px !important; 
        width: auto !important;  /* Genişlikleri orantılı kalsın */
        max-width: 90%; /* Ekrana sığsınlar */
    }

    /* HTML'den gelen margin (boşluk) varsa onu iptal et */
    .store-badges a {
        margin: 0 !important;
    }

    .stats-bar {
        flex-direction: column;
        gap: 40px;
        padding: 40px 5%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        width: 100%;
        display: none;
        margin-top: 10px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 30px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-img img {
        max-height: 400px;
    }

    /* Mobilde içerik alanları */
    .content-container {
        padding: 30px;
        margin-top: 0;
        border-radius: 0;
    }

    .legal-content {
        padding: 30px;
        border-radius: 0;
        margin-top: 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-img {
        transform: rotate(0deg);
        margin-bottom: 20px;
        order: -1;
    }

    .wide-banner {
        height: 200px;
    }

    .page-header {
        padding-bottom: 40px;
    }
}

/* --- YASAL SAYFALAR EK STİLLER --- */
.compliance-banner {
    margin-top: 40px;
    padding: 20px;
    background: #f0fdf4;
    /* Hafif Yeşil (Onay hissi) */
    border-radius: 15px;
    text-align: center;
    border: 1px solid #dcfce7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.compliance-banner img {
    height: 60px;
    width: auto;
}

.compliance-banner p {
    font-size: 0.95rem !important;
    color: #166534;
    font-weight: 600;
    margin: 0;
}

.support-banner {
    margin-top: 40px;
    padding: 25px;
    background: #fff4e5;
    /* Hafif turuncu (Destek hissi) */
    border-radius: 15px;
    text-align: center;
    border: 1px solid #ffe0b2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.support-banner img {
    height: 60px;
    width: auto;
}

.support-text {
    text-align: left;
}

.support-text h4 {
    margin: 0 0 5px 0;
    color: #e65100;
    font-size: 1.1rem;
}

.support-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #663c00;
}

.contract-header-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .support-banner {
        flex-direction: column;
        text-align: center;
    }

    .support-text {
        text-align: center;
    }
}

/* --- BLOG YAZISI DETAY STİLLERİ --- */
.article-hero {
    background: var(--primary-gradient);
    padding: 80px 5% 120px 5%;
    text-align: center;
    color: white;
    position: relative;
}

.article-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.article-meta {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-container {
    max-width: 800px;
    margin: -80px auto 60px auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.article-content {
    font-size: 1.15rem;
    color: #4a4a4a;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.article-content h3 {
    color: #333;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.article-content strong {
    color: #222;
    font-weight: 700;
}

blockquote {
    background: #f8f9ff;
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    padding: 20px 30px;
    font-style: italic;
    color: #555;
    font-size: 1.2rem;
    border-radius: 0 10px 10px 0;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-box {
    background: #2F2E41;
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: white;
}

.cta-box p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-box .store-badges {
    justify-content: center;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 60px 20px 100px 20px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-container {
        padding: 30px 20px;
        margin-top: -60px;
        border-radius: 15px;
    }
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-btn {
    border: 1px solid #ddd;
    background: white;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.page-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* =========================================
   ÇEREZ (COOKIE) BARI STİLLERİ
   ========================================= */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: #333;
    padding: 15px 20px;
    text-align: center;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

#cookie-banner a {
    color: #0056b3;
    text-decoration: underline;
    font-weight: 500;
}

#cookie-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 25px;
    margin-left: 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
}

#cookie-btn:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
   #cookie-banner {
        flex-direction: column;
        padding: 20px;
        
        /* 🔥 TAŞMAYI ENGELLEYEN KISIM 🔥 */
        width: auto;         /* %100 yerine auto yapıyoruz */
        left: 0;             /* Solu sıfırla */
        right: 0;            /* Sağı sıfırla (Böylece tam sığar) */
        bottom: 0;           /* En alta yapıştır */
        box-sizing: border-box; /* Padding'i genişliğe dahil et (Çok önemli!) */
    }

    #cookie-btn {
        margin-left: 0;
        margin-top: 15px; /* Biraz daha boşluk iyidir */
        width: 100%;
        display: block;
    }
}
@media (max-width: 768px) {
    .hero-img img {
        max-height: 400px; /* Mobilde boyu kısalttık */
    }
    .hero-img {
        text-align: center; /* Mobilde tekrar ortaya gelmesi daha şık durur */
    }
}