/* --- KONFIGURACJA ZMIENNYCH --- */
        :root {
            --bg-body: #050508; 
            --glass-bg: rgba(12, 14, 20, 0.75);
            --glass-border: rgba(255, 255, 255, 0.08);
            --brand-cyan: #22d3ee;
            --brand-blue: #3b82f6;
            --brand-gradient: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-blue) 100%);
            --text-main: #ffffff;
            --text-secondary: #94a3b8; 
            --text-muted: #64748b;
            --footer-glow: rgba(34, 211, 238, 0.15);
            --promo-height: 40px; 
        }

        /* --- RESET I BAZA --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        html, body { width: 100%; max-width: 100%; overflow-x: hidden; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            min-height: 100vh;
            display: flex; flex-direction: column;
            transition: padding-top 0.3s ease; 
            position: relative;
        }

        /* --- NOWY, STYLOWY SCROLLBAR Z KOLORAMI MARKI (POPRAWIONY) --- */

        /* Dla przeglądarek WebKit (Chrome, Safari, Edge) */
        ::-webkit-scrollbar {
            width: 5px; /* Szerokość paska */
            background: transparent;
        }

        ::-webkit-scrollbar-track {
            /* Ustawiamy tło ścieżki na kolor tła BODY, aby usunąć "czarny pasek" */
            background: var(--bg-body); 
            /* Usuwamy wszelkie dodatkowe obramowania ścieżki, które mogłyby być widoczne */
            border: none;
        }

        ::-webkit-scrollbar-thumb {
            /* Główny kolor: subtelny, półprzezroczysty gradient */
            background: linear-gradient(180deg, rgba(7, 156, 243, 0.5) 0%, rgba(7, 243, 223, 0.5) 100%); 
            border-radius: 0px; 
            /* Kciuk jest otoczony marginesem o kolorze tła, co tworzy efekt czystego paska */
            border: 0px solid var(--bg-body); 
            transition: background 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
            /* Kolor po najechaniu: pełny, wyraźny gradient marki */
            background: var(--brand-gradient); 
            border: 2px solid var(--bg-body); /* Mniejszy margines na hover, by kciuk był większy */
        }

        /* Dla przeglądarek Firefox */
        body {
            /* Używamy głównego koloru cyjanowego dla "kciuka" i koloru tła dla "ścieżki" */
            scrollbar-color: rgba(0, 0, 0, 0.5) var(--bg-body); 
            scrollbar-width: thin; 
        }

        /* --- PROMO BANNER --- */
        .promo-banner {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: var(--promo-height);
            background: linear-gradient(90deg, #0e7490 0%, #1d4ed8 100%); z-index: 1100;
            justify-content: center; align-items: center; color: #fff; font-size: 0.85rem; font-weight: 500;
            text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 10px;
        }
        .promo-content { display: flex; gap: 10px; align-items: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .promo-code {
            background: rgba(255, 255, 255, 0.15); padding: 2px 8px; border-radius: 4px;
            font-weight: 700; letter-spacing: 0.5px; font-family: 'Space Grotesk', sans-serif;
            border: 1px solid rgba(255,255,255,0.2);
        }
        body.has-promo .promo-banner { display: flex; }
        body.has-promo .navbar { top: var(--promo-height); }
        body.has-promo .mobile-menu { top: calc(84px + var(--promo-height)); height: calc(100vh - 84px - var(--promo-height)); }

        /* --- NAVBAR --- */
        .navbar {
            position: fixed; top: 0; left: 0; width: 100%; height: 84px;
            display: flex; align-items: center; justify-content: center; z-index: 1000;
            background: var(--glass-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--glass-border); transition: top 0.3s ease;
        }
        .nav-container {
            width: 100%; max-width: 1400px; padding: 0 40px;
            display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1001;
        }
        .logo-area { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-img { height: 40px; width: auto; }
        .nav-menu { display: flex; gap: 32px; list-style: none; }
        .nav-link {
            text-decoration: none; color: var(--text-secondary); font-size: 0.95rem; font-weight: 500;
            transition: color 0.3s ease; position: relative; padding: 10px 0; display: inline-block;
        }
        .nav-link:hover { color: #fff; }
        .nav-link::after {
            content: ''; position: absolute; bottom: 2px; left: 50%; width: 24px; height: 2px;
            background: var(--brand-gradient); border-radius: 2px;
            transform: translateX(-50%) scaleX(0); transform-origin: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
        .nav-link.active { color: #fff; }
        .nav-actions { display: flex; align-items: center; gap: 16px; }
        .btn-secondary {
            text-decoration: none; color: #cbd5e1; font-size: 0.9rem; font-weight: 600;
            padding: 10px 20px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03); transition: all 0.3s ease;
        }
        .btn-secondary:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.08); transform: translateY(-1px); }
        .btn-primary {
            position: relative; text-decoration: none; font-size: 0.9rem; font-weight: 600; color: #fff;
            padding: 10px 24px; border-radius: 12px; background: var(--brand-gradient);
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3); overflow: hidden; z-index: 1;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .btn-primary::before { content: ''; position: absolute; top: 1px; left: 1px; right: 1px; bottom: 1px; border-radius: 11px; border: 1px solid rgba(255, 255, 255, 0.25); z-index: 2; pointer-events: none; }
        .btn-primary::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent); opacity: 0; transition: opacity 0.3s ease; z-index: 2; }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5); }
        .btn-primary:hover::after { opacity: 1; }

        /* BURGER MENU */
        .burger { display: none; cursor: pointer; width: 30px; height: 30px; position: relative; z-index: 1002; color: white; }
        
        .mobile-menu {
            position: fixed; top: 84px; left: 0; width: 100%; height: calc(100vh - 84px);
            background: rgba(5, 5, 8, 0.98); backdrop-filter: blur(15px);
            display: flex; flex-direction: column; align-items: center; justify-content: start;
            padding-top: 40px; gap: 20px; transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 999;
        }
        .mobile-menu.active { transform: translateX(0); }
        .mobile-link { font-size: 1.2rem; color: var(--text-secondary); text-decoration: none; font-weight: 500; padding: 10px; width: 100%; text-align: center; }
        .mobile-link:hover, .mobile-link.active { color: #fff; }
        .mobile-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 15px; width: 80%; }
        .mobile-actions .btn-secondary, .mobile-actions .btn-primary { width: 100%; text-align: center; padding: 14px; }

        /* --- HERO SECTION --- */
        .hero { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; padding-top: 100px; overflow: hidden; background-color: var(--bg-body); }
        .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; opacity: 0.4; mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%); transition: background-image 0.5s ease-in-out, opacity 0.5s ease; }
        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 75% 40%, rgba(34, 211, 238, 0.05), transparent 60%), linear-gradient(to right, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.6) 100%); z-index: 1; }
        .hero-particles { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 1; pointer-events: none; background-image: radial-gradient(#22d3ee 1px, transparent 1px), radial-gradient(#3b82f6 1px, transparent 1px); background-size: 50px 50px; background-position: 0 0, 25px 25px; opacity: 0.2; animation: moveParticles 20s linear infinite; }
        @keyframes moveParticles { from { background-position: 0 0, 25px 25px; } to { background-position: 100px 100px, 125px 125px; } }
        .hero-container { width: 100%; max-width: 1400px; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
        
        .hero-text { max-width: 650px; position: relative; width: 100%; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.2); padding: 6px 16px; border-radius: 20px; color: var(--brand-cyan); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; margin-bottom: 24px; font-family: 'Space Grotesk', sans-serif; }
        .hero-badge span { width: 8px; height: 8px; background: var(--brand-cyan); border-radius: 50%; box-shadow: 0 0 10px var(--brand-cyan); }
        .hero-h1 {
            font-family: 'Space Grotesk', sans-serif;
            /* Zwiększono z 4rem na 5rem */
            font-size: 5rem; 
            line-height: 1; 
            font-weight: 800;
            color: #fff;
            margin-bottom: 24px;
            letter-spacing: -2px; /* Ciaśniejszy tracking wygląda nowocześniej przy dużej czcionce */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hero-h1 span.highlight { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-desc { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 30px; max-width: 90%; transition: opacity 0.3s ease; }
        
        .price-btn { display: inline-flex; align-items: center; gap: 16px; padding: 12px 16px 12px 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; text-decoration: none; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; margin-bottom: 24px; width: fit-content; transform: translateY(0); opacity: 1; }
        .price-btn:hover { background: rgba(255,255,255,0.06); border-color: rgba(34, 211, 238, 0.3); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .price-icon-box { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(59, 130, 246, 0.1)); border: 1px solid rgba(34, 211, 238, 0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; transition: all 0.3s ease; }
        .price-icon-box img { width: 32px; height: 32px; object-fit: contain; }
        .price-btn:hover .price-icon-box { background: var(--brand-gradient); border-color: transparent; color: white; box-shadow: 0 0 15px rgba(34, 211, 238, 0.4); }
        .price-text-content { display: flex; flex-direction: column; gap: 2px; }
        .price-label { color: var(--text-secondary); font-size: 0.75rem; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
        .price-value { color: #fff; font-family: 'Space Grotesk'; font-size: 1.25rem; font-weight: 700; white-space: nowrap; }
        .price-arrow { margin-left: 10px; color: var(--text-muted); transition: transform 0.3s; }
        .price-btn:hover .price-arrow { transform: translateX(5px); color: #fff; }
        .anim-fade-out { opacity: 0; transform: translateY(10px); }
        
        .slider-controls { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
        .slider-arrow { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
        .slider-arrow:hover { background: var(--brand-gradient); border-color: transparent; transform: scale(1.1); }
        .slider-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600;}
        
        .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; width: 100%; }
        .stat-box { display: flex; flex-direction: column; gap: 4px; }
        .stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: #fff; display: flex; align-items: baseline; }
        .stat-number::after { content: '+'; color: var(--brand-cyan); font-size: 1.2rem; margin-left: 2px; }
        .stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
        
        .hero-visual { position: relative; height: 600px; display: flex; justify-content: center; align-items: center; width: 100%; }
        .render-glow { position: absolute; width: 60%; height: 60%; background: radial-gradient(circle, var(--brand-blue) 0%, transparent 70%); opacity: 0.3; filter: blur(60px); z-index: 1; transition: opacity 0.3s ease; }
        .visual-render { position: relative; z-index: 5; width: 100%; max-width: 480px; height: auto; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5)); animation: floatHero 6s ease-in-out infinite; transition: opacity 0.3s ease, transform 0.3s ease; }
        @keyframes floatHero { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

        /* --- FEATURES BENTO GRID (SKOMPRESOWANA) --- */
        .features {
            padding: 60px 40px; 
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 230px); 
            gap: 20px;
        }

        /* Styl Kafelka */
        .bento-card {
            background: rgba(15, 17, 21, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px; 
            padding: 24px; 
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .bento-card:hover { transform: translateY(-5px); }

        /* Spotlight (Bez zmian) */
        .bento-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 20px; padding: 1px; background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(34, 211, 238, 0.6), transparent 40%); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; -webkit-mask-composite: xor; pointer-events: none; opacity: 0; transition: opacity 0.3s; }
        .bento-grid:hover .bento-card::before { opacity: 1; }
        .spotlight-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(34, 211, 238, 0.06), transparent 40%); opacity: 0; transition: opacity 0.3s; pointer-events: none; z-index: 0; }
        .bento-grid:hover .spotlight-bg { opacity: 1; }

        /* Content wewnątrz kafelka */
        .card-content {
            position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column;
        }

        .card-icon-lg {
            width: 44px; height: 44px; background: rgba(255,255,255,0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand-cyan); margin-bottom: 16px; font-size: 1.3rem;
        }

        .card-title {
            font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 8px;
        }

        .card-desc {
            font-size: 0.9rem; color: var(--text-secondary); line-height: 1.4;
        }

        /* Grid Spans */
        .span-2 { grid-column: span 2; }
        .span-1 { grid-column: span 1; }
        .row-2 { grid-row: span 2; }

        /* --- WIZUALIZACJE --- */
        .terminal-visual {
            background: #09090b; border-radius: 8px; padding: 16px; font-family: 'Courier New', monospace; font-size: 0.75rem; color: #4ade80; display: block; border: 1px solid rgba(255,255,255,0.1); line-height: 1.8; white-space: nowrap; overflow: hidden; margin-top: auto; width: 100%;
        }
        .typing::after { content: '_'; animation: blink 1s infinite; }
        @keyframes blink { 50% { opacity: 0; } }

        /* ZAKTUALIZOWANA WIZUALIZACJA HARDWARE (Ikony) */
        .hardware-visual {
            margin-top: auto; width: 100%; display: flex; justify-content: space-around; align-items: center; padding-top: 20px; height: 80px;
        }

        .hw-item { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; }

        .hw-icon-box {
            width: 42px; height: 42px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; animation: floatIcon 3s ease-in-out infinite; transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Domyślny, subtelny cień */
        }

        /* Dodanie animacji poświaty/glow przy najechaniu */
        .bento-card:hover .hw-icon-box {
            background: rgba(34, 211, 238, 0.1); 
            border-color: rgba(34, 211, 238, 0.4);
            box-shadow: 0 0 15px rgba(34, 211, 238, 0.4), 0 0 5px rgba(255,255,255,0.2); 
        }

        /* Kolory i opóźnienia animacji */
        .hw-item:nth-child(1) .hw-icon-box { color: var(--brand-cyan); } 
        .hw-item:nth-child(2) .hw-icon-box { animation-delay: 0.2s; color: var(--brand-blue); } 
        .hw-item:nth-child(3) .hw-icon-box { animation-delay: 0.4s; color: #a78bfa; } 

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        /* ZAKTUALIZOWANA WIZUALIZACJA PANELU (Z naprawioną kropką) */
        .panel-visual {
            margin-top: auto; width: 100%; height: 90px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; position: relative; overflow: hidden; padding: 12px; display: flex; gap: 12px;
        }

        .panel-sidebar { width: 20%; height: 100%; background: rgba(255,255,255,0.05); border-radius: 4px; display: flex; flex-direction: column; gap: 6px; padding: 4px; }
        .panel-line { width: 100%; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; }
        .panel-line.active { background: var(--brand-cyan); width: 60%; }

        .panel-main {
            flex: 1; display: flex; flex-direction: column; gap: 10px; position: relative;
        }
        .panel-header { width: 40%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 2px; }

        .panel-graph {
            width: 100%; flex: 1; background: linear-gradient(180deg, rgba(74, 222, 128, 0.1) 0%, transparent 100%); border-top: 1px solid #4ade80; position: relative; border-radius: 4px;
        }

        /* FIZYCZNA KROPKA STATUSU (NAPRAWIONA) */
        .panel-status-dot {
            position: absolute;
            top: 12px;      /* Pozycja kropki (12px od góry) */
            right: 12px;    
            width: 8px;
            height: 8px;
            background: #4ade80; /* Zielony neon */
            border-radius: 50%;
            z-index: 10;
            box-shadow: 0 0 10px #4ade80;
        }

        /* Fala pulsowania */
        .panel-status-dot::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 100%; height: 100%;
            background: inherit;
            border-radius: 50%;
            animation: pulseDot 2s infinite;
        }

        @keyframes pulseDot {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
            100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
        }


        /* --- MAP VISUAL --- */
        .interactive-map {
            width: 100%; flex-grow: 1; min-height: 200px; margin-top: 20px; position: relative; border-radius: 12px; overflow: hidden; background: rgba(0,0,0,0.2);
        }

        .map-bg-svg {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.5; background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Simple_world_map.svg/2560px-Simple_world_map.svg.png'); background-size: 450%; background-position: 53% 22%; filter: invert(1); mask-image: radial-gradient(circle, black 40%, transparent 100%); -webkit-mask-image: radial-gradient(circle, black 40%, transparent 100%);
        }

        .map-point {
            position: absolute; width: 14px; height: 14px; background: var(--brand-cyan); border-radius: 50%; z-index: 10; box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
        }
        .map-point::after { content: ''; position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; border-radius: 50%; background: inherit; transform: translate(-50%, -50%); z-index: -1; animation: pointPulse 2s infinite; }
        @keyframes pointPulse { 0% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(3); } }

        /* RESPONSIVE CSS */
        @media (max-width: 1024px) {
            .hero-visual { display: none; } 
            .hero-container { grid-template-columns: 1fr; text-align: center; }
            .hero-text { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
            .hero-h1 { min-height: auto; text-align: center; font-size: 2.5rem; }
            .stats-grid { justify-content: center; }
            .nav-menu, .nav-actions { display: none; } 
            .burger { display: block; } 
            .nav-container { padding: 0 24px; }
            .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
            .span-2 { grid-column: span 2; }
            .row-2 { grid-row: span 1; height: 380px; } 
            .span-1 { min-height: 240px; }
        }

        @media (max-width: 650px) {
            .nav-container, .hero-container, .footer-container, .features { padding: 0 20px; }
            .hero { padding-top: 160px; } 
            .hero-container { gap: 30px; }
            .hero-h1 { 
                /* Zwiększono z 2.4rem na 3.2rem */
                font-size: 3.2rem; 
                margin-bottom: 16px; 
            }
            .hero-desc { font-size: 0.95rem; margin-bottom: 24px; text-align: center; }
            .price-icon-box { width: 40px; height: 40px; min-width: 40px; font-size: 1.2rem; }
            .price-value { font-size: 1.1rem; }
            .slider-controls { margin-bottom: 30px; }
            .promo-banner { font-size: 0.75rem; padding: 0 10px; }
            .stats-grid { gap: 10px; }
            .stat-number { font-size: 1.4rem; justify-content: center; }
            .stat-label { font-size: 0.7rem; }
            .bento-grid { grid-template-columns: 1fr; }
            .span-2, .span-1 { grid-column: span 1; }
            .row-2 { height: 400px; } 
            .features { padding: 40px 20px; }
            .interactive-map { min-height: 220px; }
        }

        /* --- FOOTER STYLES (ZRESTAUROWANE) --- */
        .footer {
            margin-top: auto;
            position: relative;
            border-top: 1px solid var(--glass-border);
            padding: 80px 0 0 0;
            background: radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.12), transparent 50%), rgba(10, 11, 16, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            overflow: hidden;
            z-index: 10;
        }

        .footer-container {
            width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
            gap: 50px;
            margin-bottom: 60px;
            position: relative; z-index: 2;
        }

/* --- PRICING HUB (POPRAWIONY - BEZ UCIĘTYCH ROGÓW) --- */
        .pricing-hub {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
            position: relative;
            z-index: 4;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 24px;
        }

        /* --- KARTA OFERTY (NOWA) --- */
        .pricing-card {
            background: rgba(15, 17, 21, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 36px 28px;
            display: flex; flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            backdrop-filter: blur(12px);
            /* Subtelny cień wewnętrzny */
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
        }

        /* Efekt Spotlight / Glow od góry */
        .pricing-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%;
            background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(34, 211, 238, 0.08), transparent 40%);
            opacity: 0; transition: opacity 0.3s; pointer-events: none; z-index: 0;
        }
        .pricing-grid:hover .pricing-card::before { opacity: 1; }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: rgba(34, 211, 238, 0.3);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
        }

        /* Header karty */
        .pc-header {
            display: flex; align-items: center; gap: 16px; margin-bottom: 24px; position: relative; z-index: 1;
        }
        
        .pc-icon-box {
            width: 56px; height: 56px;
            background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .pc-icon-img { width: 32px; height: 32px; object-fit: contain; }

        .pc-info h3 {
            font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin: 0;
        }
        .pc-info p {
            color: var(--text-secondary); font-size: 0.85rem; margin-top: 4px;
        }

        /* Cena */
        .pc-price-box {
            margin-bottom: 24px; position: relative; z-index: 1;
            padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .pc-price-val { font-size: 1.8rem; font-weight: 700; color: #fff; font-family: 'Space Grotesk'; }
        .pc-price-period { font-size: 0.9rem; color: var(--text-muted); }

        /* Lista funkcji (Wypełniacz) */
        .pc-features {
            display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; position: relative; z-index: 1; flex-grow: 1;
        }
        .pc-tag {
            font-size: 0.75rem; font-weight: 600;
            padding: 6px 12px; border-radius: 6px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            display: flex; align-items: center; gap: 6px;
        }
        .pc-tag svg { width: 14px; height: 14px; opacity: 0.7; }

        /* Przycisk Wybierz */
        .btn-card-action {
            width: 100%; padding: 14px;
            background: var(--brand-gradient);
            color: #fff; font-weight: 700; text-align: center; text-decoration: none;
            border-radius: 12px;
            position: relative; z-index: 1; overflow: hidden;
            transition: transform 0.2s;
            box-shadow: 0 4px 15px rgba(34, 211, 238, 0.2);
        }
        /* Efekt Shine na przycisku */
        .btn-card-action::after {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        .btn-card-action:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(34, 211, 238, 0.35); }
        .btn-card-action:hover::after { left: 100%; }


        /* --- BIG BANNER (MIGRATION / OFFER) --- */
        .promo-hub-banner {
            position: relative;
            width: 100%;
            min-height: 280px;
            border-radius: 24px;
            overflow: hidden;
            display: flex; align-items: center; justify-content: space-between;
            background: #050508;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0 60px;
        }

        /* Tło z Modrinth */
        .ph-bg-image {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://cdn.modrinth.com/data/UaS8ROxa/images/cbdcb5c6e5fc7d520f01f5f95d2e6734e86a1dd9.png');
            background-size: cover; background-position: center;
            opacity: 0.6; z-index: 0;
        }
        /* Gradient nakładkowy (Brand Colors) */
        .ph-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, 
                rgba(5, 5, 8, 1) 0%, 
                rgba(5, 5, 8, 0.95) 40%, 
                rgba(14, 116, 144, 0.4) 100%
            );
            z-index: 1;
        }

        .ph-content {
            position: relative; z-index: 2; max-width: 550px;
        }

        .ph-badge {
            font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
            color: #fff; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255,255,255,0.2);
            padding: 6px 12px; border-radius: 30px; margin-bottom: 16px; display: inline-block;
        }

        .ph-title {
            font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: #fff;
            line-height: 1.1; margin-bottom: 16px;
        }

        .ph-desc {
            color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.6; margin-bottom: 30px;
        }

        .ph-visual {
            position: relative; z-index: 2; height: 100%; display: flex; align-items: flex-end;
        }
        
        .ph-render {
            width: 400px; height: auto;
            transform: translateY(20px) rotate(-3deg);
            filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
            transition: transform 0.4s ease;
        }
        .promo-hub-banner:hover .ph-render {
            transform: translateY(0px) rotate(0deg) scale(1.05);
        }

        /* Responsywność */
        @media (max-width: 1024px) {
            .pricing-grid { grid-template-columns: 1fr; }
            .promo-hub-banner { flex-direction: column; text-align: center; padding: 40px 20px; }
            .ph-content { padding-bottom: 30px; }
            .ph-overlay { background: linear-gradient(180deg, rgba(5,5,8,1) 0%, rgba(5,5,8,0.8) 100%); }
            .ph-render { width: 300px; transform: none; }
        }
        @media (max-width: 650px) {
            .pricing-hub { padding: 40px 20px; }
            .pricing-card { padding: 24px; }
        }


        /* --- LIBRARY BANNER (POPRAWIONY) --- */
        .lib-banner {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            /* Ciemne tło bazowe */
            background-color: #050508;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 50px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 320px;
        }

        /* Tło z obrazka Modrinth */
        .lib-bg-img {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://www.4netplayers.com/images/4netplayers/blog/minecraft-shader-install/Minecraft-BSL-Shaders-2.webp');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        /* Gradient Overlay (Kolory z Promo Banner: #0e7490 -> #1d4ed8) */
        .lib-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, 
                rgba(5, 5, 8, 0.98) 0%, 
                rgba(14, 116, 144, 0.85) 50%, /* Turkus/Morski */
                rgba(29, 78, 216, 0.4) 100%   /* Niebieski */
            );
            z-index: 1;
        }

        .lib-content {
            position: relative; z-index: 2;
            max-width: 500px;
        }

        .lib-badge {
            display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
            color: #fff; background: rgba(255, 255, 255, 0.1); 
            padding: 6px 12px; border-radius: 50px; margin-bottom: 16px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .lib-title {
            font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: #fff;
            line-height: 1.1; margin-bottom: 16px;
        }

        .lib-desc {
            color: rgba(255, 255, 255, 0.8); font-size: 1rem; line-height: 1.6; margin-bottom: 30px;
        }

        /* Button "Zobacz pełną ofertę" */
        .btn-lib-action {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 14px 32px;
            background: #fff; color: #000;
            font-weight: 700; font-size: 1rem; text-decoration: none; border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .btn-lib-action:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
            background: #f0f9ff;
        }
        .btn-lib-action svg { transition: transform 0.3s; }
        .btn-lib-action:hover svg { transform: translateX(4px); }

        /* Prawa strona - Chmura Tagów Gier */
        .lib-visual {
            position: relative; z-index: 2;
            display: flex; flex-direction: column; gap: 12px;
            transform: rotate(-3deg);
        }
        .lib-row { display: flex; gap: 12px; justify-content: center; }
        
        .game-tag {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 10px 20px;
            border-radius: 12px;
            color: #fff; font-weight: 600; font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, background 0.3s;
            cursor: default;
        }
        .game-tag:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }
        .game-tag.highlight {
            background: rgba(34, 211, 238, 0.2);
            border-color: var(--brand-cyan);
        }

        /* Responsywność */
        @media (max-width: 1024px) {
            .pricing-grid { grid-template-columns: 1fr; }
            .lib-banner { flex-direction: column; text-align: center; padding: 40px 20px; }
            .lib-overlay { background: linear-gradient(180deg, rgba(5,5,8,0.95) 0%, rgba(14, 116, 144, 0.8) 100%); }
            .lib-visual { margin-top: 40px; transform: rotate(0); width: 100%; }
            .lib-row { flex-wrap: wrap; }
        }
        
        @media (max-width: 650px) {
            .pricing-hub { padding: 40px 20px; }
        }

        /* --- SEPARATORY (LEFT ALIGNED + SPACE GROTESK + LESS GAP) --- */
        .section-separator {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            /* Zmniejszony dolny padding z 20px na 0px, żeby było bliżej */
            padding: 60px 40px 0 40px; 
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: relative;
        }

        .sep-text {
            /* Zmiana na Space Grotesk */
            font-family: 'Space Grotesk', sans-serif; 
            /* Zwiększony rozmiar czcionki */
            font-size: 1.8rem; 
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff; /* Jaśniejszy kolor dla lepszej widoczności */
            position: relative;
            padding-left: 20px; /* Więcej miejsca na kropkę */
        }

        /* Subtelny gradient na tekście */
        .sep-text span {
            background: linear-gradient(90deg, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Kropka z lewej strony (nieco większa) */
        .sep-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px; /* Zwiększona kropka */
            height: 6px;
            background: var(--brand-cyan);
            border-radius: 50%;
            box-shadow: 0 0 12px var(--brand-cyan);
        }

        /* Linia dekoracyjna */
        .sep-text::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            margin-left: 25px;
            width: 120px;
            height: 1px;
            background: linear-gradient(90deg, rgba(255,255,255,0.15), transparent);
        }

        @media (max-width: 650px) {
            .section-separator { padding: 40px 20px 0 20px; }
            .sep-text { font-size: 1.4rem; } /* Mniejszy na telefonie, ale wciąż czytelny */
        }

        /* --- SEKCJA O NAS: DIGITAL NETWORK GLOBE --- */
        .about-section {
            width: 100%; max-width: 1400px; margin: 0 auto;
            padding: 80px 40px; position: relative; z-index: 4;
        }

        .about-card-wide {
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 60px;
            background-color: rgba(10, 11, 16, 0.6);
            backdrop-filter: blur(12px);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 40px;
            
            /* PRZYWRÓCONE TŁO SIATKI (GRID) */
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        /* LEWA STRONA (TEKST) */
        .ab-content { position: relative; z-index: 2; }

        .ab-label {
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
            color: var(--brand-cyan); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
        }
        .ab-label::before { content: ''; width: 30px; height: 1px; background: var(--brand-cyan); }

        .ab-title {
            font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 700; color: #fff;
            line-height: 1.1; margin-bottom: 24px;
        }
        .ab-title span {
            color: transparent; background: linear-gradient(90deg, #fff, #94a3b8); -webkit-background-clip: text;
        }

        .ab-text {
            color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px;
        }

        /* Kafelki cech */
        .ab-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .ab-feat-card {
            background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px; border-radius: 16px; transition: transform 0.3s;
        }
        .ab-feat-card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.05); border-color: rgba(34, 211, 238, 0.2); }
        
        .ab-feat-icon { color: var(--brand-cyan); margin-bottom: 10px; }
        .ab-feat-title { font-weight: 700; color: #fff; margin-bottom: 5px; font-size: 1rem; }
        .ab-feat-desc { font-size: 0.85rem; color: var(--text-muted); }


        /* PRAWA STRONA (NETWORK GLOBE - STYL Z SIECI) */
        .ab-visual {
            position: relative;
            display: flex; justify-content: center; align-items: center;
            height: 400px;
        }

        .net-globe-container {
            width: 300px; height: 300px;
            position: relative;
            perspective: 1000px;
        }

        /* Kula z mapą (płaska, cyfrowa, nie fizyczna) */
        .net-globe {
            width: 100%; height: 100%;
            border-radius: 50%;
            /* Mapa świata jako tekstura */
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Simple_world_map.svg/2560px-Simple_world_map.svg.png');
            background-size: 200% 100%; /* Rozciągnięcie mapy */
            background-position: 0 0;
            
            /* Kluczowe dla wyglądu "Tech": Inwersja kolorów i kolorowanie na niebiesko */
            filter: invert(1) sepia(1) hue-rotate(160deg) saturate(2) brightness(0.8) contrast(1.2);
            
            opacity: 0.8;
            box-shadow: inset 0 0 50px rgba(0,0,0,0.8), 0 0 30px rgba(34, 211, 238, 0.1);
            animation: spinMap 30s linear infinite;
            position: relative;
            z-index: 2;
        }
        
        /* Maska dająca efekt kuli 3D */
        .net-globe::before {
            content: ''; position: absolute; inset: 0; border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 60%);
            box-shadow: inset -10px -10px 40px rgba(0,0,0,0.9);
            z-index: 3;
        }

        /* Pierścienie danych (Rings) */
        .net-ring {
            position: absolute; top: 50%; left: 50%;
            border-radius: 50%;
            border: 1px solid rgba(34, 211, 238, 0.2);
            transform: translate(-50%, -50%) rotateX(70deg);
            z-index: 1;
        }
        .nr-1 { width: 400px; height: 400px; border-style: dashed; animation: spinRing 20s linear infinite; }
        .nr-2 { width: 500px; height: 500px; border-color: rgba(59, 130, 246, 0.15); animation: spinRing 30s linear infinite reverse; }

        /* Punkty na mapie (Hotspots) */
        .net-point {
            position: absolute; width: 6px; height: 6px; background: #fff; border-radius: 50%;
            box-shadow: 0 0 10px #fff, 0 0 20px var(--brand-cyan);
            z-index: 4;
        }
        /* Te punkty "lewitują" nad kulą statycznie, symulując bycie na orbicie lub w sieci */
        .np-1 { top: 35%; left: 40%; animation: floatPoint 4s ease-in-out infinite; }
        .np-2 { top: 45%; left: 65%; animation: floatPoint 4s ease-in-out infinite 2s; }
        
        /* Poświata pod spodem */
        .net-glow {
            position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
            width: 200px; height: 20px; background: rgba(34, 211, 238, 0.3);
            filter: blur(40px); border-radius: 50%;
        }

        @keyframes spinMap { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } }
        @keyframes spinRing { 0% { transform: translate(-50%, -50%) rotateX(70deg) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotateX(70deg) rotate(360deg); } }
        @keyframes floatPoint { 0%, 100% { transform: translateY(0); opacity: 0.8; } 50% { transform: translateY(-10px); opacity: 1; } }

        @media (max-width: 1024px) {
            .about-card-wide { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; }
            .ab-label { justify-content: center; }
            .ab-content { padding-right: 0; }
            .ab-visual { margin-top: 40px; height: 300px; }
            .nr-2 { display: none; } /* Mniej detali na mobile */
        }

