:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    --primary: #e50914;
    --primary-hover: #f40612;
    --accent: #6c5ce7;
    --accent2: #00cec9;
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --border: rgba(255,255,255,0.08);
    --gradient: linear-gradient(135deg, #e50914 0%, #6c5ce7 50%, #00cec9 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(229,9,20,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(108,92,231,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0,206,201,0.08) 0%, transparent 50%);
    z-index: -1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo,
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
}

.logo i,
.site-logo-icon { font-size: 28px; }

.site-logo-img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.site-logo-text {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-part1 { font-weight: 600; }
.logo-part2 { font-weight: 700; }

.site-logo--footer {
    justify-content: center;
    margin-bottom: 12px;
}

.site-logo--footer .site-logo-img { height: 32px; }
.site-logo--footer .site-logo-text { font-size: 20px; }
.site-logo--footer .site-logo-icon { font-size: 24px; }

.site-logo--admin .site-logo-text { font-size: 18px; }
.site-logo--admin .site-logo-img { height: 28px; }

.logo strong { color: var(--primary); }

.btn-download-nav {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-download-nav:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229,9,20,0.4);
    color: white;
}

/* Hero */
.hero {
    padding: 160px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-content .hero-desc {
    margin: 0 0 40px;
}

.hero-content .hero-buttons {
    justify-content: flex-start;
}

.hero-content .version-info {
    justify-content: flex-start;
}

/* Hero telefon mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.hero-phones {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 10px 0 20px;
}

.phone-mockup {
    position: relative;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.phone-mockup--live {
    z-index: 2;
    transform: rotate(4deg);
    margin-right: -36px;
    animation: phoneFloatRight 5s ease-in-out infinite;
}

.phone-mockup--channels {
    z-index: 1;
    transform: rotate(-7deg) translateY(28px);
    animation: phoneFloatLeft 5s ease-in-out infinite 0.4s;
}

.phone-mockup--live:hover {
    transform: rotate(2deg) scale(1.02) translateY(-6px);
    z-index: 3;
}

.phone-mockup--channels:hover {
    transform: rotate(-4deg) translateY(22px) scale(1.02);
    z-index: 3;
}

.phone-frame {
    width: 210px;
    background: linear-gradient(160deg, #32323f 0%, #1c1c26 45%, #101018 100%);
    border-radius: 34px;
    padding: 11px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-mockup--live .phone-frame {
    width: 230px;
    box-shadow:
        0 24px 55px rgba(229, 9, 20, 0.22),
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone-notch {
    width: 76px;
    height: 20px;
    background: #08080d;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 8px;
}

.phone-screen {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0a0a0f;
    aspect-ratio: 9 / 19.5;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.phone-home-bar {
    width: 72px;
    height: 4px;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    margin: 10px auto 2px;
}

.phone-live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.45);
    animation: livePulse 1.5s infinite;
    z-index: 2;
}

.phone-live-badge i {
    font-size: 5px;
}

.phone-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.phone-label--live {
    color: #ff6b6b;
}

@keyframes phoneFloatLeft {
    0%, 100% { transform: rotate(-7deg) translateY(28px); }
    50% { transform: rotate(-7deg) translateY(18px); }
}

@keyframes phoneFloatRight {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-10px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229,9,20,0.15);
    border: 1px solid rgba(229,9,20,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229,9,20,0.5);
    color: white;
}

.btn-primary.btn-lg {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Platforms */
.platforms {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.platform-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.platform-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.platform-item i { color: var(--accent); }

.platform-item.platform-plus18 {
    border-color: rgba(229,9,20,0.4);
    background: rgba(229,9,20,0.08);
}

.platform-plus18 i { color: var(--primary); }

.feature-plus18 {
    background: rgba(229,9,20,0.15) !important;
    color: var(--primary) !important;
}

.channel-plus18 {
    border-color: rgba(229,9,20,0.35);
}

.channel-plus18 i { color: var(--primary); }

/* Features */
.features { padding: 100px 0; }

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(229,9,20,0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(229,9,20,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Channels */
.channels {
    padding: 80px 0;
    background: rgba(255,255,255,0.02);
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.channel-card:hover {
    border-color: var(--accent);
    transform: scale(1.03);
}

.channel-card i { color: var(--accent2); }

/* CTA */
.cta { padding: 80px 0; }

.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(229,9,20,0.1) 0%, transparent 70%);
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
    position: relative;
}

.cta-note {
    margin-top: 20px !important;
    font-size: 14px;
    position: relative;
}

/* Install Guide */
.install-guide { padding: 80px 0 100px; }

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
}

.footer-logo,
.site-logo--footer {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo i,
.site-logo--footer .site-logo-icon { color: var(--primary); }

.footer p { color: var(--text-muted); font-size: 14px; }
.footer-copy { margin-top: 16px; font-size: 13px; }

/* Floating Download */
.floating-download {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(229,9,20,0.5);
    z-index: 99;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-download:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(229,9,20,0.5); }
    50% { box-shadow: 0 8px 40px rgba(229,9,20,0.8); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content .hero-buttons,
    .hero-content .version-info {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 8px;
    }

    .hero-phones {
        max-width: 280px;
        padding: 0 0 8px;
    }

    .phone-mockup--channels {
        display: none;
    }

    .phone-mockup--live {
        margin-right: 0;
        transform: none;
        animation: none;
    }

    .phone-mockup--live:hover {
        transform: none;
    }

    .phone-mockup--live .phone-frame {
        width: min(240px, 72vw);
    }

    .phone-frame {
        width: min(240px, 72vw);
        border-radius: 28px;
        padding: 9px;
    }

    .phone-notch {
        width: 64px;
        height: 18px;
    }

    .phone-label {
        margin-top: 10px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 48px; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 16px; }
    .hero-grid { gap: 24px; }
    .hero-phones { max-width: 220px; }
    .phone-mockup--live .phone-frame,
    .phone-frame { width: min(200px, 68vw); }
    .phone-screen {
        height: 320px;
        aspect-ratio: auto;
    }
    .hero-stats { gap: 30px; }
    .trust-badge { min-width: 100%; max-width: 100%; }
    .price-compare-table th,
    .price-compare-table td { padding: 12px 14px; font-size: 13px; }
    .price-compare-table thead { display: none; }
    .price-compare-table tbody tr {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 4px 12px;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
    }
    .price-compare-table tbody tr td { border: none; padding: 0; }
    .price-compare-table tbody tr td:first-child { grid-column: 1 / -1; font-weight: 600; }
    .price-compare-table tbody tr td.col-paid::before {
        content: 'Abonelik: ';
        color: var(--text-muted);
        font-weight: 400;
    }
    .price-compare-table tbody tr td.col-free { text-align: right; }
    .price-compare-table tbody tr td.col-free::before {
        content: 'Live Net TV: ';
        color: var(--text-muted);
        font-weight: 400;
    }
    .rating-summary-score { font-size: 42px; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 40px 24px; }
    .cta-box h2 { font-size: 24px; }
    .live-counters { gap: 16px; padding-top: 28px; }
    .counter-item { min-width: 120px; }
    .counter-num { font-size: 22px; }
    .matches-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .sticky-inner span { display: none; }
    .version-info { gap: 10px; }
    .version-info span { font-size: 11px; }
}

/* ===== YENİ: Canlı Sayaçlar ===== */
.live-counters {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
}

.live-badge-counter {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
    animation: livePulse 1.5s infinite;
}

.live-badge-counter i { font-size: 7px; }

.counter-num.counter-tick {
    animation: counterFlash 0.5s ease;
}

@keyframes counterFlash {
    0% { transform: scale(1); }
    40% { transform: scale(1.08); color: #ff6b6b; -webkit-text-fill-color: #ff6b6b; }
    100% { transform: scale(1); }
}

.counter-item {
    text-align: center;
    min-width: 140px;
}

.counter-item.highlight .counter-num {
    color: #ff6b6b;
}

.counter-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

/* ===== YENİ: Sürüm Bilgisi ===== */
.version-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.version-info span {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.version-info i { color: var(--accent2); }

.cta-box .version-info { position: relative; margin-top: 20px; }

/* ===== YENİ: Maçlar ===== */
.matches-section {
    padding: 80px 0;
    background: rgba(229,9,20,0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.match-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s;
}

.match-card:hover {
    border-color: rgba(229,9,20,0.4);
    transform: translateY(-3px);
}

.match-card.is-live {
    border-color: rgba(229,9,20,0.5);
    box-shadow: 0 0 20px rgba(229,9,20,0.15);
}

.live-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: livePulse 1.5s infinite;
}

.live-badge i { font-size: 8px; }

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.match-league {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    font-size: 18px;
    font-weight: 700;
}

.match-vs {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
}

.match-time {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.match-date {
    margin-left: 8px;
    opacity: 0.7;
}

.match-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.match-download-btn:hover {
    background: var(--primary-hover);
    color: white;
    transform: scale(1.03);
}

/* ===== Güven Rozetleri ===== */
.trust-badges-section {
    padding: 0 0 40px;
    margin-top: -20px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
    min-width: 220px;
    flex: 1 1 220px;
    max-width: 320px;
    transition: border-color 0.3s, transform 0.3s;
}

.trust-badge:hover {
    border-color: rgba(229, 9, 20, 0.35);
    transform: translateY(-2px);
}

.trust-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-badge-icon--safe {
    background: rgba(0, 206, 201, 0.15);
    color: var(--accent2);
}

.trust-badge-icon--free {
    background: rgba(108, 92, 231, 0.15);
    color: #a29bfe;
}

.trust-badge-icon--official {
    background: rgba(229, 9, 20, 0.15);
    color: #ff6b6b;
}

.trust-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

/* ===== Fiyat Karşılaştırma ===== */
.price-compare {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.price-compare-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.price-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
}

.price-compare-table th,
.price-compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.price-compare-table thead th {
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.price-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.price-compare-table td i {
    color: var(--primary);
    margin-right: 8px;
}

.col-paid {
    color: #ff8a8a;
    white-space: nowrap;
}

.col-free {
    text-align: center;
    color: var(--accent2);
    font-weight: 600;
}

.price-free-tag {
    display: inline-block;
    background: rgba(0, 206, 201, 0.15);
    color: var(--accent2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.price-zero {
    font-size: 22px;
    color: var(--accent2);
}

.price-compare-total td {
    background: rgba(229, 9, 20, 0.08);
}

.price-compare-cta {
    text-align: center;
    margin-top: 32px;
}

.price-compare-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.price-compare-cta strong {
    color: var(--text);
}

/* ===== Yorumlar ===== */
.reviews-section { padding: 80px 0; }

.rating-summary {
    text-align: center;
    max-width: 420px;
    margin: 0 auto 36px;
    padding: 28px 24px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, rgba(108, 92, 231, 0.08) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.rating-summary-score {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.rating-summary-stars {
    color: #ffc107;
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.rating-summary-stars .bi-star {
    color: rgba(255, 255, 255, 0.2);
}

.rating-summary-text {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

.rating-summary-text strong {
    color: var(--text);
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: rgba(108,92,231,0.3);
    transform: translateY(-3px);
}

.review-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.review-text {
    color: var(--text-muted);
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-author {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-author i {
    font-size: 20px;
    color: var(--accent);
}

/* ===== YENİ: İndirme Popup ===== */
.download-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 20px;
}

.download-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.download-popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.popup-close:hover { color: var(--text); }

.popup-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.popup-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.popup-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.popup-social-proof {
    color: var(--accent2) !important;
    font-size: 14px;
}

.popup-download-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.popup-later {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

/* ===== YENİ: Sticky Bar ===== */
.sticky-bar {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    z-index: 98;
    transition: bottom 0.4s ease;
    padding: 12px 0;
}

.sticky-bar.visible { bottom: 0; }

.sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-inner span {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-inner span i { color: var(--primary); }

.sticky-btn {
    background: var(--primary);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--primary-hover);
    color: white;
}

/* ===== YENİ: Footer Linkler ===== */
.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 16px 0;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-disclaimer {
    font-size: 11px !important;
    opacity: 0.6;
    max-width: 500px;
    margin: 12px auto 0;
}

/* ===== YENİ: Yasal Sayfalar ===== */
.legal-page .navbar { position: relative; }

.legal-content {
    padding: 120px 20px 80px;
    max-width: 800px;
}

.legal-content h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content section {
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.legal-content p, .legal-content li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content a { color: var(--primary); }

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.cookie-table th, .cookie-table td {
    border: 1px solid var(--border);
    padding: 10px 14px;
    text-align: left;
    color: var(--text-muted);
}

.cookie-table th {
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-weight: 600;
}

/* Sticky bar görünürken floating buton yukarı kayar */
body.sticky-visible .floating-download {
    bottom: 80px;
}
