/*
Theme Name: Video Uyelik Teması
Description: Aylık Stripe abonelik sistemi ile video üyelik sitesi. Videolar filigranlı gösterilir, abonelik aktif değilse kilitli kalır.
Version: 1.1
Author: Custom
Text Domain: video-uyelik
*/

:root {
    --bg: #0f0f12;
    --bg-alt: #17171c;
    --border: #2a2a30;
    --text: #f2f2f2;
    --text-dim: #999;
    --accent: #ff4d67;
    --accent-dark: #e8384f;
    --radius: 12px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------------- Header ---------------- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .logo { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; }

.site-header nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header nav a { color: #cfcfcf; font-size: 14px; }
.site-header nav a:hover { color: var(--accent); }

.nav-toggle-label {
    display: none;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}
#nav-toggle { display: none; }

/* ---------------- Buttons ---------------- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--accent-dark); }
.btn:active { transform: scale(0.98); }

.btn-outline {
    background: transparent;
    border: 1px solid #444;
    color: #eee;
}
.btn-outline:hover { border-color: var(--accent); background: transparent; color: var(--accent); }

.btn-block { width: 100%; }

.btn-text-muted {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    padding: 4px 8px;
}
.btn-text-muted:hover { color: #ccc; }

.container { max-width: 1100px; margin: 0 auto; padding: 40px 5%; }

/* ---------------- Hero / Landing ---------------- */
.hero {
    position: relative;
    text-align: center;
    padding: 100px 5% 80px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,77,103,0.15), transparent 40%),
        radial-gradient(circle at 80% 0%, rgba(255,77,103,0.1), transparent 40%),
        var(--bg);
    overflow: hidden;
    animation: vu-fade-up 0.6s ease both;
}

