
        :root {
            --purple: #6a0dad;
            --purple-glow: #8a2be2;
            --purple-light: #e0b0ff;
            --purple-dark: #4b087a;
            --yellow: #ffd000;
            --yellow-glow: #ffea00;
            --bg-dark: #0f0f16;
            --bg-card: rgba(20, 20, 30, 0.7);
            --text-main: #ffffff;
            --text-muted: #b0b0c0;
            --glass-border: rgba(255, 255, 255, 0.08);
            --nav-height: 70px; 
        }

        * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }

        img { 
            max-width: 100%; 
            height: auto; 
            display: block; 
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-main);
            overflow-x: hidden;
            background-color: var(--bg-dark);
            background-image:
                linear-gradient(135deg, rgba(106, 13, 173, 0.2) 0%, rgba(0, 0, 0, 0) 50%),
                radial-gradient(circle at 20% 30%, rgba(106, 13, 173, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 208, 0, 0.1) 0%, transparent 40%);
            background-attachment: fixed;
        }

        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--bg-dark); }
        ::-webkit-scrollbar-thumb { background: linear-gradient(var(--purple), var(--purple-dark)); border-radius: 5px; }

        .fade-in-up { 
            opacity: 0; 
            transform: translateY(30px); 
            transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
            will-change: opacity, transform;
        }

        .fade-in-up.visible { 
            opacity: 1; 
            transform: translateY(0); 
        }

        #introOverlay { display: none !important; }

        nav {
            height: var(--nav-height);
            padding: 0 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: fixed;
            top: 0; 
            left: 0; 
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(15, 15, 22, 0.8);
            border-bottom: 1px solid var(--glass-border);
            transition: 0.3s;
            transform: translateY(-100%);
            animation: navSlideDown 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 2s;
        }

        @keyframes navSlideDown { 
            to { transform: translateY(0); } 
        }

        .logo { 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            height: var(--nav-height); 
            position: relative; 
            overflow: visible; 
        }

        .nav-logo-img { 
            height: 50px; 
            width: auto; 
            position: relative; 
            filter: drop-shadow(0 0 5px rgba(106, 13, 173, 0.5)); 
            transition: transform 0.3s ease, filter 0.3s ease; 
            z-index: 1100; 
            pointer-events: none; 
        }

        .nav-logo-img:hover { 
            transform: scale(1.05); 
            filter: drop-shadow(0 0 10px rgba(106, 13, 173, 0.8)); 
        }

        .nav-right-section { 
            display: flex; 
            align-items: center; 
            flex: 1;
        }

        .nav-links { 
            display: flex; 
            gap: 40px; 
            list-style: none;
            margin: 0 auto; 
            padding: 0;
        }

        .nav-links a { 
            text-decoration: none; 
            color: var(--text-muted); 
            font-weight: 600; 
            font-size: 14px; 
            text-transform: uppercase; 
            transition: 0.3s; 
            position: relative; 
        }

        .nav-links a::after { 
            content: ''; 
            position: absolute; 
            bottom: -5px; 
            left: 0; 
            width: 0%; 
            height: 2px; 
            background: var(--yellow); 
            transition: 0.3s; 
        }

        .nav-links a:hover { color: var(--yellow); }
        .nav-links a:hover::after { width: 100%; }

        .nav-buttons { 
            display: flex; 
            gap: 10px; 
            align-items: center; 
        }

        .cta-btn {
            text-decoration: none; 
            padding: 12px 30px; 
            background: linear-gradient(90deg, var(--purple), var(--purple-glow));
            color: white; 
            font-weight: 700; 
            border: none; 
            border-radius: 4px; 
            cursor: pointer; 
            text-transform: uppercase; 
            letter-spacing: 1px;
            clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); 
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-btn:hover { 
            transform: scale(1.05); 
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.5); 
        }

        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-main);
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .hero { 
            height: 100vh; 
            width: 100%; 
            position: relative; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            overflow: hidden; 
            perspective: 1500px; 
        }

        .hero-content { 
            position: relative; 
            z-index: 10; 
            text-align: center; 
            max-width: 1400px; 
            width: 80%; 
            transform-style: preserve-3d; 
        }

        .title-stack { 
            position: relative; 
            height: 400px; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            margin-bottom: 10px; 
            transform-style: preserve-3d; 
        }

        .layer { 
            font-family: 'Montserrat', sans-serif; 
            font-weight: 900; 
            text-transform: uppercase; 
            position: absolute; 
            line-height: 1; 
            white-space: nowrap; 
            pointer-events: none; 
        }

        .layer-front { 
            font-size: 10rem; 
            z-index: 3; 
            color: var(--purple); 
            text-shadow: 0 10px 30px rgba(0,0,0,0.5); 
            transform: translateZ(50px); 
            opacity: 0; 
            will-change: transform, opacity, letter-spacing, color; 
        }

        .hero-content.animate-start .layer-front { 
            animation: cinematicSmash 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s; 
        }

        .layer-back { 
            font-size: 10.5rem; 
            color: transparent; 
            -webkit-text-stroke: 2px rgba(106, 13, 173, 0.7); 
            z-index: 1; 
            opacity: 0; 
        }

        .layer-back.top { transform: translateY(-500px) translateZ(-50px); }
        .hero-content.animate-start .layer-back.top { animation: dropFromTop 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.6s; }
        .layer-back.bottom { transform: translateY(500px) translateZ(-50px); }
        .hero-content.animate-start .layer-back.bottom { animation: riseFromBottom 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.6s; }

        @keyframes cinematicSmash {
            0% { opacity: 0; transform: translateZ(300px) scale(1.5); letter-spacing: 40px; color: var(--purple-light); text-shadow: 0 0 60px var(--purple-glow); }
            50% { opacity: 1; color: var(--purple-glow); }
            100% { opacity: 1; transform: translateZ(50px) scale(1); letter-spacing: 0px; color: var(--purple); text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        }

        @keyframes dropFromTop { 
            0% { opacity: 0; transform: translateY(-400px) translateZ(-50px); } 
            100% { opacity: 0.5; transform: translateY(-80px) translateZ(-20px); } 
        }

        @keyframes riseFromBottom { 
            0% { opacity: 0; transform: translateY(400px) translateZ(-50px); } 
            100% { opacity: 0.5; transform: translateY(80px) translateZ(-20px); } 
        }

        .hero-subtitle { 
            font-size: 1.5rem; 
            color: var(--text-muted); 
            margin-bottom: 40px; 
            letter-spacing: 3px; 
            text-transform: uppercase; 
            transform: translateZ(80px); 
            text-shadow: 0 5px 10px rgba(0,0,0,0.8); 
            opacity: 0; 
        }

        .hero-content.animate-start .hero-subtitle { animation: fadeUp 1s ease-out forwards 1.4s; }

        .hero-buttons-container { 
            display: flex; 
            gap: 20px; 
            justify-content: center; 
            transform: translateZ(100px); 
            opacity: 0; 
        }

        .hero-content.animate-start .hero-buttons-container { animation: fadeUpButtons 1s ease-out forwards 1.6s; }

        @keyframes fadeUp { 
            from { opacity: 0; transform: translateY(20px) translateZ(80px); } 
            to { opacity: 1; transform: translateY(0) translateZ(80px); } 
        }

        @keyframes fadeUpButtons { 
            from { opacity: 0; transform: translateY(20px) translateZ(100px); } 
            to { opacity: 1; transform: translateY(0) translateZ(100px); } 
        }

        .about-setup-wrapper { position: relative; z-index: 1; }

        .showcase { 
            position: sticky; 
            top: var(--nav-height); 
            height: calc(100vh - var(--nav-height)); 
            padding: 0 5%; 
            background: var(--bg-dark); 
            z-index: 1; 
            display: flex; 
            align-items: center; 
            overflow: hidden; 
        }

        .skew-bg { 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            background: linear-gradient(135deg, rgba(106, 13, 173, 0.05) 0%, transparent 100%); 
            transform: skewY(-3deg); 
            z-index: 0; 
            pointer-events: none; 
        }

        .showcase-container { 
            width: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            gap: 50px; 
            position: relative; 
            z-index: 2; 
            flex-wrap: wrap; 
        }

        .showcase-text { flex: 1; min-width: 300px; }
        .section-tag { color: var(--yellow); font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; display: block; font-size: 0.9rem; }
        .section-title { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
        .showcase-visual { flex: 1; min-width: 300px; height: 500px; perspective: 1000px; display: flex; justify-content: center; align-items: center; }

        .card-3d { 
            width: 350px; 
            height: 480px; 
            background: var(--bg-card); 
            border: 1px solid var(--glass-border); 
            border-radius: 20px; 
            position: relative; 
            transform-style: preserve-3d; 
            transition: transform 0.1s ease-out; 
            box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
        }

        .card-3d-inner { 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            border-radius: 20px; 
            overflow: hidden; 
            display: flex; 
            flex-direction: column; 
        }

        .card-image { height: 70%; width: 100%; background: url('./public/icons/santos.jpg') center/cover; position: relative; }
        .card-content { height: 30%; padding: 20px; background: rgba(10, 10, 15, 0.9); border-top: 1px solid var(--purple); transform: translateZ(30px); }
        .floating-badge { position: absolute; top: 20px; right: 20px; background: var(--yellow); color: black; padding: 5px 15px; font-weight: 800; transform: translateZ(50px); border-radius: 4px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

        .about-scroll-wrapper { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 10; opacity: 1; transition: opacity 0.4s; }
        .scroll-text { font-size: 0.75rem; color: #888; letter-spacing: 3px; font-weight: 600; }
        .about-scroll-indicator { width: 150px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
        .about-scroll-progress { width: 0%; height: 100%; background: var(--yellow); transition: width 0.1s ease-out; }

        .setup-gta-fullscreen { position: relative; background-color: transparent; padding-bottom: 0; margin-top: calc(-100vh + var(--nav-height)); z-index: 5; pointer-events: none; transform: translateZ(0); }
        .setup-scroll-container { height: 300vh; position: relative; }
        .setup-sticky-wrap { position: sticky; top: var(--nav-height); height: calc(100vh - var(--nav-height)); width: 100%; overflow: hidden; background: transparent; pointer-events: none; transform: translateZ(0); }
        .gta-video-bg { isolation: isolate; position: absolute; width: 100%; height: 100%; background: #000; opacity: 0; transition: opacity 0.1s ease-out; pointer-events: none; display: flex; justify-content: center; align-items: center; transform: translateZ(0); }
        #setupCanvas { aspect-ratio: 16 / 9; width: 100%; height: 100%; max-width: 100vw; max-height: 100vh; object-fit: cover; will-change: opacity; transform: translateZ(0); backface-visibility: hidden; filter: none !important; pointer-events: none; }
        .gta-video-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,15,22,0.95) 0%, rgba(15,15,22,0.85) 35%, rgba(15,15,22,0) 80%), linear-gradient(180deg, rgba(15,15,22,0) 80%, var(--bg-dark) 100%); z-index: 2; pointer-events: none; }
        .gta-content-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; display: flex; justify-content: flex-start; align-items: center; padding-left: 8%; pointer-events: none; }
        .gta-content-inner { width: 45%; min-width: 400px; max-width: 600px; pointer-events: auto; }
        .setup-header-wrap { margin-bottom: 40px; opacity: 0; transform: translateY(80px); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform, opacity; }
        .setup-header-wrap.is-visible { opacity: 1; transform: translateY(0); }
        .setup-header-wrap .section-tag { font-size: 1.1rem; letter-spacing: 3px; color: var(--yellow); font-weight: 700; margin-bottom: 10px; display: block; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
        .setup-header-wrap .section-title { font-size: 4.5rem; font-family: 'Montserrat', sans-serif; font-weight: 900; line-height: 1.1; color: white; text-shadow: 0 4px 15px rgba(0,0,0,0.9); }
        .setup-boxes-container { display: flex; flex-direction: column; gap: 20px; }
        .setup-box-wrapper { opacity: 0; transform: translateY(60px); transition: opacity 0.6s ease-out, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); will-change: transform, opacity; }
        .setup-box-wrapper.is-visible { opacity: 1; transform: translateY(0); }
        .glass-prime { display: flex; align-items: center; gap: 25px; background: rgba(15, 15, 20, 0.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.03); border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 25px 30px; border-radius: 12px; transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1); box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.02); will-change: background-color, border-color; }
        .setup-box-wrapper.is-visible .glass-prime { background: rgba(20, 15, 30, 0.8); border-left: 3px solid var(--purple); }
        .step-number { font-family: 'Montserrat'; font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; transition: 0.6s ease-out; }
        .setup-box-wrapper.is-visible .step-number { color: rgba(106, 13, 173, 0.4); text-shadow: 0 0 20px rgba(106, 13, 173, 0.2); }
        .prime-text h3 { font-size: 1.4rem; color: white; margin-bottom: 5px; font-weight: 700; }
        .prime-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

        .features-section { 
            padding: 150px 0 100px 0; 
            position: relative; 
            margin-top: -100px; 
            z-index: 20; 
            clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
            background-color: var(--bg-dark); 
            background-image: linear-gradient(135deg, rgba(106, 13, 173, 0.2) 0%, rgba(0, 0, 0, 0) 50%), radial-gradient(circle at 20% 30%, rgba(106, 13, 173, 0.15) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 208, 0, 0.1) 0%, transparent 40%); 
        }
        .grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .feature-box { background: linear-gradient(160deg, rgba(30,30,40,0.6), rgba(10,10,15,0.8)); border: 1px solid var(--glass-border); padding: 40px; position: relative; overflow: hidden; transition: 0.4s; clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%); }
        .feature-box:hover { transform: translateY(-10px); background: linear-gradient(160deg, rgba(40,40,60,0.6), rgba(106, 13, 173, 0.1)); }
        .feature-box::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--yellow); transition: 0.4s; }
        .feature-box:hover::before { height: 100%; }
        .f-icon { font-size: 3rem; color: var(--purple); margin-bottom: 20px; transition: 0.4s; }
        .feature-box:hover .f-icon { color: var(--yellow); transform: scale(1.1) rotate(5deg); }
        .feature-box h3, .feature-box p, .feature-box i { position: relative; z-index: 1; }
        .feature-box h3 { font-size: 1.5rem; margin-bottom: 10px; color: white; }
        .feature-box p { color: var(--text-muted); line-height: 1.6; font-size: 0.9rem; }

        .about-header { padding: 180px 0 60px 0; text-align: center; background: linear-gradient(180deg, rgba(106, 13, 173, 0.1) 0%, transparent 100%); }
        .about-container { max-width: 1400px; margin: 0 auto; padding: 0 40px 100px 40px; position: relative; z-index: 10; }

        .intro-slider-container { max-width: 800px; margin: 0 auto 80px auto; text-align: center; }
        .slider-indicators { display: flex; justify-content: center; gap: 10px; margin-bottom: 25px; }
        .slider-indicator { width: 40px; height: 4px; background: rgba(255, 255, 255, 0.15); border-radius: 2px; transition: 0.3s; }
        .slider-indicator.active { background: var(--purple); box-shadow: 0 0 10px rgba(106, 13, 173, 0.5); }
        .slider-content-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
        .slider-arrow { background: transparent; border: none; color: rgba(255, 255, 255, 0.4); font-size: 1.5rem; cursor: pointer; transition: 0.3s; padding: 10px; }
        .slider-arrow:hover { color: var(--yellow); }
        .about-intro-text { color: var(--text-muted); font-size: 1.15rem; line-height: 1.8; font-weight: 300; flex: 1; min-height: 80px; }

        .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
        .gallery-item { background: rgba(15, 15, 20, 0.6); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 20px; transition: border-color 0.3s, box-shadow 0.3s; }
        .gallery-item:hover { border-color: rgba(106, 13, 173, 0.5); box-shadow: 0 10px 30px rgba(106, 13, 173, 0.15); }
        .gallery-img-wrapper { width: 100%; aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; cursor: pointer; position: relative; }
        .gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; pointer-events: none; user-select: none; }
        .gallery-img-wrapper::after { content: '\f065'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.5); color: white; font-size: 2.5rem; opacity: 0; transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1); text-shadow: 0 5px 15px rgba(0,0,0,0.8); pointer-events: none; z-index: 5; }
        .gallery-img-wrapper:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        .gallery-img-wrapper:hover img { transform: scale(1.03); }

        .gallery-text h3 { color: white; font-family: 'Montserrat', sans-serif; font-size: 1.4rem; margin-bottom: 5px; letter-spacing: 1px; }
        .gallery-text p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }

        .lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 3000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.4s ease; }
        .lightbox.active { opacity: 1; visibility: visible; }
        .lightbox img { max-width: 85%; max-height: 85vh; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.8); transform: scale(0.9); transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); object-fit: contain; user-select: none; }
        .lightbox.active img { transform: scale(1); }
        .lightbox-close { position: absolute; top: 40px; right: 50px; color: rgba(255,255,255,0.5); font-size: 2.5rem; cursor: pointer; transition: color 0.3s; z-index: 3100; }
        .lightbox-close:hover { color: var(--yellow); }

        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.4s; }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .auth-box { width: 900px; height: 550px; background: #0f0f13; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; position: relative; transform: scale(0.95); transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.8); display: flex; }
        .modal-overlay.active .auth-box { transform: scale(1); }
        .auth-box.expanded { width: 1100px; }
        .close-modal { position: absolute; top: 20px; right: 20px; color: #888; cursor: pointer; font-size: 1.2rem; z-index: 50; transition: 0.3s; }
        .close-modal:hover { color: var(--yellow); }
        .login-visual-side { width: 45%; height: 100%; position: relative; flex-shrink: 0; background: url('/public/icons/connect.png') center/cover; }
        .login-visual-side::after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(135deg, rgba(106, 13, 173, 0.6), rgba(0,0,0,0.8)); }
        .form-container-side { width: 55%; background: #0f0f13; position: relative; overflow: hidden; }
        .slide-form { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out; opacity: 0; pointer-events: none; background: #0f0f13; display: flex; flex-direction: column; justify-content: center; padding: 50px; }
        .slide-form.active { opacity: 1; pointer-events: auto; transform: translateX(0); z-index: 5; }
        #loginFormSection:not(.active) { transform: translateX(-50px); }
        #recoverFormSection:not(.active) { transform: translateX(50px); }
        .login-header-group { margin-bottom: 30px; }
        .login-header-group h2 { font-family: 'Montserrat'; color: white; font-size: 1.8rem; margin-bottom: 5px; }
        .login-header-group p { color: #666; font-size: 0.9rem; }
        .input-group { margin-bottom: 20px; }
        .input-label { display: block; color: #bbb; font-size: 0.85rem; margin-bottom: 8px; font-weight: 600; }
        .custom-input { width: 100%; padding: 14px; background: #16161c; border: 1px solid #2a2a35; border-radius: 8px; color: white; font-family: 'Poppins'; outline: none; transition: 0.3s; }
        .custom-input:focus { border-color: var(--purple); background: #1a1a22; }
        .auth-btn { width: 100%; padding: 14px; background: linear-gradient(90deg, var(--purple), #8a2be2); color: white; border: none; font-weight: 700; font-size: 1rem; border-radius: 8px; cursor: pointer; transition: 0.3s; box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3); }
        .auth-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(106, 13, 173, 0.5); }
        .forgot-pass-link { display: block; text-align: right; color: #666; font-size: 0.8rem; text-decoration: none; margin-top: -10px; margin-bottom: 25px; transition:0.3s; }
        .forgot-pass-link:hover { color: white; }
        .msg-box { padding: 12px; border-radius: 6px; font-size: 0.85rem; margin-top: 10px; display: flex; align-items: center; gap: 8px; }
        .msg-box.error { background: rgba(231, 76, 60, 0.1); border: 1px solid rgba(231, 76, 60, 0.3); color: #ff6b6b; }
        .msg-box.success { background: rgba(46, 204, 113, 0.1); border: 1px solid rgba(46, 204, 113, 0.3); color: #2ecc71; }

        #dashboardSection { display: none; width: 100%; height: 100%; }
        .dashboard-container { padding: 30px; display: flex; flex-direction: column; gap: 20px; height: 100%; width: 100%; overflow-y: auto; }
        .dash-header-card { background: #16161c; border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap:15px; }
        .user-profile-group { display: flex; align-items: center; gap: 15px; }
        .avatar-box { width: 60px; height: 60px; flex-shrink:0; background: linear-gradient(135deg, var(--purple-dark), #222); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; border: 1px solid rgba(255,255,255,0.1); }
        .dash-header-actions { display: flex; gap: 10px; flex-wrap:wrap; }
        .dash-action-btn { text-decoration:none; font-weight:600; padding:8px 15px; border-radius:20px; font-size:0.85rem; transition:0.3s; display:inline-flex; align-items:center; gap:5px; white-space:nowrap; }
        .store-btn { background:var(--yellow); color:#111; border:1px solid var(--yellow); }
        .store-btn:hover { box-shadow: 0 0 10px rgba(255, 208, 0, 0.4); }
        .logout-btn { background:transparent; border:1px solid #e74c3c; color:#e74c3c; }
        .logout-btn:hover { background: rgba(231, 76, 60, 0.1); }
        .dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 15px; padding-bottom: 20px; }
        .dash-card { background: #16161c; border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 15px; display: flex; flex-direction: column; gap: 8px; }
        .empty-card { grid-column: 1 / -1; align-items:center; justify-content:center; text-align:center; padding: 40px; }
        .card-title { font-family: 'Montserrat'; color: white; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
        .card-title i { color: #555; background: #222; padding: 6px; border-radius: 6px; flex-shrink:0; }
        .char-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
        .char-id { font-size:0.75rem; color:#666; font-family:'Poppins'; font-weight:400; flex-shrink:0; }
        .finance-row { display: flex; justify-content: space-between; padding: 10px; background: rgba(255,255,255,0.02); border-radius: 6px; align-items: flex-start; font-size: 0.85rem; }
        .f-label { color:#aaa; flex-shrink: 0; margin-right: 15px; margin-top: 2px; }
        .f-value { font-weight:600; text-align: right; line-height: 1.4; word-wrap: break-word; flex: 1; }
        .text-truncate { white-space: normal; display: block; }

        footer { background: #08080c; padding: 80px 5% 30px 5%; border-top: 1px solid var(--glass-border); position: relative; z-index: 5; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; max-width: 1400px; margin: 0 auto; }
        .footer-column h4 { color: var(--yellow); font-family: 'Montserrat', sans-serif; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; position: relative; }
        .footer-column h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: var(--purple); }
        .footer-column ul { list-style: none; }
        .footer-column ul li { margin-bottom: 12px; }
        .footer-column ul li a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; transition: 0.3s; display: flex; align-items: center; gap: 8px; }
        .footer-column ul li a:hover { color: var(--purple-glow); transform: translateX(5px); }
        .footer-info-item { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }
        .footer-info-item i { color: #ffffff; opacity: 0.9; width: 20px; }
        .logo-footer-img { width: 250px; max-width: 100%; height: auto; display: block; margin-bottom: 20px; }
        .social-links { display: flex; gap: 12px; margin-top: 25px; }
        .social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; clip-path: polygon(15% 0%, 100% 0, 100% 85%, 85% 100%, 0 100%, 0% 15%); transition: 0.3s; border: 1px solid rgba(106, 13, 173, 0.2); }
        .social-links a:hover { background: var(--purple); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3); }
        .copyright { margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; color: #555; font-size: 0.8rem; max-width: 1400px; margin-left: auto; margin-right: auto; }

        .lang-dropdown { position: relative; display: inline-block; z-index: 1000; }
        .lang-dropdown-btn { display: flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 8px 15px; border-radius: 8px; cursor: pointer; transition: 0.3s; color: white; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600; }
        .lang-dropdown-btn:hover { background: rgba(106, 13, 173, 0.2); border-color: var(--purple); }
        .lang-dropdown-content { position: absolute; top: 110%; right: 0; background: #16161c; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; min-width: 140px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); padding: 5px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; }
        .lang-dropdown:hover .lang-dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
        .lang-dropdown-content a { display: flex !important; align-items: center; gap: 10px; padding: 10px 15px !important; color: #bbb !important; text-decoration: none !important; font-family: 'Poppins', sans-serif !important; font-size: 0.85rem !important; transition: 0.3s !important; }
        .lang-dropdown-content a::after { display: none !important; }
        .lang-dropdown-content a:hover { background: rgba(106, 13, 173, 0.15); color: white !important; padding-left: 20px !important; }
        .lang-dropdown-content img, .lang-dropdown-btn img { border-radius: 2px; }

        @media (max-width: 900px) {
            .gallery-grid { grid-template-columns: 1fr; }
            .about-header { padding: 120px 0 40px 0; }
            .about-container { padding: 0 20px 60px 20px; }
            .lightbox img { max-width: 95%; border-radius: 12px; }
            .lightbox-close { top: 20px; right: 20px; font-size: 2rem; }
        }

        /* MOBİL DÜZELTMELER */
        @media (max-width: 768px) {
            :root { --nav-height: 60px; }
            nav { padding: 0 20px; height: var(--nav-height); }
            .nav-logo-img { height: 35px; }
            
            .menu-toggle { display: block; }
            .nav-right-section {
                position: absolute;
                top: var(--nav-height);
                left: 0;
                width: 100%;
                background: rgba(15, 15, 22, 0.95);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                gap: 20px;
                border-bottom: 1px solid var(--glass-border);
                box-shadow: 0 20px 40px rgba(0,0,0,0.5);
                transform: translateY(-150%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
                z-index: 999;
            }
            .nav-right-section.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .nav-links {
                display: flex !important;
                flex-direction: column;
                align-items: center;
                gap: 20px;
                margin: 0 !important;
                padding: 0;
                list-style: none;
            }
            .nav-buttons {
                justify-content: center;
                width: 100%;
            }
            .layer-back.top, .layer-back.bottom { display: none !important; }
            .title-stack { height: auto; min-height: 150px; margin-bottom: 20px; margin-top: 80px; }
            .layer-front { font-size: 2.8rem; transform: translateZ(0) !important; letter-spacing: 1px !important; }
            .hero-subtitle { font-size: 0.95rem; margin-bottom: 30px; padding: 0 20px; line-height: 1.5; }
            .hero-buttons-container { flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; gap: 15px; padding: 0 20px; }
            .cta-btn { width: auto !important; min-width: 130px; padding: 10px 20px; font-size: 0.9rem; display: inline-flex; align-items: center; justify-content: center; }

            .showcase {
                position: sticky;
                height: calc(100vh - var(--nav-height));
                padding-top: 10px;
                flex-direction: column;
                justify-content: center;
                padding-bottom: 10px;
            }
            .showcase-container {
                flex-direction: column;
                padding: 0;
                gap: 15px;
            }
            .showcase-text { margin-bottom: 0; text-align: center; padding: 0 15px; }
            .section-title { font-size: 1.6rem; line-height: 1.2; margin-bottom: 10px; }
            .showcase-text p { font-size: 0.85rem; margin-bottom: 15px; }
            .showcase-text div[style*="display: flex"] { justify-content: center; gap: 30px !important; }
            .showcase-visual { height: auto; padding-bottom: 10px; }
            .card-3d { width: 200px; height: 280px; } 
            
            .about-scroll-wrapper { 
                position: absolute; 
                bottom: 20px; 
                left: 50%; 
                transform: translateX(-50%); 
                margin-top: 0;
                width: max-content;
            }

            .auth-box { width: 95%; max-height: 90vh; flex-direction: column; overflow-y: auto; background: #0f0f13; }
            .auth-box.expanded { width: 95%; max-height: 90vh; }
            .login-visual-side { display: none; }
            .form-container-side { width: 100% !important; display: flex; flex-direction: column; flex: 1; min-height: 400px; }
            .slide-form { position: relative; height: auto; padding: 30px 20px; opacity: 0; display: none; transform: none; }
            .slide-form.active { opacity: 1; display: flex; flex-direction: column; justify-content: center; height: 100%; }

            .gta-content-overlay { justify-content: center; padding: 0 20px; align-items: flex-end; padding-bottom: 40px; padding-left: 20px;}
            .gta-content-inner { width: 100%; min-width: auto; }
            
            .setup-header-wrap {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            .setup-header-wrap .section-tag { text-align: center; }
            .setup-header-wrap .section-title { font-size: 3rem; text-align: center; }
            
            .gta-video-overlay { background: linear-gradient(0deg, rgba(15,15,22,0.95) 0%, rgba(15,15,22,0) 100%); }
            
            #setupCanvas {
                object-position: center center; 
            }

            .glass-prime { padding: 15px; gap: 15px; }
            .step-number { font-size: 2.5rem; }
            .prime-text h3 { font-size: 1.1rem; }

            .features-section {
                padding: 100px 0 50px 0;
                margin-top: -60px;
                clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
                position: relative;
                z-index: 20;
            }
            .grid-container { grid-template-columns: 1fr; padding: 0 15px; }
            .feature-box { padding: 25px; margin-bottom: 10px; }
            .dash-header-card { flex-direction: column; justify-content: center; text-align:center; }
            .dash-header-actions { justify-content: center; width:100%; }
            .user-profile-group { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
            .logo-footer-img { margin: 0 auto 20px auto; width: 160px; }
            .copyright { flex-direction: column; gap: 10px; }
        }


.main-layout-wrapper { display: flex; width: 100%; min-height: 100vh; padding-top: 103px; padding-left: 10%; padding-bottom: 50px; box-sizing: border-box; position: relative; }
.purchase-side { width: 700px; max-width: 95%; z-index: 10; position: relative; }
.store-wrapper { display: flex; flex-direction: column; gap: 15px; width: 100%; margin: 0; padding: 0; }

.premium-card { background: rgba(20, 20, 28, 0.6); border: 1px solid var(--glass-border); border-radius: 16px; padding: 30px; box-shadow: 0 15px 40px rgba(0,0,0,0.6); backdrop-filter: blur(10px); height: fit-content; position: relative; }

.user-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.user-header .user-info { display: flex; flex-direction: row; align-items: center; gap: 12px; }
.user-header .info > span { display: block; }
.user-header .info .name { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-family: 'Montserrat'; font-weight: 800; color: white; }
.user-header .info .server { font-size: 0.75rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.user-header .avatar-icon { width: 45px; height: 45px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; }

.mlc-badge { background: rgba(255, 208, 0, 0.1); border: 1px solid var(--yellow); color: var(--yellow); padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 800; font-family: 'Montserrat'; white-space: nowrap; transition: all 0.3s ease; }

.amount-display-box { background: #0a0a0e; border: 1px solid rgba(255, 208, 0, 0.2); border-radius: 12px; padding: 15px 10px; text-align: center; margin-bottom: 12px; position: relative; }
.amount-display-box .value { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.amount-display-box .currency { font-family: 'Montserrat'; font-size: 1rem; color: var(--yellow); font-weight: 800; }

.manual-amount-input { background: transparent; border: none; border-bottom: 2px dashed rgba(255, 208, 0, 0.5); color: white; font-family: 'Montserrat'; font-size: 2rem; font-weight: 900; width: 170px; text-align: center; outline: none; transition: 0.15s; }
.manual-amount-input:focus { border-bottom-color: var(--yellow); }
.manual-amount-input::-webkit-outer-spin-button, .manual-amount-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.manual-amount-input[type=number] { -moz-appearance: textfield; }

.slider-wrapper { margin-bottom: 12px; } 
.custom-slider { -webkit-appearance: none; width: 100%; height: 6px; background: #222; border-radius: 5px; outline: none; }
.custom-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--yellow); cursor: pointer; transition: 0.15s; }
.custom-slider::-webkit-slider-thumb:hover { background: #ffdf33; }
.slider-labels { position: relative; margin-top: 6px; color: #666; font-size: 0.7rem; height: 15px; }
.slider-labels span:nth-child(1) { position: absolute; left: 0; }
.slider-labels span:nth-child(2) { position: absolute; left: 50%; transform: translateX(-50%); }
.slider-labels span:nth-child(3) { position: absolute; right: 0; }

.quick-amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-bottom: 12px; } 
.btn-amount { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); color: #ccc; padding: 6px 0; border-radius: 8px; cursor: pointer; font-family: 'Poppins'; font-weight: 600; font-size: 0.8rem; transition: 0.15s; }
.btn-amount:hover, .btn-amount.active { background: rgba(106, 13, 173, 0.2); border-color: var(--purple); color: var(--yellow); }

.price-summary { background: #0f0f13; border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 12px; margin-bottom: 15px; }
.price-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; margin-bottom: 6px; color: #aaa; }
.price-row.total { margin-bottom: 0; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.05); color: white; font-size: 0.9rem; font-family: 'Montserrat'; }
.price-row.total .val { color: var(--yellow); font-size: 1.15rem; font-weight: 800; }

.consent-checkbox-wrapper { display: flex; align-items: center; gap: 12px; background: rgba(106, 13, 173, 0.08); border: 1px solid rgba(106, 13, 173, 0.3); padding: 12px 15px; border-radius: 10px; transition: border-color 0.3s; }
.consent-checkbox-wrapper.error { border-color: #ff6b6b; background: rgba(231, 76, 60, 0.05); }
.consent-checkbox-wrapper input[type="checkbox"] { width: 18px !important; height: 18px !important; min-width: 18px; flex-shrink: 0; margin: 0; cursor: pointer; accent-color: var(--yellow); }
.consent-checkbox-wrapper label { font-family: 'Poppins', sans-serif; font-size: 0.8rem; color: #bbb; line-height: 1.5; cursor: pointer; }
.consent-checkbox-wrapper label a { color: var(--yellow); text-decoration: none; font-weight: 600; }
.consent-checkbox-wrapper label a:hover { text-decoration: underline; color: white; }
.consent-checkboxes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }

.sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; width: 100%; }
.info-card { background: rgba(20, 20, 28, 0.5); border: 1px solid var(--glass-border); border-radius: 12px; padding: 15px; backdrop-filter: blur(5px); transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.info-card:hover { border-color: var(--purple); box-shadow: 0 0 15px rgba(106, 13, 173, 0.15); }
.info-card h4 { font-family: 'Montserrat'; font-size: 0.9rem; color: white; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; font-weight: 700; }
.info-card p { font-size: 0.75rem; color: #aaa; line-height: 1.5; margin: 0; font-family: 'Poppins'; }
.info-card p a { color: var(--yellow); text-decoration: none; transition: 0.2s; }
.info-card p a:hover { color: white; text-decoration: underline; }

.character-side { position: fixed; top: 55%; transform: translateY(-50%); right: -25%; height: 80vh; z-index: 1; pointer-events: none; display: flex; align-items: center; justify-content: flex-end; }
.char-image { height: 100%; max-height: 900px; width: auto; object-fit: contain; object-position: right center; filter: drop-shadow(-15px 15px 35px rgba(0,0,0,0.7)); }

.stepper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 35px; position: relative; }
.stepper::before { content: ''; position: absolute; top: 18px; left: 0; width: 100%; height: 3px; background: rgba(255,255,255,0.08); z-index: 1; border-radius: 2px; }
.step-progress { position: absolute; top: 18px; left: 0; width: 0%; height: 3px; background: var(--purple-glow); z-index: 1; transition: width 0.5s ease-in-out; border-radius: 2px; box-shadow: 0 0 10px var(--purple); }
.step-item { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; width: 33%; }
.step-circle { width: 40px; height: 40px; border-radius: 50%; background: #16161c; border: 2px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat'; font-weight: 800; font-size: 1rem; color: #666; transition: 0.4s; }
.step-label { font-size: 0.8rem; color: #666; font-family: 'Montserrat'; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: 0.4s; }
.step-item.active .step-circle { border-color: var(--yellow); background: rgba(255,208,0,0.1); color: var(--yellow); box-shadow: 0 0 15px rgba(255,208,0,0.3); }
.step-item.active .step-label { color: white; }
.step-item.completed .step-circle { border-color: var(--purple); background: var(--purple); color: white; box-shadow: 0 0 15px rgba(106, 13, 173, 0.4); }
.step-item.completed .step-label { color: #aaa; }

.mlc-info-box { background: rgba(106, 13, 173, 0.05); border: 1px solid rgba(106, 13, 173, 0.2); border-radius: 12px; padding: 20px; text-align: left; margin-bottom: 25px; }
.mlc-info-box h4 { color: white; font-family: 'Montserrat'; font-size: 1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.mlc-info-box h4 i { color: var(--yellow); }
.mlc-info-box p { color: #bbb; font-size: 0.85rem; line-height: 1.6; margin-bottom: 8px; font-family: 'Poppins'; }
.mlc-info-box p:last-child { margin-bottom: 0; }
.mlc-info-box strong { color: white; font-weight: 600; }

.step-title { font-family: 'Montserrat'; font-size: 1.2rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 800; color: white; }
.step-title i { color: var(--yellow); }

.btn-change-user { background: transparent; border: none; color: #888; font-size: 0.85rem; cursor: pointer; text-decoration: underline; transition: 0.15s; font-family: 'Poppins'; }
.btn-change-user:hover { color: white; }

.guest-input-group { margin-bottom: 20px; }
.target-input { width: 100%; background: #0c0c10; border: 1px solid #333; color: white; padding: 14px; border-radius: 8px; font-family: 'Poppins'; font-size: 1rem; outline: none; transition: 0.15s; text-align: center; }
.target-input:focus { border-color: var(--yellow); }

.submit-btn { width: 100%; padding: 14px; background: linear-gradient(90deg, var(--purple), var(--purple-glow)); color: white; border: none; font-weight: 700; font-size: 1rem; font-family: 'Montserrat'; cursor: pointer; transition: 0.15s; border-radius: 10px; box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3); display: flex; justify-content: center; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 1px; }
.submit-btn:hover { filter: brightness(1.15); box-shadow: 0 5px 20px rgba(106, 13, 173, 0.5); }

.form-section { display: none; }
.form-section.active { display: block; animation: fadeInForm 0.3s ease-out; }
@keyframes fadeInForm { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.validation-error { background: rgba(231, 76, 60, 0.1); border: 1px solid rgba(231, 76, 60, 0.4); color: #ff6b6b; padding: 12px 15px; border-radius: 8px; font-size: 0.85rem; margin-bottom: 15px; display: none; text-align: center; font-family: 'Poppins', sans-serif; animation: fadeInForm 0.3s ease-out; }

.loading-spinner { font-size: 3.5rem; color: var(--yellow); animation: spin 1s linear infinite; margin-bottom: 20px; filter: drop-shadow(0 0 15px rgba(255,208,0,0.4)); }
@keyframes spin { 100% { transform: rotate(360deg); } }

.custom-confirm-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(5px); z-index: 10000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.custom-confirm-overlay.active { display: flex; opacity: 1; }
.custom-confirm-box { background: #121218; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 30px; width: 420px; max-width: 90%; box-shadow: 0 20px 50px rgba(0,0,0,0.8); transform: translateY(20px); transition: transform 0.3s ease; text-align: center; position: relative; }
.custom-confirm-overlay.active .custom-confirm-box { transform: translateY(0); }
.confirm-close-btn { position: absolute; top: 15px; right: 15px; color: #666; font-size: 1rem; text-decoration: none; transition: color 0.3s ease; display: flex; align-items: center; justify-content: center; width: 25px; height: 25px; cursor: pointer; }
.confirm-close-btn:hover { color: white; }
.confirm-title { font-family: 'Montserrat'; font-size: 1.4rem; color: white; margin-bottom: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 5px; }
.confirm-title i { color: var(--yellow); }
.confirm-details { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 15px; margin-bottom: 25px; text-align: left; }
.confirm-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-family: 'Poppins'; font-size: 0.9rem; }
.confirm-row:last-child { margin-bottom: 0; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 12px; }
.confirm-row .label { color: #aaa; }
.confirm-row .val { color: white; font-weight: 600; }
.confirm-row .val.highlight { color: var(--yellow); font-family: 'Montserrat'; font-size: 1.1rem; font-weight: 800; }
.confirm-actions { display: flex; gap: 10px; }
.btn-cancel { flex: 1; padding: 12px; background: transparent; border: 1px solid #555; color: #aaa; border-radius: 8px; cursor: pointer; font-family: 'Poppins'; font-weight: 600; transition: 0.2s; }
.btn-cancel:hover { background: rgba(255,255,255,0.05); color: white; }
.btn-proceed { flex: 1; padding: 12px; background: linear-gradient(90deg, var(--purple), var(--purple-glow)); border: none; color: white; border-radius: 8px; cursor: pointer; font-family: 'Poppins'; font-weight: 600; transition: 0.2s; box-shadow: 0 4px 15px rgba(106, 13, 173, 0.4); }
.btn-proceed:hover { filter: brightness(1.1); box-shadow: 0 6px 20px rgba(106, 13, 173, 0.6); }

.supported-payments { display: flex; justify-content: center; gap: 20px; margin-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.payment-methods { display: flex; justify-content: center; align-items: center; gap: 15px; margin-top: 15px; }
.supported-payments i, .payment-methods i { font-size: 2.2rem; color: #555; transition: all 0.3s ease; cursor: default; }
.supported-payments i:hover:not(.custom-box), .payment-methods i:hover:not(.custom-box) { color: #aaa; }
i.custom-box { background-color: #555; color: #0b0b0f !important; width: 39px; height: 31px; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem !important; margin-top: 0px; }
i.custom-box:hover { background-color: #aaa; color: #0b0b0f !important; }

@media (max-width: 1200px) { .main-layout-wrapper { padding-left: 0; justify-content: center; } .purchase-side { width: 100%; max-width: 700px; padding: 0 20px; } .character-side { display: none; } }
@media (max-width: 900px) { .sidebar { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .quick-amounts { grid-template-columns: repeat(3, 1fr); } .premium-card { padding: 20px; } .manual-amount-input { font-size: 1.8rem; width: 140px; } .user-header .info .name { flex-direction: column; align-items: flex-start; gap: 5px; } }