/* --- SEKCJA DISCORD (COMMUNITY CARD) --- */
        .discord-section {
            width: 100%; max-width: 1400px; margin: 0 auto;
            padding: 0 40px 80px 40px; /* Padding dolny większy, bo to koniec strony */
            position: relative; z-index: 4;
        }

        .discord-card {
            position: relative;
            background: linear-gradient(145deg, #0b0c15, #0f111a);
            border: 1px solid rgba(88, 101, 242, 0.15); /* Kolor Discorda w ramce */
            border-radius: 24px;
            padding: 50px 60px;
            overflow: hidden;
            display: flex; align-items: center; justify-content: space-between;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .discord-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(88, 101, 242, 0.15);
            border-color: rgba(88, 101, 242, 0.4);
        }

        /* Dekoracyjne logo w tle */
        .discord-bg-logo {
            position: absolute; right: -50px; bottom: -80px;
            width: 350px; height: 350px;
            color: rgba(88, 101, 242, 0.05); /* Bardzo delikatne logo w tle */
            transform: rotate(-15deg);
            pointer-events: none;
            transition: transform 0.4s ease;
        }
        .discord-card:hover .discord-bg-logo {
            transform: rotate(0deg) scale(1.1);
            color: rgba(88, 101, 242, 0.08);
        }

        /* Treść */
        .dc-content { position: relative; z-index: 2; max-width: 600px; }

        .dc-title {
            font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: #fff;
            margin-bottom: 15px; line-height: 1.1;
        }
        .dc-title span { color: #5865F2; } /* Kolor Discorda */

        .dc-desc {
            color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; margin-bottom: 0;
        }

        /* Przycisk Discord */
        .btn-discord-join {
            display: inline-flex; align-items: center; gap: 12px;
            padding: 16px 36px;
            background: #5865F2; /* Oficjalny kolor Discorda */
            color: #fff; font-weight: 700; font-size: 1rem;
            text-decoration: none; border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
            position: relative; z-index: 2;
        }

        .btn-discord-join:hover {
            background: #4752c4;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(88, 101, 242, 0.5);
        }
        .btn-discord-join svg { width: 24px; height: 24px; fill: currentColor; }

        /* Responsywność */
        @media (max-width: 900px) {
            .discord-card { flex-direction: column; text-align: center; gap: 30px; padding: 40px 20px; }
            .discord-bg-logo { right: 50%; transform: translateX(50%); bottom: 20px; width: 200px; height: 200px; opacity: 0.5; }
            .discord-card:hover .discord-bg-logo { transform: translateX(50%) scale(1.1); }
            .btn-discord-join { width: 100%; justify-content: center; }
            .discord-section { padding-bottom: 60px; padding-left: 20px; padding-right: 20px; }
        }

        /* --- SEKCJA SHOWCASE PANELU (INTERAKTYWNA) --- */
        .panel-showcase-section {
            width: 100%; max-width: 1400px; margin: 0 auto;
            padding: 100px 40px;
            position: relative; z-index: 4;
            /* Tło siatki dla spójności */
            /*background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);*/
        }

        .panel-sc-container {
            display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
        }

        /* LEWA STRONA - TEKST I ZAKŁADKI */
        .psc-content { display: flex; flex-direction: column; gap: 30px; }
        .psc-label {
            font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
            color: var(--brand-cyan); display: flex; align-items: center; gap: 10px;
        }
        .psc-label::before { content: ''; width: 20px; height: 2px; background: var(--brand-cyan); }
        .psc-title {
            font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1.1;
        }
        .psc-title span { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .psc-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }

        /* Kontener zakładek */
        .panel-tabs {
            display: flex; flex-direction: column; gap: 15px; margin-top: 20px;
        }

        /* Styl pojedynczej zakładki */
        .panel-tab-btn {
            display: flex; align-items: center; gap: 15px;
            padding: 18px 24px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            color: var(--text-muted); font-weight: 600; font-size: 1rem;
            cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: left; position: relative; overflow: hidden;
        }

        .panel-tab-btn svg { width: 24px; height: 24px; stroke-width: 2; transition: color 0.3s; }
        
        /* Hover stan */
        .panel-tab-btn:hover { background: rgba(255, 255, 255, 0.06); color: #fff; transform: translateX(5px); }
        
        /* Aktywny stan zakładki (WOW effect) */
        .panel-tab-btn.active {
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(59, 130, 246, 0.15));
            border-color: var(--brand-cyan);
            color: #fff;
            box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
        }
        .panel-tab-btn.active svg { color: var(--brand-cyan); }
        /* Pasek postępu aktywnej zakładki */
        .panel-tab-btn.active::before {
            content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
            background: var(--brand-cyan); box-shadow: 0 0 10px var(--brand-cyan);
        }


        /* PRAWA STRONA - WIZUALIZACJA LAPTOPA */
        .psc-visual {
            position: relative; display: flex; justify-content: center; align-items: center;
            perspective: 1000px;
        }

        /* Makieta laptopa */
        .laptop-mockup {
            width: 100%; max-width: 700px; aspect-ratio: 16/10;
            background: #0a0a0f;
            border-radius: 20px; /* Zaokrąglenie obudowy */
            padding: 12px 12px 30px 12px; /* Ramka ekranu + dolna belka */
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 20px 50px rgba(0,0,0,0.5), /* Cień ogólny */
                0 0 100px rgba(34, 211, 238, 0.15); /* Neonowa poświata pod spodem */
            position: relative;
            transform: rotateX(5deg) rotateY(-5deg); /* Lekki obrót 3D */
            transition: transform 0.5s ease;
            animation: floatLaptop 6s ease-in-out infinite; /* Lewitacja */
        }
        /* Efekt prostowania przy najechaniu */
        .psc-visual:hover .laptop-mockup { transform: rotateX(0deg) rotateY(0deg) scale(1.02); }

        /* Ekran laptopa (kontener na zdjęcia) */
        .laptop-screen {
            width: 100%; height: 100%; background: #000; border-radius: 8px; position: relative; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
        }
        /* Odbicie światła na ekranie (szkło) */
        .laptop-screen::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none; z-index: 10;
        }

        /* Zdjęcia wewnątrz ekranu */
        .panel-img {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover; object-position: top left;
            opacity: 0; visibility: hidden;
            transform: translateY(20px) scale(1.05); /* Startowa pozycja animacji */
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        /* Aktywne zdjęcie */
        .panel-img.active {
            opacity: 1; visibility: visible;
            transform: translateY(0) scale(1); /* Końcowa pozycja */
        }

        @keyframes floatLaptop { 0%, 100% { transform: rotateX(5deg) rotateY(-5deg) translateY(0); } 50% { transform: rotateX(5deg) rotateY(-5deg) translateY(-15px); } }

        /* Responsywność */
        @media (max-width: 1024px) {
            .panel-sc-container { grid-template-columns: 1fr; gap: 40px; }
            .psc-content { text-align: center; }
            .psc-label { justify-content: center; }
            .laptop-mockup { transform: rotateX(0) rotateY(0); animation: none; margin-top: 20px; }
        }

/* --- SEKCJA FAQ (POPRAWIONA SZEROKOŚĆ - 1400px) --- */
        .faq-section {
            width: 100%; 
            max-width: 1400px; /* Zmieniono z 1000px na 1400px, aby pasowało do reszty */
            margin: 0 auto; 
            padding: 40px 40px 120px 40px; /* Paddingi identyczne jak w sekcji kart */
            position: relative; 
            z-index: 4;
        }

        .faq-container {
            width: 100%;
            display: flex; 
            flex-direction: column; 
            gap: 16px; 
        }

        .faq-item {
            width: 100%; /* Wymuszenie pełnej szerokości */
            background: rgba(15, 17, 21, 0.6); 
            border: 1px solid rgba(255, 255, 255, 0.08); 
            border-radius: 20px; 
            overflow: hidden; 
            transition: all 0.3s ease; 
            backdrop-filter: blur(12px); 
        }

        .faq-item:hover { border-color: rgba(34, 211, 238, 0.3); background: rgba(20, 22, 28, 0.7); }
        .faq-item.active { border-color: var(--brand-cyan); background: rgba(15, 17, 21, 0.9); box-shadow: 0 10px 40px -10px rgba(34, 211, 238, 0.15); }
        
        .faq-question { 
            padding: 24px 30px; 
            cursor: pointer; 
            display: flex; justify-content: space-between; align-items: center; 
            width: 100%; background: none; border: none; 
            text-align: left; 
            font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; 
            color: #fff; transition: color 0.3s; line-height: 1.2; margin: 0; 
        }
        
        .faq-item.active .faq-question { color: var(--brand-cyan); }
        
        .faq-icon { 
            width: 24px; height: 24px; color: var(--text-secondary); 
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s; 
            flex-shrink: 0; 
        }
        
        .faq-item.active .faq-icon { transform: rotate(45deg) scale(1.1); color: var(--brand-cyan); }
        
        .faq-answer-wrapper { 
            display: grid; grid-template-rows: 0fr; 
            transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
        }
        .faq-item.active .faq-answer-wrapper { grid-template-rows: 1fr; }
        
        .faq-answer-content { 
            min-height: 0; overflow: hidden; 
            padding: 0 30px; /* Padding boczny treści */
            color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; 
            opacity: 0; transform: translateY(-10px); 
            transition: opacity 0.4s ease, transform 0.4s ease, padding 0.4s ease; 
        }
        
        .faq-item.active .faq-answer-content { 
            padding-bottom: 24px; 
            opacity: 1; transform: translateY(0); 
        }

        /* --- SPECJALNY SEPARATOR DLA FAQ (CENTER + GRADIENT) --- */
        .faq-separator-container {
            width: 100%; 
            max-width: 1400px; 
            margin: 0 auto; 
            padding: 80px 20px 40px 20px; /* Odstępy góra/dół */
            display: flex; 
            justify-content: center; /* Wyśrodkowanie */
            align-items: center;
            position: relative;
            z-index: 4;
        }

        .faq-sep-title {
            font-family: 'Space Grotesk', sans-serif; 
            font-size: 2.5rem; /* Większy niż standardowy */
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            margin: 0;
            
            /* Gradient Tekstu: Biały -> Brand Cyan */
            background: linear-gradient(90deg, #ffffff 20%, #c0bbbb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            
            /* Subtelny blask */
            filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.25));
        }
        
        /* Opcjonalnie: Mała linia pod spodem dla akcentu */
        .faq-sep-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--brand-cyan);
            margin: 15px auto 0 auto; /* Wyśrodkowanie linii */
            border-radius: 10px;
            box-shadow: 0 0 10px var(--brand-cyan);
        }

        @media (max-width: 650px) {
            .faq-sep-title { font-size: 1.8rem; }
        }

        @media (max-width: 650px) {
            .faq-section { padding: 40px 20px 80px 20px; }
            .faq-question { padding: 20px; font-size: 1rem; }
            .faq-answer-content { padding: 0 20px; }
            .faq-item.active .faq-answer-content { padding-bottom: 20px; }
        }

        .footer-brand p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-top: 20px; margin-bottom: 24px; max-width: 320px; }
        .social-links { display: flex; gap: 12px; }
        .social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); color: var(--text-secondary); transition: all 0.3s ease; text-decoration: none; border: 1px solid transparent; }
        .social-icon:hover { background: rgba(34, 211, 238, 0.1); border-color: rgba(34, 211, 238, 0.3); color: #fff; transform: translateY(-2px); }
        .footer-heading { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 24px; font-family: 'Space Grotesk', sans-serif; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; transition: all 0.2s ease; display: inline-flex; align-items: center; }
        .footer-links a:hover { color: #fff; padding-left: 4px; }
        .company-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; gap: 16px; transition: border-color 0.3s; }
        .company-card:hover { border-color: rgba(255, 255, 255, 0.15); }
        .company-title { color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06); padding-bottom: 12px; margin-bottom: 4px; }
        .data-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
        .data-label { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
        .data-value { color: var(--text-secondary); font-family: 'Inter', monospace; }
        .data-email { color: var(--brand-cyan); text-decoration: none; font-weight: 500; transition: opacity 0.2s; }
        .data-email:hover { opacity: 0.8; }
        .footer-bottom { border-top: 1px solid var(--glass-border); padding: 24px 40px; width: 100%; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
        .copyright { color: var(--text-muted); font-size: 0.85rem; }
        .payment-methods { display: flex; gap: 10px; }
        .payment-icon { height: 30px; padding: 0 12px; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.2); border: 1px solid var(--glass-border); border-radius: 6px; color: var(--text-secondary); font-weight: 600; font-size: 0.75rem; font-family: 'Space Grotesk', sans-serif; cursor: default; }
        @media (max-width: 1024px) {
            .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 24px; }
            .footer-brand { grid-column: span 2; }
            .company-card { margin-top: 10px; }
        }
        @media (max-width: 650px) {
            .footer-container { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
            .footer-brand { grid-column: span 1; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; padding: 24px; }
            .data-row { flex-direction: column; align-items: flex-start; gap: 4px; }
        }

        /* --- PODSTRONA OFERTY (PAGE HEADER & GRID) --- */

/* --- PODSTRONA OFERTY (NEW: DEEP DARK HEADER) --- */

.page-header {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    /* Zwiększony odstęp góry, żeby navbar nie przytłaczał */
    padding-top: 200px; 
    padding-bottom: 80px;
    text-align: center;
    z-index: 2;
    /* Ukrywamy to co wystaje poza glow */
    overflow: visible; 
}

/* 1. Centralna poświata (Ta "mgławica" za napisem) */
.header-spotlight {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    /* Delikatne pulsowanie */
    animation: headerPulse 6s infinite alternate;
}

@keyframes headerPulse {
    0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* 2. Siatka w tle (Grid) - subtelna i techniczna */
.header-grid-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    /* Maska sprawia, że siatka jest widoczna tylko na środku i zanika ku brzegom */
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

/* 3. Styl Tytułu */
.ph-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem; /* Duży, dominujący napis */
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Cień dający efekt 3D */
}

.ph-title span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Dodatkowy glow dla kolorowego słowa */
    filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.3));
}