.hero-bg-collage {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 0;
}
.hero-bg-tile {
    flex: 1;
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.4) saturate(0.8);
    transform: scale(1.1);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15,15,18,0.75) 0%, rgba(15,15,18,0.92) 70%, var(--bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-accent {
    background: linear-gradient(120deg, var(--accent) 0%, #ff8fa3 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 15px;
    border-radius: 10px;
}

.hero .btn-lg.btn:not(.btn-outline) {
    box-shadow: 0 8px 30px rgba(255,77,103,0.35);
}

@keyframes vu-fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
    display: inline-block;
    background: rgba(255,77,103,0.12);
    border: 1px solid rgba(255,77,103,0.35);
    color: #ffb3c0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
    box-shadow: 0 0 20px rgba(255,77,103,0.15);
}

.hero h1 {
    font-size: clamp(30px, 5.5vw, 54px);
    margin: 0 0 18px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero p {
    max-width: 560px;
    margin: 0 auto 32px;
    color: var(--text-dim);
    font-size: clamp(14px, 2vw, 17px);
}

.hero .btn-row {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 20px;
}

.trust-item .trust-icon { font-size: 14px; }

.cta-subnote {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--text-dim);
}

.plan-trust-note {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin: 20px 0 0;
}

.plan-trust-note .trust-item { font-size: 12px; padding: 7px 14px; }
.plan-trust-note strong { color: #ccc; }

.showcase {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 5% 10px;
}

.showcase-head {
    text-align: center;
    margin-bottom: 28px;
}
.showcase-head h2 { font-size: clamp(20px, 3vw, 28px); margin: 0 0 8px; }
.showcase-head p { color: var(--text-dim); font-size: 14px; margin: 0; }

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.showcase-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}
.showcase-card:hover { transform: translateY(-4px); border-color: var(--accent); }

.showcase-thumb {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #202026;
}
.showcase-thumb img { filter: blur(2px) brightness(0.65); transition: filter .2s ease; }
.showcase-card:hover .showcase-thumb img { filter: blur(1px) brightness(0.75); }

.showcase-lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.showcase-title {
    padding: 10px 12px;
    font-size: 13px;
    color: #ddd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 60px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
}

.feature-card .icon { font-size: 30px; margin-bottom: 12px; }
.feature-card h3 { font-size: 16px; margin: 0 0 8px; }
.feature-card p { font-size: 13px; color: var(--text-dim); margin: 0; }

.cta-strip {
    text-align: center;
    padding: 60px 5%;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-strip h2 { margin: 0 0 20px; font-size: clamp(20px, 3vw, 28px); }

/* ---------------- Auth Forms ---------------- */
.auth-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
}

.auth-form {
    width: 100%;
    max-width: 380px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 36px 30px;
    border-radius: var(--radius);
}

.auth-form h2 { margin: 0 0 6px; font-size: 22px; }
.auth-form .subtitle { color: var(--text-dim); font-size: 13px; margin-bottom: 22px; }

.auth-form label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.auth-form input {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #333;
    background: var(--bg);
    color: #fff;
    font-size: 14px;
}
.auth-form input:focus { outline: none; border-color: var(--accent); }

.auth-form .btn { width: 100%; padding: 13px; margin-top: 6px; }

.auth-switch { margin-top: 18px; font-size: 13px; color: var(--text-dim); text-align: center; }
.auth-switch a { color: var(--accent); font-weight: 600; }

.error-msg { background: #4d1f26; color: #ff9b9b; padding: 10px 12px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; }
.success-msg { background: #1f4d2c; color: #9bffb5; padding: 10px 12px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; }

/* ---------------- Video Grid ---------------- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

.video-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform .15s ease, border-color .15s ease;
}
.video-card:hover { transform: translateY(-3px); border-color: #3a3a42; }

.video-card .thumb-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #202026; }
.video-card img { width: 100%; height: 100%; object-fit: cover; }

.video-card.is-locked .thumb-wrap img { filter: blur(6px) brightness(0.6); }

.lock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.65);
    padding: 5px 9px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lock-center-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: rgba(255,255,255,0.85);
}

.video-card .info { padding: 14px; }
.video-card .info h3 { font-size: 14px; margin: 0 0 6px; }
.video-card .info span { font-size: 12px; color: var(--text-dim); }

/* ---------------- Video Player Page ---------------- */
.video-player-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
}
.video-player-wrap video { width: 100%; display: block; }

.watermark-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-around;
    opacity: 0.16;
    transform: rotate(-20deg);
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 700;
    color: #fff;
    user-select: none;
}
.watermark-overlay span { padding: 16px; }

.lock-screen {
    position: relative;
    aspect-ratio: 16/9;
    max-width: 900px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    overflow: hidden;
}
.lock-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10,10,14,0.78);
    backdrop-filter: blur(8px);
}
.lock-screen .lock-content { position: relative; text-align: center; z-index: 2; padding: 0 20px; }
.lock-screen .lock-icon { font-size: 40px; margin-bottom: 12px; }
.lock-screen p { color: #ddd; margin-bottom: 18px; }

.subscribe-box {
    max-width: 640px;
    margin: 30px auto;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 28px 24px;
    border-radius: var(--radius);
    text-align: center;
}
.subscribe-box .price { font-size: 30px; font-weight: 800; margin: 8px 0 4px; }
.subscribe-box .price span { font-size: 14px; color: var(--text-dim); font-weight: 400; }
.subscribe-box p { color: var(--text-dim); font-size: 14px; margin-bottom: 18px; }

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    text-align: left;
}

.plan-card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
}

