/* --- 1. CORE & RESET (THEME: TRUE PRESTIGE - CHAMPAGNE GOLD) --- */
:root {
    --bg-body: #010203;
    --bg-card: #05080f;
    --bg-glow: radial-gradient(circle at 50% 0%, #0c1c33 0%, #010203 100%);
    
    --gold-white: #FFFDF5; 
    --gold-light: #FCEDA3; 
    --gold-main:  #E6C256; 
    --gold-rich:  #D4AF37;  
    --gold-shadow: #BFA15F;

    --gold-gradient: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-rich) 25%, var(--gold-light) 45%, var(--gold-white) 50%, var(--gold-light) 55%, var(--gold-rich) 75%, var(--gold-shadow) 100%);
    
    --hextech: #1997dd;
    --hextech-glow: #1998dd83;
    
    --text-main: #FFFFFF;
    --text-muted: #AAB4C2;
    
    --border-shine: 1px solid rgba(243, 210, 145, 0.4);
    --border-dark: 1px solid rgba(255, 255, 255, 0.08);
    
    --font-head: 'Chakra Petch', sans-serif; 
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-body);
    background-image: var(--bg-glow);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex; flex-direction: column;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- 2. ATMOSPHERE --- */
.bg-layer { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }

.grid-floor {
    z-index: -4;
    background-image: linear-gradient(rgba(0, 225, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 225, 255, 0.05) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(circle at 50% 0%, black 20%, transparent 80%);
    transform: perspective(1200px) rotateX(60deg) scale(1.5);
    animation: moveGrid 40s linear infinite;
}
@keyframes moveGrid { from { background-position: 0 0; } to { background-position: 0 120px; } }

.arena-spotlight {
    z-index: -3; top: -600px; left: 50%; transform: translateX(-50%);
    width: 1400px; height: 1200px;
    background: radial-gradient(circle, rgba(0, 225, 255, 0.08) 0%, transparent 60%);
    filter: blur(100px);
}

/* ELEMENT PO PRAWEJ (Koło - Niebieskie) */
.tech-wheel-container {
    position: fixed; top: -15%; right: -15%; width: 1000px; height: 1000px;
    z-index: -2; pointer-events: none;
    opacity: 0.1; mix-blend-mode: screen;
    filter: drop-shadow(0 0 30px var(--hextech));
    animation: rotateWheel 240s linear infinite;
}
.wheel-spinner { width: 100%; height: 100%; stroke: var(--hextech); stroke-width: 1px; }
.wheel-svg { width: 100%; height: 100%; }
@keyframes rotateWheel { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* NOWY ELEMENT PO LEWEJ (Sieć - Złota) */
.tech-network-container-left {
    position: fixed; 
    top: 5%;      /* Trochę niżej niż prawe */
    left: -20%;   /* Wystaje z lewej strony */
    width: 900px; height: 900px;
    z-index: -2; pointer-events: none;
    opacity: 0.08; /* Bardzo subtelne */
    mix-blend-mode: screen;
    /* Złota poświata dla równowagi */
    filter: drop-shadow(0 0 30px var(--gold-main));
    /* Obraca się w przeciwną stronę, bardzo wolno */
    animation: rotateWheelReverse 300s linear infinite;
}

/* Animacja odwrotna */
@keyframes rotateWheelReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }


/* --- 3. UI NAVIGATION --- */
.container { 
    max-width: 1250px; 
    margin: 0 auto; padding: 0 25px; 
    position: relative; z-index: 2; flex: 1; width: 100%;
}

nav { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 30px 0; margin-bottom: 80px;
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(243, 210, 145, 0.2), transparent);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: bottom;
}

.logo { 
    font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; 
    display: flex; align-items: center; gap: 12px; color: #fff; 
    text-transform: uppercase; letter-spacing: 2px;
}
.logo i { color: var(--hextech); filter: drop-shadow(0 0 10px var(--hextech)); }
.logo span { 
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(243, 210, 145, 0.4));
    animation: shineText 6s linear infinite;
}
@keyframes shineText { to { background-position: 200% center; } }