.ph-desc {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsywność */
@media (max-width: 768px) {
    .page-header { padding-top: 160px; padding-bottom: 40px; }
    .ph-title { font-size: 3rem; }
    .header-spotlight { width: 100%; height: 400px; }
}

/* --- OFERTA.HTML: HERO & GRID UPDATES --- */

/* Wrapper dla Banneru Hero na podstronie */
.offer-hero-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    /* Dystans od navbara */
    padding-top: 140px; 
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Modyfikacja Promo Bannera, żeby pasował jako Hero */
.promo-hub-banner.offer-banner-mode {
    min-height: 350px; /* Nieco wyższy */
}

/* SEKCJA SIATKI GIER (6 KART) */
.games-hub-section {
    width: 100%;
    max-width: 1300px; /* Szerokość kontenera */
    margin: 0 auto;
    padding: 40px 40px 100px 40px;
    position: relative;
    z-index: 5;
}

.games-grid {
    display: grid;
    /* Grid responsywny: dopasuj kolumny, min 340px szerokości karty */
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* KARTA GRY (STYL HUB) */
.game-hub-card {
    background: rgba(15, 17, 21, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Wysokość minimalna dla równości */
    min-height: 420px;
}

/* Tło karty (przyciemnione) */
.gh-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 0;
}
.game-hub-card:hover .gh-bg {
    opacity: 0.3;
    transform: scale(1.05);
}

.gh-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-hub-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
}

/* Ikona Gry */
.gh-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px auto;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.gh-icon img, .gh-icon svg {
    width: 32px; height: 32px; object-fit: contain;
}

.gh-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 5px;
}

