/* ========== ROOT VARIABLES ========== */
:root {
    --bg-primary: #141414;
    --bg-secondary: #1f1f1f;
    --bg-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-red: #E50914;
    --accent-red-dark: #B8000C;
    --accent-gold: #FFD700;
    --accent-green: #2ecc71;
    --border-light: rgba(255,255,255,0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.5);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.hidden { display: none !important; }

/* ========== LOADING SCREEN ========== */
.loading-screen {
    position: fixed; inset: 0; background: #0a0a0a; z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading-screen.fade-out {
    opacity: 0; visibility: hidden;
}
.loading-content {
    text-align: center;
    position: relative; z-index: 2;
}
.loading-logo-container {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    margin-bottom: 40px;
}
.loading-logo-svg {
    width: 120px; height: 120px;
    animation: logoPulse 2s ease-in-out infinite;
}
.loading-brand-name {
    font-size: 2.8rem; font-weight: 800; letter-spacing: 6px;
    color: var(--accent-red); text-transform: lowercase;
    background: linear-gradient(135deg, #E50914, #ff6b6b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.loading-progress-wrapper {
    width: 280px; margin: 0 auto 20px;
}
.loading-progress-bar {
    height: 4px; background: rgba(255,255,255,0.2); border-radius: 10px;
    overflow: hidden; margin-bottom: 8px;
}
.loading-progress-fill {
    width: 0%; height: 100%; background: var(--accent-red);
    border-radius: 10px; transition: width 0.1s linear;
}
.loading-percentage {
    font-size: 1rem; color: var(--text-secondary); font-weight: 500;
}
.loading-tagline {
    color: #777; font-weight: 300; letter-spacing: 1px;
    margin-top: 20px; font-size: 0.9rem;
}

@keyframes logoPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px #E50914); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px #E50914); }
    100% { transform: scale(1); filter: drop-shadow(0 0 5px #E50914); }
}

/* ========== AGE VERIFICATION OVERLAY ========== */
.age-verification-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-verification-overlay.age-visible {
    opacity: 1;
    visibility: visible;
}

.age-verification-popup {
    background: linear-gradient(145deg, #1f1f1f, #141414);
    border: 1px solid rgba(229, 9, 20, 0.4);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 30px rgba(229,9,20,0.3);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.age-verification-overlay.age-visible .age-verification-popup {
    transform: scale(1);
}

.age-question {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #fff;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== MAIN CONTENT TRANSITION ========== */
.main-content {
    opacity: 1;
    transition: opacity 1s ease;
}
.main-content.hidden {
    display: block; opacity: 0; pointer-events: none;
}

/* ========== NAVIGATION ========== */
.top-nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px 60px; transition: background 0.3s;
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1400px; margin: 0 auto;
}
.nav-brand {
    display: flex; align-items: center; gap: 10px;
}
.nav-logo-svg { width: 36px; height: 36px; }
.nav-brand-text {
    font-size: 1.8rem; font-weight: 800; color: var(--accent-red);
    letter-spacing: 3px; text-transform: lowercase;
}
.nav-links {
    display: flex; list-style: none; gap: 35px;
}
.nav-link {
    font-weight: 500; font-size: 0.95rem;
    color: #e5e5e5; transition: color 0.2s;
    position: relative;
}
.nav-link:hover { color: white; }
.nav-link::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 0%; height: 2px; background: var(--accent-red);
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

/* ========== HERO ========== */
.hero-section {
    height: 100vh; min-height: 700px; display: flex;
    align-items: center; justify-content: center; position: relative;
    background: radial-gradient(circle at center, #2a1a1a 0%, #141414 70%);
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23E50914" fill-opacity="0.05" d="M0,160L48,176C96,192,192,224,288,218.7C384,213,480,171,576,165.3C672,160,768,192,864,197.3C960,203,1056,181,1152,154.7C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover; opacity: 0.3;
}
.hero-content { text-align: center; position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.hero-title { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.3rem; color: #ccc; margin-bottom: 40px; }
.hero-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-weight: 600;
    font-size: 1rem; transition: all var(--transition); letter-spacing: 0.5px;
}
.btn-lg { padding: 16px 40px; }
.btn-primary { background: var(--accent-red); color: white; box-shadow: 0 4px 15px rgba(229,9,20,0.4); }
.btn-primary:hover { background: #ff0f1a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(229,9,20,0.6); }
.btn-outline { border: 2px solid rgba(255,255,255,0.5); color: white; background: transparent; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-accent { background: var(--accent-gold); color: #000; font-weight: 700; }
.btn-accent:hover { background: #ffe066; }
.btn-success { background: var(--accent-green); color: white; }
.btn-ghost { background: rgba(255,255,255,0.1); color: white; }
.disabled-btn { opacity: 0.5; pointer-events: none; filter: grayscale(30%); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }

/* ========== RED GLOW BUTTONS ========== */
.btn-red-glow {
    position: relative;
    background: linear-gradient(135deg, #E50914, #B8000C);
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(229,9,20,0.4), 0 0 20px rgba(229,9,20,0.2);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease,
                background 0.3s ease;
    overflow: hidden;
}
.btn-red-glow:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(229,9,20,0.7), 0 0 60px rgba(229,9,20,0.4);
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
}
.btn-red-glow.disabled-btn {
    opacity: 0.6;
    filter: grayscale(20%);
    box-shadow: 0 2px 8px rgba(229,9,20,0.15);
    pointer-events: none;
}
@keyframes pulse-glow {
    0% { box-shadow: 0 4px 15px rgba(229,9,20,0.4), 0 0 20px rgba(229,9,20,0.2); }
    50% { box-shadow: 0 4px 20px rgba(229,9,20,0.7), 0 0 35px rgba(229,9,20,0.4); }
    100% { box-shadow: 0 4px 15px rgba(229,9,20,0.4), 0 0 20px rgba(229,9,20,0.2); }
}
.pulse-animation { animation: pulse-glow 2s infinite ease-in-out; }

/* ========== SECTIONS GENERAL ========== */
.section-container { max-width: 1300px; margin: 0 auto; padding: 80px 40px; }
.section-title { font-size: 2.8rem; font-weight: 800; margin-bottom: 20px; }
.accent { color: var(--accent-red); }
.section-subtitle { color: #aaa; font-size: 1.1rem; margin-bottom: 40px; }

/* ========== ABOUT ========== */
.about-section { background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 40px; }
.about-card {
    background: #2a2a2a; border-radius: 16px; padding: 30px;
    border: 1px solid var(--border-light); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
    cursor: default;
}
.hover-displace:hover { transform: translateY(15px); box-shadow: 0 25px 40px -15px rgba(229,9,20,0.2); border-color: rgba(229,9,20,0.4); }
.about-icon { margin-bottom: 20px; }
.about-card-title { font-size: 1.5rem; margin-bottom: 12px; }
.about-card-text { color: #bbb; line-height: 1.7; }
.about-story { background: #232323; border-radius: 16px; padding: 30px; border-left: 4px solid var(--accent-red); transition: transform 0.4s ease; }
.hover-displace-wide:hover { transform: translateY(8px); }
.about-story-text { color: #ccc; font-size: 1.05rem; }

/* ========== PRICING ========== */
.pricing-section { background: var(--bg-primary); }
.pricing-controls { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 50px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.pricing-card {
    background: linear-gradient(145deg, #252525, #1a1a1a);
    border-radius: 20px; padding: 35px 25px; text-align: center;
    border: 1px solid rgba(255,255,255,0.05); position: relative;
    transition: transform 0.3s, border-color 0.3s;
}
.pricing-card:hover { transform: translateY(-8px); border-color: rgba(229,9,20,0.5); }
.featured-card { border: 2px solid var(--accent-gold); background: linear-gradient(145deg, #2f2a1a, #1a1a1a); }
.pricing-card-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent-red); color: white; padding: 4px 20px;
    border-radius: 20px; font-size: 0.8rem; font-weight: 700;
}
.best-value { background: var(--accent-gold); color: #000; }
.pricing-plan-name { font-size: 1.6rem; margin: 15px 0 5px; }
.pricing-price-wrapper { font-size: 2.5rem; font-weight: 800; margin: 10px 0; }
.pricing-currency { font-size: 1.8rem; vertical-align: super; }
.pricing-period { font-size: 1rem; color: #888; font-weight: 400; }
.pricing-discount-badge {
    display: none; background: var(--accent-green); color: white;
    padding: 4px 14px; border-radius: 20px; font-size: 0.9rem;
    font-weight: 700; margin: 5px 0 15px;
}
.pricing-discount-badge.active { display: inline-block; }
.pricing-features { list-style: none; text-align: left; margin-top: 20px; }
.pricing-features li { padding: 6px 0; color: #ccc; font-size: 0.9rem; }

/* ========== VIDEOS ========== */
.videos-section { background: var(--bg-secondary); padding-bottom: 40px; }
.video-topic { margin-bottom: 60px; }
.video-topic-title { display: flex; align-items: center; gap: 15px; }
.topic-badge {
    background: var(--accent-red); color: white; padding: 6px 18px;
    border-radius: 30px; font-size: 0.9rem; font-weight: 700;
}
.topic-badge-2 { background: #6c3c9e; }
.video-carousel-wrapper { position: relative; }
.video-carousel {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 20px 0; scrollbar-width: none; -ms-overflow-style: none;
}
.video-carousel::-webkit-scrollbar { display: none; }
.video-card {
    flex: 0 0 280px; scroll-snap-align: start;
    background: #1e1e1e; border-radius: 12px; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
    position: relative;
}
.video-card:hover { transform: scale(1.05); box-shadow: 0 15px 30px rgba(0,0,0,0.7); }
.video-card-img-wrapper { position: relative; height: 180px; overflow: hidden; background: #333; }
.video-card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- BLUR OVERLAY (locked videos) ---------- */
.video-card.blurred .video-card-img-wrapper img {
    filter: blur(20px) brightness(0.6);
    transition: filter 0.3s;
}
.video-card .lock-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.5); z-index: 2; opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
}
.video-card.blurred .lock-overlay { opacity: 1; }
.lock-icon {
    font-size: 2rem; margin-bottom: 5px; filter: drop-shadow(0 0 5px black);
}
.lock-text {
    color: white; font-weight: 600; font-size: 0.9rem; text-shadow: 0 1px 3px black;
}

.video-play-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.4); opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.video-card:hover .video-play-overlay { opacity: 1; }
.video-card-info { padding: 15px; }
.video-card-title { font-weight: 600; margin-bottom: 5px; }
.video-card-duration { font-size: 0.8rem; color: #aaa; }
.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.8); color: white; width: 40px; height: 40px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    z-index: 5; transition: background 0.3s;
}
.carousel-arrow:hover { background: var(--accent-red); }
.carousel-arrow-left { left: -15px; }
.carousel-arrow-right { right: -15px; }

/* ========== MODALS ========== */
.video-modal, .roulette-modal, .payment-modal, .help-modal {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.video-modal.active, .roulette-modal.active, .payment-modal.active, .help-modal.active {
    opacity: 1; visibility: visible;
}
.modal-backdrop, .video-modal-backdrop, .roulette-modal-backdrop, .payment-modal-backdrop, .help-modal-backdrop {
    position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
}
.video-modal-content {
    position: relative; width: 90%; max-width: 1000px; background: #000;
    border-radius: 16px; overflow: hidden; z-index: 2;
}
.video-player-wrapper { width: 100%; }
.video-player { width: 100%; display: block; max-height: 80vh; }
.video-modal-close {
    position: absolute; top: 10px; right: 15px; z-index: 10; color: white;
}

/* ---------- UNLOCK FORM INSIDE MODAL ---------- */
.video-unlock-form {
    width: 100%; padding: 30px 40px; background: #1a1a1a; color: white;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 300px;
}
.unlock-form-inner { width: 100%; max-width: 400px; text-align: center; }
.unlock-form-title {
    font-size: 1.1rem; font-weight: 500; margin-bottom: 25px; line-height: 1.4;
}
.unlock-input-group { margin-bottom: 15px; }
.unlock-input-group input {
    width: 100%; padding: 12px 16px; border-radius: 8px; border: 1px solid #444;
    background: #2a2a2a; color: white; font-size: 1rem; outline: none;
    transition: border-color 0.2s;
}
.unlock-input-group input:focus { border-color: var(--accent-red); }
.unlock-submit-btn { margin-top: 10px; }
.unlock-privacy-note {
    margin-top: 15px; font-size: 0.85rem; color: #aaa;
}

/* ---------- UNLOCK FULL VIDEO BUTTON ---------- */
.unlock-full-video-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 16px auto;
    padding: 14px 32px;
    background: linear-gradient(135deg, #E50914, #B8000C);
    color: white;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(229,9,20,0.4), 0 0 20px rgba(229,9,20,0.2);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease,
                background 0.3s ease;
    overflow: hidden;
}
.unlock-full-video-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(229,9,20,0.7), 0 0 60px rgba(229,9,20,0.4);
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
}

/* ========== ROULETTE MODAL ========== */
.roulette-modal-content, .payment-modal-content, .help-modal-content {
    position: relative; background: #1f1f1f; border-radius: 20px;
    padding: 40px; max-width: 500px; width: 90%; z-index: 2;
    box-shadow: var(--shadow-lg); text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}
.roulette-rect-container {
    position: relative;
    width: 320px;
    margin: 30px auto 20px;
    filter: drop-shadow(0 0 12px rgba(229,9,20,0.5));
}
.roulette-pointer-rect {
    position: absolute;
    top: -24px;
    left: 146px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 20px solid #FFD700;
    filter: drop-shadow(0 0 10px rgba(255,215,0,0.9));
    transition: left 0.3s ease;
    z-index: 5;
    will-change: left;
}
.roulette-window {
    width: 100%;
    height: 80px;
    overflow: hidden;
    border: 3px solid #e50914;
    border-radius: 12px;
    background: radial-gradient(circle at center, #2a2a2a 0%, #111 100%);
    box-shadow: 0 0 20px rgba(229,9,20,0.5), inset 0 0 15px rgba(0,0,0,0.8);
    position: relative;
}
.roulette-track {
    display: flex;
    gap: 0;
    height: 100%;
    transition: transform 6s cubic-bezier(0.05, 0.7, 0.1, 1);
    will-change: transform;
}
.roulette-seg {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    background: var(--seg-bg, #E50914);
    border-right: 1px solid rgba(255,255,255,0.15);
    user-select: none;
    position: relative;
}
.roulette-seg:last-child { border-right: none; }
.roulette-seg-winner {
    background: #FFD700 !important;
    color: #000;
    font-size: 1.4rem;
    text-shadow: none;
    transition: box-shadow 0.3s;
}
.roulette-seg-winner.winner-glow {
    animation: winnerPulse 0.8s ease-in-out 3;
    box-shadow: 0 0 25px gold, inset 0 0 15px gold;
}
@keyframes winnerPulse {
    0% { transform: scale(1); box-shadow: 0 0 20px gold, inset 0 0 10px gold; }
    50% { transform: scale(1.15); box-shadow: 0 0 45px gold, inset 0 0 25px gold; }
    100% { transform: scale(1); box-shadow: 0 0 20px gold, inset 0 0 10px gold; }
}
.roulette-seg:nth-child(1) { background: #E50914; }
.roulette-seg:nth-child(2) { background: #C70812; }
.roulette-seg:nth-child(3) { background: #A0070F; }
.roulette-seg:nth-child(4) { background: #80060C; }
.roulette-seg:nth-child(6) { background: #A0070F; }
.roulette-seg:nth-child(7) { background: #C70812; }
.roulette-seg:nth-child(8) { background: #E50914; }
.roulette-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s;
}
.roulette-window.spinning .roulette-shine {
    opacity: 1;
    animation: shineMove 0.6s linear infinite;
}
@keyframes shineMove {
    0% { left: -100%; }
    100% { left: 200%; }
}
.roulette-result {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    transition: transform 0.3s;
}
.roulette-result.result-reveal {
    animation: resultBounce 0.6s ease forwards;
}
@keyframes resultBounce {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* ========== PAYMENT MODAL ========== */
.payment-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}
.payment-subtitle {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 0.95rem;
}
.btc-payment-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.btc-address-bar {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    word-break: break-all;
}
.btc-address-text {
    font-family: monospace;
    font-size: 1.6rem;
    color: #F7931A;
    letter-spacing: 1px;
    user-select: all;
}
.btn-copy-btc {
    background: var(--accent-green);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 0 rgba(46, 204, 113, 0);
}
.btn-copy-btc:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.7);
}
.payment-note {
    font-size: 0.8rem;
    color: #777;
    margin-top: 10px;
}

/* ========== HELP MODAL ========== */
.help-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}
.help-intro {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}
.help-step { display: flex; gap: 15px; margin-bottom: 20px; text-align: left; align-items: flex-start; }
.help-step-number { background: var(--accent-red); color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
.help-btc-address-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
    background: #2a2a2a;
    padding: 12px 18px;
    border-radius: 12px;
}
.help-btc-address-highlight .btc-address-text {
    font-size: 1.2rem;
    color: #F7931A;
    font-weight: 700;
}
.help-warning {
    margin-top: 15px;
    background: rgba(229,9,20,0.15);
    border-left: 4px solid var(--accent-red);
    padding: 12px 18px;
    border-radius: 8px;
    color: #ffb3b3;
    font-size: 0.9rem;
    text-align: left;
}
.help-sending-tips {
    text-align: left;
    margin-top: 15px;
    font-weight: 600;
    color: #ddd;
}
.help-tips-list {
    text-align: left;
    margin: 8px 0 0 20px;
    color: #ccc;
    font-size: 0.9rem;
}
.help-tips-list li { margin-bottom: 5px; }
.btn-discord {
    display: inline-block;
    margin: 12px 0;
    background: #5865F2;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }
.help-discord-instructions {
    text-align: left;
    color: #bbb;
    font-size: 0.9rem;
    margin-top: 8px;
}
.help-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 600;
}
.help-link:hover { color: #ffe680; }
.help-videos { margin-top: 30px; text-align: left; }
.help-video-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    text-align: left;
}
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    background: #000;
}
.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* ========== DISCORD SECTION ========== */
.discord-section {
    background: linear-gradient(135deg, #1a1a1a, #2a1414);
    position: relative;
    overflow: hidden;
    transition: background 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease;
    border-top: 1px solid rgba(229,9,20,0.2);
    border-bottom: 1px solid rgba(229,9,20,0.2);
}
.discord-section.discord-active {
    background: linear-gradient(135deg, #1a1a2e, #2a1a3e);
    border-top-color: rgba(88,101,242,0.4);
    border-bottom-color: rgba(88,101,242,0.4);
    box-shadow: inset 0 0 40px rgba(88,101,242,0.1);
}
.discord-section .accent {
    color: var(--accent-red);
    transition: color 0.5s ease;
}
.discord-section.discord-active .accent { color: #5865F2; }
.discord-subtitle {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    transition: color 0.5s ease;
}
.discord-section.discord-active .discord-subtitle { color: #b3c2ff; }
.discord-btn-wrapper { text-align: left; margin-top: 30px; }
.discord-btn {
    background: var(--accent-red);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(229,9,20,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.5s ease, box-shadow 0.5s ease, transform 0.3s ease;
}
.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229,9,20,0.6);
}
.discord-section.discord-active .discord-btn {
    background: #5865F2;
    box-shadow: 0 4px 15px rgba(88,101,242,0.5);
}
.discord-section.discord-active .discord-btn:hover {
    box-shadow: 0 8px 25px rgba(88,101,242,0.8);
}

/* ========== FOOTER ========== */
.site-footer { background: #0a0a0a; padding: 40px 0; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 700; }
.footer-text { color: #777; }
.footer-protection-msg { color: #555; font-size: 0.8rem; margin-top: 5px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2.5rem; }
    .pricing-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