.nav-links { 
    display: flex; gap: 40px; 
    background: rgba(5, 8, 15, 0.8); 
    padding: 12px 40px; 
    border: 1px solid rgba(255,255,255,0.05); border-top: 1px solid var(--gold-rich);
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.nav-link { 
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; 
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; 
    position: relative; transition: 0.3s;
}
.nav-link:hover { color: #fff; text-shadow: 0 0 15px var(--hextech); }
.nav-link.active { color: white; }
.nav-link.active::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px;
    background: var(--gold-main); box-shadow: 0 0 10px var(--gold-main);
}

.mobile-menu-btn {
    display: none; font-size: 1.5rem; color: var(--gold-main); cursor: pointer;
    padding: 10px; border: 1px solid var(--border-dark); background: #000;
}

.btn-x-premium {
    display: flex; align-items: center; gap: 10px;
    background: transparent; border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 24px; border-radius: 50px;
    font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; color: white;
    transition: 0.3s;
}
.btn-x-premium:hover { 
    border-color: var(--gold-main); color: #fff; 
    box-shadow: 0 0 20px rgba(243, 210, 145, 0.2); background: rgba(243, 210, 145, 0.05);
}
.x-svg { width: 14px; height: 14px; fill: currentColor; }

/* --- 4. HERO SECTION --- */
.hero { text-align: center; margin-bottom: 100px; position: relative; animation: fadeUp 0.8s ease-out; }
.hero h1 { 
    font-family: var(--font-head); font-size: 5.5rem; line-height: 1.05; font-weight: 800; 
    margin-bottom: 25px; color: #dde5f1; text-transform: uppercase; 
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.hero h1 span { 
    background: var(--gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
    display: block; font-size: 1.1em; margin-top: 10px;
    animation: shineText 8s linear infinite;
}
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 50px; letter-spacing: 0.5px; }

.instant-guide {
    display: inline-flex; align-items: center; justify-content: center; gap: 30px;
    background: rgba(5, 8, 15, 0.8);
    border: 1px solid rgba(255,255,255,0.08); border-top: 1px solid var(--gold-main); 
    padding: 25px 60px; margin-top: 40px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    border-radius: 100px; backdrop-filter: blur(10px);
}
.guide-step { display: flex; align-items: center; gap: 12px; color: #fff; font-family: var(--font-head); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; font-weight: 700; }
.guide-arrow { color: var(--gold-main); opacity: 1; font-size: 1rem; }

/* --- 5. BUTTONS & SECURITY --- */
.cta-group { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; } 
.btn-mega { 
    padding: 22px 60px; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
    text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s;
    position: relative; overflow: hidden; display: flex; align-items: center; gap: 12px; 
    border-radius: 4px;
}
.btn-gold { background: var(--gold-gradient); background-size: 200%; color: #1a1205; border: none; }
.btn-gold:hover { background-position: 100% 0; box-shadow: 0 0 50px rgba(243, 210, 145, 0.7); transform: translateY(-2px); color: #000; }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.btn-outline:hover { border-color: #1997dd; background: rgba(255,255,255,0.05); box-shadow: 0 0 20px rgba(255,255,255,0.1); }

.security-badge {
    display: flex; width: fit-content; margin: 10px auto 30px;
    align-items: center; gap: 8px;
    background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80; 
    padding: 8px 16px; border-radius: 20px;
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
    cursor: default; transition: 0.3s;
}
.security-badge:hover { background: rgba(34, 197, 94, 0.15); box-shadow: 0 0 15px rgba(34, 197, 94, 0.2); }

/* --- 6. STATS DASHBOARD --- */
.stats-dashboard {
    display: grid !important; grid-template-columns: 1fr 1.3fr 1fr 1fr !important;
    align-items: center; background: #020305;
    border: 1px solid rgba(255,255,255,0.05); border-top: 2px solid var(--gold-main); 
    margin-bottom: 100px; position: relative; overflow: hidden;
    box-shadow: 0 0 80px rgba(0,0,0,0.8); min-height: 160px; border-radius: 8px;
}
.stats-dashboard::after { 
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); 
    width: 200px; height: 1px; background: #fff; box-shadow: 0 0 20px #fff;
}
.stat-module { padding: 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; border-right: 1px solid rgba(255,255,255,0.05); height: 100%; }
.stat-module:last-child { border-right: none; }
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; white-space: nowrap; }

.module-pool .stat-val { 
    font-size: 3rem; font-family: var(--font-mono); font-weight: 800; color: #fff; 
    background: var(--gold-gradient); background-size: 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
}

/* FLASH ANIMATION */
@keyframes flashMoney {
    0% { filter: brightness(1); text-shadow: none; }
    20% { filter: brightness(2); text-shadow: 0 0 20px #fff, 0 0 40px var(--gold-main); transform: scale(1.05); }
    100% { filter: brightness(1); text-shadow: none; transform: scale(1); }
}
.flash-anim { animation: flashMoney 0.6s ease-out; }

.stat-val { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; color: #fff; }

.timer-container { width: 100%; max-width: 140px; margin-top: 8px; }
.time-bar-bg { width: 100%; height: 4px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
.time-bar-fill { height: 100%; width: 0%; background: var(--hextech); box-shadow: 0 0 15px var(--hextech); transition: width 1s linear; }
.stat-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 5px; font-family: var(--font-body); }

/* --- 7. GRID CARDS --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 80px; align-items: stretch; }
.tilt-card { 
    background: #05080f; border: 1px solid rgba(255,255,255,0.05); 
    padding: 50px 30px; position: relative; transition: 0.3s; 
    display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; 
    border-radius: 8px;
}
.tilt-card:hover { border-color: var(--gold-main); box-shadow: 0 0 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(243, 210, 145, 0.1); transform: translateY(-8px); background: #080c16; }
.card-icon { font-size: 3rem; margin-bottom: 25px; color: var(--hextech); filter: drop-shadow(0 0 20px var(--hextech-glow)); }
.tilt-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 15px; color: var(--gold-white); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; text-shadow: 0 0 15px rgba(243, 210, 145, 0.3); }
.tilt-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* --- 8. PARTNERS SECTION --- */
.partners-section { text-align: center; margin-bottom: 80px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.partners-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 30px; font-weight: 700; }
.partners-grid { display: flex; justify-content: center; align-items: center; gap: 70px; flex-wrap: wrap; }
.partner-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--text-muted); transition: 0.3s; cursor: default; }
.partner-logo i { font-size: 1.8rem; }
.partner-logo:hover { transform: translateY(-3px); opacity: 1; color: var(--gold-main); text-shadow: 0 0 25px var(--gold-main); }

/* --- 9. TABLES, FAQ, FOOTER --- */
.table-container { background: #05080f; border: 1px solid rgba(255,255,255,0.05); margin-bottom: 80px; overflow: hidden; border-radius: 8px; }
.table-header { padding: 20px 30px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.01); }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 20px 30px; color: var(--gold-main); font-family: var(--font-head); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
td { padding: 20px 30px; border-top: 1px solid rgba(255,255,255,0.05); font-family: var(--font-mono); font-size: 0.9rem; color: #fff; }

.faq-container { max-width: 800px; margin: 0 auto 100px; }
.faq-item { border: 1px solid rgba(255,255,255,0.05); background: #05080f; margin-bottom: 15px; transition: 0.3s; border-radius: 8px; }
.faq-head { padding: 25px 30px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-title { font-family: var(--font-head); font-size: 1.1rem; color: #fff; font-weight: 600; display: flex; align-items: center; gap: 15px; }
.faq-icon-wrapper { width: 32px; height: 32px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: 0.3s; border-radius: 50%; }
.faq-item.active { background: #080c14; border-color: var(--hextech); }
.faq-item.active .faq-icon-wrapper { background: var(--hextech); color: white; box-shadow: 0 0 15px var(--hextech-glow); }
.faq-item.active .faq-title { color: var(--gold-main); }
.toggle-icon { transition: 0.3s; color: var(--text-muted); }
.faq-item.active .toggle-icon { transform: rotate(180deg); color: #fff; }
.faq-body { max-height: 0; overflow: hidden; transition: 0.3s; color: #999; padding: 0 30px; font-size: 0.95rem; line-height: 1.7; }
.faq-item.active .faq-body { padding-bottom: 30px; padding-top: 10px; max-height: 200px; }

.toast-container { position: fixed; bottom: 40px; left: 40px; z-index: 900; }
.toast { 
    background: #080c14; border: 1px solid var(--hextech); border-left: 4px solid var(--hextech); 
    padding: 20px; display: flex; align-items: center; gap: 15px; transform: translateY(20px); opacity: 0; transition: 0.4s; width: 350px; 
    box-shadow: 0 0 40px rgba(0, 246, 255, 0.15); border-radius: 8px;
    position: relative; overflow: hidden;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-progress {
    position: absolute; bottom: 0; left: 0; height: 3px; background: var(--hextech);
    width: 100%; transform-origin: left; animation: toastTimer 4s linear forwards;
}
@keyframes toastTimer { from { transform: scaleX(1); } to { transform: scaleX(0); } }

.site-footer { background: #0202024a; border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 60px; margin-top: auto; position: relative; z-index: 10; }
.footer-content { max-width: 1250px; margin: 0 auto; padding: 0 25px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo i { color: var(--hextech); }
.footer-logo span { opacity: 1; font-weight: 400; color: #fff; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 25px; max-width: 300px; }
.system-status { display: inline-flex; align-items: center; gap: 10px; background: rgba(0, 246, 255, 0.05); border: 1px solid var(--hextech); padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; color: var(--hextech); font-weight: 600; }
.status-dot { width: 6px; height: 6px; background: var(--hextech); border-radius: 50%; box-shadow: 0 0 8px var(--hextech); animation: pulseLive 2s infinite; }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list a { color: var(--text-muted); font-size: 0.9rem; transition: 0.3s; display: inline-block; }
.footer-links-list a:hover { color: var(--hextech); transform: translateX(5px); text-shadow: 0 0 8px var(--hextech-glow); }
.social-icons { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; transition: 0.3s; border: 1px solid transparent; }
.social-btn:hover { background: var(--hextech); color: #000; border-color: var(--hextech); transform: translateY(-3px); box-shadow: 0 0 20px var(--hextech-glow); }
.footer-bottom { max-width: 1250px; margin: 0 auto; padding: 30px 25px 0; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 20px; }
.disclaimer { font-size: 0.75rem; color: #64748b; line-height: 1.6; text-align: justify; }
.disclaimer strong { color: var(--text-muted); }
.copyright { text-align: center; color: var(--text-muted); font-size: 0.8rem; font-family: var(--font-mono); }

/* --- 10. TESTIMONIALS --- */
.reviews-section { text-align: center; margin-bottom: 80px; }
.review-card {
    background: #05080f; 
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px; text-align: left;
    position: relative; transition: 0.3s; height: 100%; border-radius: 8px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--gold-main); box-shadow: 0 0 30px rgba(243, 210, 145, 0.1); }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.review-avatar {
    width: 45px; height: 45px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-main); font-size: 1.2rem; border-radius: 50%;
}
.review-avatar i { transform: rotate(0deg); }
.review-info h4 { font-family: var(--font-head); font-size: 0.95rem; color: #fff; margin-bottom: 2px; }
.review-info span { font-size: 0.75rem; color: #666; font-family: var(--font-mono); }
.stars { color: var(--gold-main); font-size: 0.8rem; margin-bottom: 15px; text-shadow: 0 0 10px rgba(243, 210, 145, 0.4); }
.review-text { font-size: 0.9rem; color: #aaa; line-height: 1.6; font-style: italic; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseLive { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; } 100% { opacity: 1; transform: scale(1); } }

/* --- MOBILE OVERRIDES --- */
@media (max-width: 800px) {
    .mobile-menu-btn { display: block; }
    
    .nav-links { 
        display: none; position: absolute; top: 80px; left: 0; width: 100%; 
        background: #010203; border-bottom: 1px solid var(--gold-main);
        flex-direction: column; gap: 20px; padding: 30px; 
        z-index: 100; clip-path: none;
    }
    .nav-links.active { display: flex; animation: fadeUp 0.3s ease-out; }

    .logo { font-size: 1.2rem; }
    .hero h1 { font-size: 3.5rem; }
    .grid-3, .partners-grid { grid-template-columns: 1fr; }
    .partners-grid { gap: 30px; }
    .stats-dashboard { grid-template-columns: 1fr !important; gap: 0; height: auto; border: none; background: transparent; box-shadow: none; clip-path: none; }
    .stat-module { padding: 30px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); background: #05080f; margin-bottom: 10px; border-radius: 8px; }
    .cta-group { flex-direction: column; width: 100%; }
    .btn-mega { width: 100%; justify-content: center; }
    .instant-guide { flex-direction: column; align-items: flex-start; gap: 15px; width: 100%; border-radius: 12px; }
    .tech-wheel-container { width: 140vw; height: 140vw; right: -50%; top: 10%; opacity: 0.1; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-desc { max-width: 100%; }
    .disclaimer { text-align: left; }
    .btn-x-premium span { display: none; }

    /* Obsługa nowego elementu tła na mobile */
    .tech-network-container-left { width: 120vw; height: 120vw; left: -60%; top: 20%; opacity: 0.05; }
}

@media (max-width: 600px) {
    th:nth-child(2), td:nth-child(2) { display: none; }
    td:nth-child(3) { font-size: 1rem; } 
}