.gh-price {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.gh-price .highlight {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

/* Lista funkcji */
.gh-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    flex-grow: 1; 
}
.gh-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
}
.gh-features li:last-child { margin-bottom: 0; }
.gh-features li svg {
    color: var(--brand-cyan);
    width: 16px; height: 16px;
    flex-shrink: 0;
}

/* Responsywność */
@media (max-width: 768px) {
    .offer-hero-wrapper {
        padding: 120px 20px 20px 20px;
    }
    .games-hub-section {
        padding: 20px 20px 60px 20px;
    }
    .games-grid {
        grid-template-columns: 1fr; /* 1 kolumna na mobile */
    }
}

/* --- SEPARATORY (Rozdzielniki sekcji) --- */
.section-separator {
    width: 100%; max-width: 1400px; margin: 0 auto; padding: 60px 40px 0 40px;
    display: flex; align-items: center; justify-content: flex-start; position: relative;
}
.sep-text {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; color: #fff; position: relative; padding-left: 20px;
}
.sep-text span {
    background: linear-gradient(90deg, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.sep-text::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px; background: var(--brand-cyan); border-radius: 50%; box-shadow: 0 0 12px var(--brand-cyan);
}
.sep-text::after {
    content: ''; position: absolute; top: 50%; left: 100%; margin-left: 25px;
    width: 120px; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,0.15), transparent);
}