.plan-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.plan-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-name { font-size: 13px; color: var(--text-dim); margin-bottom: 6px; }
.plan-price { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.plan-price span { font-size: 12px; color: var(--text-dim); font-weight: 400; }
.plan-card .btn { padding: 10px; font-size: 13px; }

.status-pill { display: inline-block; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.status-active { background: #1f4d2c; color: #6bff8f; }
.status-inactive { background: #4d1f26; color: #ff6b6b; }

footer.site-footer {
    text-align: center;
    padding: 40px 5%;
    color: var(--text-dim);
    font-size: 13px;
    border-top: 1px solid var(--border);
}

/* ---------------- Uygulama içi tarayıcı uyarı banner'ı (iOS) ---------------- */
#vu-inapp-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #1a1a1f;
    border-bottom: 2px solid var(--accent);
    padding: 12px 16px;
}

.vu-inapp-banner-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.vu-inapp-banner-text {
    flex: 1;
    min-width: 200px;
    font-size: 13px;
    color: #eee;
    line-height: 1.5;
}

.vu-inapp-banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vu-inapp-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.vu-inapp-btn:hover { background: var(--accent-dark); }

.vu-inapp-close {
    background: none;
    border: none;
    color: #999;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
}
.vu-inapp-close:hover { color: #fff; }

/* ---------------- Gizlilik notu (Üye Ol formu) ---------------- */
.privacy-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
    margin: 14px 0 0;
}

/* ---------------- Premium abone rozeti ---------------- */
.vu-premium-pill {
    background: linear-gradient(120deg, #ffd76b, #ff9d4d);
    color: #3a2400;
    box-shadow: 0 0 14px rgba(255, 180, 60, 0.35);
}

body.vu-premium-user .site-header {
    border-bottom-color: #ffb43c;
}

/* ---------------- Yazı ortası "player" görseli + üye ol CTA'sı ---------------- */
.vu-mid-player-cta {
    margin: clamp(24px, 5vw, 32px) 0;
    padding: clamp(16px, 4vw, 28px) clamp(12px, 3vw, 20px);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.vu-player-mock {
    cursor: pointer;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff4d67, #ff8a4d 60%, #ffd76b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2.5vw, 18px);
    position: relative;
    overflow: hidden;
    padding: clamp(12px, 4vw, 20px);
    box-sizing: border-box;
}
.vu-player-mock::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(0,0,0,0.08) 0 10px, transparent 10px 20px);
}
.vu-play-icon {
    width: clamp(44px, 12vw, 64px);
    height: clamp(44px, 12vw, 64px);
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 4vw, 22px);
    color: #ff4d67;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    flex-shrink: 0;
}
.vu-player-mock-text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 800;
    font-size: clamp(14px, 3.6vw, 20px);
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    max-width: 90%;
}
.vu-mid-player-text {
    color: var(--text-dim);
    font-size: 14px;
    margin: 0 0 16px;
}
.vu-mid-player-cta .vu-cta-btn {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ---------------- Yazı sonu CTA (gizli bloglar) ---------------- */
.vu-post-cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.vu-cta-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #fff;
    border: none;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.vu-cta-btn:hover { transform: translateY(-2px); opacity: 0.94; }

.vu-cta-1 {
    background: linear-gradient(120deg, #ff4d67, #ff8a4d);
    box-shadow: 0 6px 18px rgba(255, 77, 103, 0.35);
}
.vu-cta-2 {
    background: linear-gradient(120deg, #ffd76b, #ff9d4d);
    color: #3a2400;
    box-shadow: 0 6px 18px rgba(255, 180, 60, 0.35);
}
.vu-cta-3 {
    background: linear-gradient(120deg, #4d7bff, #4dc8ff);
    box-shadow: 0 6px 18px rgba(77, 123, 255, 0.35);
}
.vu-cta-4 {
    background: linear-gradient(120deg, #6bff9d, #4dd6c0);
    color: #063b2a;
    box-shadow: 0 6px 18px rgba(77, 214, 192, 0.3);
}

/* ---------------- Footer: Telegram / WhatsApp kanal butonları ---------------- */
.footer-channels {
    display: flex;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto 18px;
}
.footer-channel-btn {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    box-sizing: border-box;
    transition: transform .15s ease, opacity .15s ease;
}
.footer-channel-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.footer-channel-icon { font-size: 17px; }
.footer-channel-telegram {
    background: linear-gradient(120deg, #2AABEE, #229ED9);
    box-shadow: 0 6px 18px rgba(42, 171, 238, 0.3);
}
.footer-channel-whatsapp {
    background: linear-gradient(120deg, #25D366, #1DA851);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

@media (max-width: 520px) {
    .footer-channels { flex-direction: column; }
}

/* ---------------- Canlı ziyaretçi sayacı ---------------- */
.live-counter-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    color: var(--text-dim);
}
.live-counter-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #6bff8f;
    box-shadow: 0 0 8px #6bff8f;
    animation: vu-pulse 1.6s infinite ease-in-out;
}
#vu-live-counter { color: #fff; font-weight: 700; }
@keyframes vu-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* ---------------- Kategori/Etiket arşiv grid'i ---------------- */
.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.blog-archive-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .15s ease, border-color .15s ease;
    display: block;
}
.blog-archive-card:hover { transform: translateY(-3px); border-color: #3a3a42; }
.blog-archive-thumb { aspect-ratio: 16/9; overflow: hidden; background: #202026; }
.blog-archive-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-archive-card .info { padding: 14px; }
.blog-archive-card .info h3 { font-size: 15px; margin: 0 0 8px; }
.blog-archive-card .info p { font-size: 13px; color: var(--text-dim); margin: 0; }

.blog-archive-pagination { margin-top: 30px; text-align: center; }
.blog-archive-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border-radius: 6px;
    border: 1px solid var(--border);
    color: #ddd;
    font-size: 13px;
}
.blog-archive-pagination .page-numbers.current { background: var(--accent); border-color: var(--accent); color: #fff; }
.blog-archive-pagination .page-numbers:hover { border-color: var(--accent); }

/* ---------------- Yazı kategori/etiket alanı ---------------- */
.post-taxonomy {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.post-categories, .post-tags {
    font-size: 13px;
    color: var(--text-dim);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.taxonomy-pill {
    display: inline-block;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: #ddd;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    transition: border-color .15s ease, color .15s ease;
}
.taxonomy-pill:hover { border-color: var(--accent); color: var(--accent); }

/* ---------------- Yazı sayfası öne çıkan görsel ---------------- */
.single-featured-image {
    margin: 18px 0 28px;
    border-radius: var(--radius);
    overflow: hidden;
}
.single-featured-image a { display: block; cursor: pointer; }
.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------------- Hesabım: kalan gün vurgusu ---------------- */
.days-left-callout {
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(107, 255, 157, 0.1);
    border: 1px solid rgba(107, 255, 157, 0.4);
    border-radius: 12px;
    padding: 14px 18px;
    margin: 10px 0;
}
.days-left-number { font-size: 32px; font-weight: 800; color: #6bff9d; line-height: 1; }
.days-left-text { font-size: 14px; color: var(--text-dim); font-weight: 600; }
.days-left-callout.days-left-urgent {
    background: rgba(255, 77, 103, 0.1);
    border-color: rgba(255, 77, 103, 0.45);
}
.days-left-callout.days-left-urgent .days-left-number { color: #ff6b7d; }

.account-billing-note {
    font-size: 13px;
    color: var(--text-dim);
    margin: 12px 0;
}

/* ---------------- Abone ol bölümü teşvik yazıları ---------------- */
.subscribe-urgency {
    text-align: center;
    background: linear-gradient(120deg, rgba(255,77,103,0.15), rgba(255,138,77,0.15));
    border: 1px solid rgba(255,138,77,0.4);
    color: #ffb98a;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 10px;
    margin: 0 0 16px;
}
.subscribe-social-proof {
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    margin: -6px 0 18px;
}

/* ---------------- Ana sayfa: özel galeri üst görseli ---------------- */
.gallery-top-image-section {
    padding: 0 clamp(15px, 4vw, 40px);
}
.gallery-top-image-wrap {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}
.gallery-top-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------------- Ücretsiz üyelik rozeti ---------------- */
.free-badge {
    display: inline-block;
    background: rgba(107, 255, 157, 0.12);
    border: 1px solid #6bff9d;
    color: #6bff9d;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 0 0 10px;
}
.vu-free-badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.auth-form .free-badge { align-self: flex-start; }
.free-badge-hero {
    display: block;
    text-align: center;
    margin: 0 auto 14px;
    width: fit-content;
}

/* ---------------- Alt menü (Bottom Nav) — mobil ve masaüstü ---------------- */
body { padding-bottom: 64px; }
.vu-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: rgba(15, 15, 18, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
}
.vu-bn-item {
    flex: 1 1 0;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 4px 6px;
    color: var(--text-dim);
    font-size: 11px;
    transition: color .15s ease;
}
.vu-bn-icon { font-size: 20px; line-height: 1; }
.vu-bn-label { font-weight: 600; }
.vu-bn-item:hover,
.vu-bn-item.active { color: var(--accent); }

/* ---------------- Responsive breakpoints ---------------- */
@media (max-width: 900px) {
    .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle-label { display: block; }

    .site-header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-alt);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .2s ease;
    }

    #nav-toggle:checked ~ nav {
        max-height: 320px;
    }

    .site-header nav a,
    .site-header nav .status-pill {
        padding: 14px 5%;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    .site-header nav a.btn {
        margin: 12px 5%;
        width: auto;
        text-align: center;
        border-bottom: none;
    }

    .hero { padding: 70px 5% 50px; }
    .features { grid-template-columns: 1fr; padding: 40px 5%; }
    .video-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
    .auth-form { padding: 28px 22px; }
    .plan-grid { grid-template-columns: 1fr; gap: 12px; }
    .subscribe-box { max-width: 100%; }
}

@media (max-width: 420px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .hero .btn-row { flex-direction: column; }
    .hero .btn-row .btn { width: 100%; }
    .trust-item { font-size: 12px; padding: 7px 12px; text-align: left; }
}