/* --- PRICING HUB (Oferty + Banner) --- */
.pricing-hub {
    /*width: 100%; max-width: 1400px; margin: 0 auto; padding: 60px 40px; position: relative; z-index: 4;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;*/
}
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px;
}

/* Karta Oferty */
.pricing-card {
    background: rgba(15, 17, 21, 0.7); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px;
    padding: 36px 28px; display: flex; flex-direction: column; position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.pricing-card:hover {
    transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
}
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(34, 211, 238, 0.08), transparent 40%);
    opacity: 0; transition: opacity 0.3s; pointer-events: none; z-index: 0;
}
.pricing-grid:hover .pricing-card::before { opacity: 1; }

/* Elementy wewnątrz karty */
.pc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; position: relative; z-index: 1; }
.pc-icon-box {
    width: 56px; height: 56px; background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.pc-icon-img { width: 32px; height: 32px; object-fit: contain; }
.pc-info h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin: 0; }
.pc-info p { color: var(--text-secondary); font-size: 0.85rem; margin-top: 4px; }
.pc-price-box { margin-bottom: 24px; position: relative; z-index: 1; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pc-price-val { font-size: 1.8rem; font-weight: 700; color: #fff; font-family: 'Space Grotesk'; }
.pc-price-period { font-size: 0.9rem; color: var(--text-muted); }
.pc-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; position: relative; z-index: 1; flex-grow: 1; }
.pc-tag {
    font-size: 0.75rem; font-weight: 600; padding: 6px 12px; border-radius: 6px;
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary); display: flex; align-items: center; gap: 6px;
}
.pc-tag svg { width: 14px; height: 14px; opacity: 0.7; }
.btn-card-action {
    width: 100%; padding: 14px; background: var(--brand-gradient); color: #fff; font-weight: 700;
    text-align: center; text-decoration: none; border-radius: 12px; position: relative; z-index: 1;
    overflow: hidden; transition: transform 0.2s; box-shadow: 0 4px 15px rgba(34, 211, 238, 0.2);
}
.btn-card-action:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(34, 211, 238, 0.35); }

/* Banner Dolny (Migracja) */
.bottom-banner {
    position: relative; overflow: hidden; border-radius: 24px; background: #050508;
    border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between;
    padding: 50px 60px; min-height: 300px;
}
.bb-bg { position: absolute; inset: 0; background-image: url('https://cdn.modrinth.com/data/UaS8ROxa/images/cbdcb5c6e5fc7d520f01f5f95d2e6734e86a1dd9.png'); background-size: cover; background-position: center; opacity: 0.4; }
.bb-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, #050508 0%, rgba(5,5,8,0.9) 50%, rgba(34, 211, 238, 0.1) 100%); }
.bb-content { position: relative; z-index: 2; max-width: 500px; }
.bb-badge {
    display: inline-block; padding: 6px 12px; background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3); color: var(--brand-cyan); border-radius: 20px;
    font-size: 0.75rem; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px;
}
.bb-title { font-family: 'Space Grotesk'; font-size: 2.2rem; color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 15px; }
.bb-desc { color: var(--text-secondary); margin-bottom: 30px; line-height: 1.6; }
.btn-bb {
    padding: 14px 32px; background: var(--brand-gradient); color: #fff; font-weight: 700; border-radius: 12px;
    text-decoration: none; display: inline-flex; transition: transform 0.2s; box-shadow: 0 4px 20px rgba(34, 211, 238, 0.25);
}
.btn-bb:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(34, 211, 238, 0.4); }
.bb-visual { position: relative; z-index: 2; }
.bb-render { width: 400px; transform: rotate(-3deg) translateY(20px); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); transition: transform 0.3s; }
.bottom-banner:hover .bb-render { transform: rotate(0deg) translateY(0px) scale(1.02); }

/* --- FEATURES (BENTO GRID) --- */
.features { width: 100%; max-width: 1400px; margin: 0 auto; padding: 60px 40px; position: relative; z-index: 5; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 240px); gap: 24px; }
.bento-card {
    background: rgba(15, 17, 21, 0.6); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px;
    padding: 32px 28px; display: flex; flex-direction: column; position: relative; overflow: hidden;
    backdrop-filter: blur(12px); transition: transform 0.3s ease, border-color 0.3s ease;
}
.bento-card:hover { transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.3); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5); }
.bento-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(34, 211, 238, 0.06), transparent 40%);
    opacity: 0; transition: opacity 0.3s; pointer-events: none; z-index: 0;
}
.bento-grid:hover .bento-card::before { opacity: 1; }
.card-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }
.card-icon-lg {
    width: 48px; height: 48px; background: rgba(255,255,255,0.05); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: var(--brand-cyan);
    margin-bottom: 16px; font-size: 1.5rem; border: 1px solid rgba(255,255,255,0.05);
}
.card-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.card-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

/* Spans Bento */
.span-2 { grid-column: span 2; } .span-1 { grid-column: span 1; } .row-2 { grid-row: span 2; }

/* Wizualizacje Bento */
.hardware-row { margin-top: auto; width: 100%; height: 80px; display: flex; align-items: center; justify-content: space-around; background: rgba(0,0,0,0.2); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.hw-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: #fff; filter: drop-shadow(0 0 5px rgba(255,255,255,0.1)); animation: floatHw 3s ease-in-out infinite; }
.hw-icon:nth-child(2) { animation-delay: 0.2s; color: var(--brand-cyan); } .hw-icon:nth-child(3) { animation-delay: 0.4s; color: var(--brand-blue); }
@keyframes floatHw { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.panel-ui { margin-top: auto; width: 100%; height: 80px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; position: relative; overflow: hidden; padding: 10px; display: flex; gap: 10px; }
.p-sidebar { width: 20%; background: rgba(255,255,255,0.05); border-radius: 4px; display: flex; flex-direction: column; gap: 4px; padding: 4px; }
.p-line { height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; width: 100%; }
.p-line.active { background: var(--brand-cyan); width: 50%; }
.p-main { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.p-graph { flex: 1; background: linear-gradient(180deg, rgba(74, 222, 128, 0.1), transparent); border-top: 1px solid #4ade80; border-radius: 4px; }
.status-dot { position: absolute; top: 12px; right: 12px; width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 10px #4ade80; animation: pulseGreen 2s infinite; }
@keyframes pulseGreen { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } 100% { opacity: 1; transform: scale(1); } }

.terminal-box { background: #09090b; padding: 15px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); font-family: 'Courier New', monospace; font-size: 0.75rem; color: #4ade80; margin-top: auto; line-height: 1.6; }
.typing::after { content: '_'; animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }

.interactive-map { width: 100%; flex-grow: 1; min-height: 200px; margin-top: 20px; position: relative; border-radius: 12px; overflow: hidden; background: rgba(0,0,0,0.2); }
.map-bg-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.5; background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Simple_world_map.svg/2560px-Simple_world_map.svg.png'); background-size: 450%; background-position: 53% 22%; filter: invert(1); mask-image: radial-gradient(circle, black 40%, transparent 100%); -webkit-mask-image: radial-gradient(circle, black 40%, transparent 100%); }
.map-point { position: absolute; width: 14px; height: 14px; background: var(--brand-cyan); border-radius: 50%; z-index: 10; box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2); }
.map-point::after { content: ''; position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; border-radius: 50%; background: inherit; transform: translate(-50%, -50%); z-index: -1; animation: pointPulse 2s infinite; }
@keyframes pointPulse { 0% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(3); } }

/* --- SEKCJA PANEL SHOWCASE --- */
.panel-showcase-section { width: 100%; max-width: 1400px; margin: 0 auto; padding: 100px 40px; position: relative; z-index: 5; background-color: var(--bg-body); overflow: hidden; }
.panel-showcase-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(circle at center, black 40%, transparent 85%); -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%); z-index: 0; pointer-events: none; }
.panel-sc-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.psc-content { display: flex; flex-direction: column; gap: 30px; }
.psc-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--brand-cyan); display: flex; align-items: center; gap: 10px; }
.psc-label::before { content: ''; width: 20px; height: 2px; background: var(--brand-cyan); }
.psc-title { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1.1; }
.psc-title span { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.psc-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }
.panel-tabs { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.panel-tab-btn { display: flex; align-items: center; gap: 15px; padding: 18px 24px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; color: var(--text-muted); font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-align: left; position: relative; overflow: hidden; }
.panel-tab-btn svg { width: 24px; height: 24px; stroke-width: 2; transition: color 0.3s; }
.panel-tab-btn:hover { background: rgba(255, 255, 255, 0.06); color: #fff; transform: translateX(5px); }
.panel-tab-btn.active { background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(59, 130, 246, 0.15)); border-color: var(--brand-cyan); color: #fff; box-shadow: 0 0 20px rgba(34, 211, 238, 0.2); }
.panel-tab-btn.active svg { color: var(--brand-cyan); }
.panel-tab-btn.active::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--brand-cyan); box-shadow: 0 0 10px var(--brand-cyan); }
.psc-visual { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.laptop-mockup { width: 100%; max-width: 700px; aspect-ratio: 16/10; background: #0a0a0f; border-radius: 20px; padding: 12px 12px 30px 12px; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 100px rgba(34, 211, 238, 0.1); position: relative; transform: rotateX(5deg) rotateY(-5deg); transition: transform 0.5s ease; animation: floatLaptop 6s ease-in-out infinite; }
.psc-visual:hover .laptop-mockup { transform: rotateX(0deg) rotateY(0deg) scale(1.02); }
.laptop-screen { width: 100%; height: 100%; background: #000; border-radius: 8px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.laptop-screen::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%); pointer-events: none; z-index: 10; }
.panel-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left; opacity: 0; visibility: hidden; transform: translateY(20px) scale(1.05); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.panel-img.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
@keyframes floatLaptop { 0%, 100% { transform: rotateX(5deg) rotateY(-5deg) translateY(0); } 50% { transform: rotateX(5deg) rotateY(-5deg) translateY(-15px); } }

/* --- FAQ --- */
.faq-section { width: 100%; max-width: 1000px; margin: 0 auto; padding: 20px 20px 40px 20px; position: relative; z-index: 4; }
.faq-container { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: rgba(15, 17, 21, 0.6); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; overflow: hidden; transition: all 0.3s ease; backdrop-filter: blur(12px); }
.faq-item:hover { border-color: rgba(34, 211, 238, 0.3); background: rgba(20, 22, 28, 0.7); }
.faq-item.active { border-color: var(--brand-cyan); background: rgba(15, 17, 21, 0.9); box-shadow: 0 10px 40px -10px rgba(34, 211, 238, 0.15); }
.faq-question { padding: 24px 30px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; text-align: left; font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; transition: color 0.3s; line-height: 1.2; margin: 0; }
.faq-item.active .faq-question { color: var(--brand-cyan); }
.faq-icon { width: 24px; height: 24px; color: var(--text-secondary); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s; flex-shrink: 0; display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg) scale(1.1); color: var(--brand-cyan); }
.faq-answer-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease-out; }
.faq-item.active .faq-answer-wrapper { grid-template-rows: 1fr; }
.faq-answer-content { min-height: 0; padding: 0 30px 24px 30px; overflow: hidden; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; opacity: 0; transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s; visibility: hidden; }
.faq-item.active .faq-answer-content { opacity: 1; transform: translateY(0); visibility: visible; transition-delay: 0s; }

/* --- SEKCJA O NAS (HOLOGRAPHIC CORE) --- */
.about-section { width: 100%; max-width: 1400px; margin: 0 auto; padding: 80px 40px; position: relative; z-index: 4; }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ab-content { padding-right: 20px; }
.ab-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--brand-cyan); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.ab-label::before { content: ''; width: 30px; height: 1px; background: var(--brand-cyan); }
.ab-title { font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 24px; }
.ab-title span { background: linear-gradient(90deg, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ab-text { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px; }
.ab-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ab-feat-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 20px; border-radius: 16px; transition: transform 0.3s; }
.ab-feat-card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.05); }
.ab-feat-icon { color: var(--brand-cyan); margin-bottom: 10px; }
.ab-feat-title { font-weight: 700; color: #fff; margin-bottom: 5px; font-size: 1rem; }
.ab-feat-desc { font-size: 0.85rem; color: var(--text-muted); }
.ab-visual { position: relative; display: flex; justify-content: center; align-items: center; height: 400px; }
.net-globe-container { width: 300px; height: 300px; position: relative; perspective: 1000px; }
.net-globe { width: 100%; height: 100%; border-radius: 50%; background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Simple_world_map.svg/2560px-Simple_world_map.svg.png'); background-size: 200% 100%; background-position: 0 0; filter: invert(1) sepia(1) hue-rotate(160deg) saturate(2) brightness(0.8) contrast(1.2); opacity: 0.8; box-shadow: inset 0 0 50px rgba(0,0,0,0.8), 0 0 30px rgba(34, 211, 238, 0.1); animation: spinMap 30s linear infinite; position: relative; z-index: 2; }
.net-globe::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 60%); box-shadow: inset -10px -10px 40px rgba(0,0,0,0.9); z-index: 3; }
.net-ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1px solid rgba(34, 211, 238, 0.2); transform: translate(-50%, -50%) rotateX(70deg); z-index: 1; }
.nr-1 { width: 400px; height: 400px; border-style: dashed; animation: spinRing 20s linear infinite; }
.nr-2 { width: 500px; height: 500px; border-color: rgba(59, 130, 246, 0.15); animation: spinRing 30s linear infinite reverse; }
.net-point { position: absolute; width: 6px; height: 6px; background: #fff; border-radius: 50%; box-shadow: 0 0 10px #fff, 0 0 20px var(--brand-cyan); z-index: 4; }
.np-1 { top: 35%; left: 40%; animation: floatPoint 4s ease-in-out infinite; }
.np-2 { top: 45%; left: 65%; animation: floatPoint 4s ease-in-out infinite 2s; }
.net-glow { position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); width: 200px; height: 20px; background: rgba(34, 211, 238, 0.3); filter: blur(40px); border-radius: 50%; }
@keyframes spinMap { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } }
@keyframes spinRing { 0% { transform: translate(-50%, -50%) rotateX(70deg) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotateX(70deg) rotate(360deg); } }
@keyframes floatPoint { 0%, 100% { transform: translateY(0); opacity: 0.8; } 50% { transform: translateY(-10px); opacity: 1; } }

/* --- SEKCJA DISCORD --- */
.discord-section { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px 80px 40px; position: relative; z-index: 4; }
.discord-card { position: relative; background: linear-gradient(145deg, #0b0c15, #0f111a); border: 1px solid rgba(88, 101, 242, 0.15); border-radius: 24px; padding: 50px 60px; overflow: hidden; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 20px 50px rgba(0,0,0,0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.discord-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(88, 101, 242, 0.15); border-color: rgba(88, 101, 242, 0.4); }
.discord-bg-logo { position: absolute; right: -50px; bottom: -80px; width: 350px; height: 350px; color: rgba(88, 101, 242, 0.05); transform: rotate(-15deg); pointer-events: none; transition: transform 0.4s ease; }
.discord-card:hover .discord-bg-logo { transform: rotate(0deg) scale(1.1); color: rgba(88, 101, 242, 0.08); }
.dc-content { position: relative; z-index: 2; max-width: 600px; }
.dc-title { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 15px; line-height: 1.1; }
.dc-title span { color: #5865F2; }
.dc-desc { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; margin-bottom: 0; }
.btn-discord-join { display: inline-flex; align-items: center; gap: 12px; padding: 16px 36px; background: #5865F2; color: #fff; font-weight: 700; font-size: 1rem; text-decoration: none; border-radius: 12px; transition: all 0.3s ease; box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3); position: relative; z-index: 2; }
.btn-discord-join:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(88, 101, 242, 0.5); }
.btn-discord-join svg { width: 24px; height: 24px; fill: currentColor; }

/* RESPONSIVE FIX FOR NEW SECTIONS */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .bottom-banner { flex-direction: column; text-align: center; padding: 40px 20px; }
    .bb-visual { margin-right: 0; margin-top: 30px; }
    .bb-render { width: 300px; }
    
    .about-wrapper { grid-template-columns: 1fr; text-align: center; }
    .ab-label { justify-content: center; }
    .ab-content { padding-right: 0; }
    .ab-visual { margin-top: 40px; height: 300px; }
    
    .panel-sc-container { grid-template-columns: 1fr; gap: 40px; }
    .psc-content { text-align: center; }
    .psc-label { justify-content: center; }
    .laptop-mockup { transform: rotateX(0) rotateY(0); animation: none; margin-top: 20px; }
    
    .discord-card { flex-direction: column; text-align: center; gap: 30px; padding: 40px 20px; }
    .discord-bg-logo { right: 50%; transform: translateX(50%); bottom: 20px; width: 200px; height: 200px; opacity: 0.5; }
    .discord-card:hover .discord-bg-logo { transform: translateX(50%) scale(1.1); }
    .btn-discord-join { width: 100%; justify-content: center; }
}

/* --- FIXY DLA PODSTRONY OFERTA.HTML (ZASTĄP OSTATNI BLOK CSS TYM KODEM) --- */

/* --- POPRAWKA ODSTĘPU (OFERTA.HTML) --- */

/* Zwiększamy wysokość pustego elementu pod menu, 
   aby baner miał więcej "oddechu" od góry */
.nav-spacer {
    width: 100%;
    /* Było 120px, zwiększamy do 180px dla lepszego efektu wizualnego */
    height: 180px; 
    display: block;
}

/* Opcjonalnie: poprawki responsywne, żeby na telefonie nie było dziury */
@media (max-width: 768px) {
    .nav-spacer {
        height: 140px;
    }
}

/* 2. Kontener na Banner w ofercie (żeby nie był na cały ekran) */
.offer-header-container {
    width: 100%;
    max-width: 1400px; /* Maksymalna szerokość jak reszta strony */
    margin: 0 auto;
    padding: 0 40px 40px 40px; /* Marginesy boczne i dolny */
    position: relative;
    z-index: 2;
}

/* 3. Stylizacja Bannera w trybie OFERTY (żeby wyglądał jak "Biblioteka gier") */
.promo-hub-banner.offer-mode {
    position: relative;
    width: 100%;
    min-height: 320px; /* Stała, rozsądna wysokość */
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #050508;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); /* Lekki cień pod banerem */
}

/* Resetowanie wielkości tytułu dla tego konkretnego banera */
.promo-hub-banner.offer-mode .ph-title {
    font-size: 2.5rem !important; /* Wymuszamy normalny rozmiar, a nie 5rem z Hero */
    margin-bottom: 16px;
    text-shadow: none;
    line-height: 1.1;
    font-weight: 700;
}

.promo-hub-banner.offer-mode .ph-desc {
    font-size: 1rem;
    max-width: 500px;
    margin: 0;
    text-align: left;
    color: rgba(255,255,255,0.8);
}

.promo-hub-banner.offer-mode .ph-content {
    text-align: left; /* Wymuszamy wyrównanie do lewej */
    max-width: 600px;
}

/* Tło i overlay wewnątrz banera */
.promo-hub-banner.offer-mode .ph-bg-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0.5; z-index: 0;
}
.promo-hub-banner.offer-mode .ph-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, 
        rgba(5, 5, 8, 1) 0%, 
        rgba(5, 5, 8, 0.9) 45%, 
        rgba(34, 211, 238, 0.1) 100%
    );
    z-index: 1;
}

/* Obrazek po prawej stronie */
.promo-hub-banner.offer-mode .ph-visual {
    position: relative; z-index: 2;
    display: flex; align-items: flex-end; height: 100%;
}
.promo-hub-banner.offer-mode .ph-render {
    width: 380px; height: auto;
    transform: rotate(-3deg) translateY(20px);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: transform 0.4s ease;
}
.promo-hub-banner.offer-mode:hover .ph-render {
    transform: rotate(0deg) translateY(0px) scale(1.02);
}


/* --- SIATKA GIER (6 KART) --- */
.games-hub-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 40px 80px 40px;
    position: relative;
    z-index: 5;
}

.games-grid {
    display: grid;
    /* Automatyczne kolumny: min. 340px szerokości */
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* KARTA GRY (Wygląd Hub) */
.game-hub-card {
    background: rgba(15, 17, 21, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 440px; /* Ustalona wysokość, żeby były równe */
}

/* Karta Bestseller */
.game-hub-card.popular {
    border-color: rgba(34, 211, 238, 0.4);
    background: rgba(15, 17, 21, 0.85);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.05);
}
.card-badge {
    position: absolute; top: 15px; right: 15px;
    background: var(--brand-gradient); color: #fff;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px; z-index: 3;
    box-shadow: 0 4px 10px rgba(34, 211, 238, 0.3);
}

/* Hover karty */
.game-hub-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
}

/* Ikona w karcie */
.gh-icon {
    width: 64px; height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px auto;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.gh-icon img, .gh-icon svg { width: 36px; height: 36px; object-fit: contain; }

.gh-title {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem;
    color: #fff; margin-bottom: 5px; font-weight: 700;
}

.gh-price {
    font-size: 1rem; color: var(--text-secondary); margin-bottom: 20px;
}
.gh-price .highlight {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem;
    font-weight: 700; color: #fff;
}

/* Lista funkcji */
.gh-features {
    list-style: none; margin-bottom: 25px; text-align: left;
    background: rgba(0,0,0,0.2); padding: 15px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05); width: 100%; flex-grow: 1;
}
.gh-features li {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
    color: #e2e8f0; font-size: 0.85rem; font-weight: 500;
}
.gh-features li:last-child { margin-bottom: 0; }
.gh-features li svg { color: var(--brand-cyan); width: 16px; height: 16px; flex-shrink: 0; }

/* Responsywność dodatków */
@media (max-width: 1024px) {
    .promo-hub-banner.offer-mode { flex-direction: column; text-align: center; padding: 40px 20px; }
    .promo-hub-banner.offer-mode .ph-content { max-width: 100%; text-align: center; margin-bottom: 30px; }
    .promo-hub-banner.offer-mode .ph-overlay { background: linear-gradient(180deg, rgba(5,5,8,1) 0%, rgba(5,5,8,0.8) 100%); }
    .promo-hub-banner.offer-mode .ph-render { width: 300px; transform: none; }
}

@media (max-width: 768px) {
    .offer-header-container { padding: 0 20px 20px 20px; }
    .games-hub-section { padding: 20px 20px 60px 20px; }
    .games-grid { grid-template-columns: 1fr; }
}

/* --- ANIMACJE SCROLLOWANIA --- */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(40px); /* Przesunięcie w dół na start */
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Opcjonalnie: opóźnienia dla kart, żeby wjeżdżały jedna po drugiej */
.games-grid .fade-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.games-grid .fade-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.games-grid .fade-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.games-grid .fade-on-scroll:nth-child(4) { transition-delay: 0.1s; }
.games-grid .fade-on-scroll:nth-child(5) { transition-delay: 0.2s; }
.games-grid .fade-on-scroll:nth-child(6) { transition-delay: 0.3s; }

/* --- PRELOADER STYLES --- */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050508; /* Taki sam jak tło strony */
    z-index: 99999; /* Musi być na samym wierzchu */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Ukrywanie loadera */
body.loaded #page-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo w środku */
.loader-logo {
    width: 50px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: pulseLogo 2s infinite ease-in-out;
}

/* Obracający się pierścień */
.loader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--brand-cyan);
    border-right-color: var(--brand-blue);
    animation: spinLoader 1.5s linear infinite;
    z-index: 1;
}

/* Dodatkowy cień/glow dla pierścienia */
.loader-circle::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(34, 211, 238, 0.5);
    border-right-color: rgba(59, 130, 246, 0.5);
    filter: blur(10px);
}

@keyframes spinLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLogo {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}