:root {
            --primary: #7c3aed;
            --secondary: #9333ea;
            --discord: #5865F2;
            --mcpixel: #0000FF;
            --dark-bg: #06060c;
            --footer-bg: #0a0a14;
            --glass: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .area {
            position: absolute;
            width: 100%;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            background: linear-gradient(to left, #1a1a3a, #06060c);
        }

        .circles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .circles li {
            position: absolute;
            display: block;
            list-style: none;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            animation: animateParticles 25s linear infinite;
            bottom: -150px;
        }

        .circles li:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
        .circles li:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
        .circles li:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
        .circles li:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
        .circles li:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
        .circles li:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
        .circles li:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
        .circles li:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
        .circles li:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
        .circles li:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }

        @keyframes animateParticles {
            0% { transform: translateY(0) rotate(0deg); opacity: 1; border-radius: 0; }
            100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: 0.4s;
        }

        header.scrolled {
            background: rgba(6, 6, 12, 0.9);
            backdrop-filter: blur(15px);
            padding: 12px 0;
            border-bottom: 1px solid var(--glass-border);
        }

        nav {
            max-width: 1400px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: #fff;
        }

        .logo img {
            width: 45px;
            border-radius: 12px;
        }

        .logo span {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -1px;
        }

        .nav-links { display: flex; gap: 30px; }
        .nav-links a {
            color: #ccc;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            transition: 0.3s;
        }
        .nav-links a:hover { color: var(--primary); }

        .menu-trigger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: rgba(10, 10, 20, 0.98);
            backdrop-filter: blur(20px);
            z-index: 2000;
            padding: 100px 40px;
            display: flex;
            flex-direction: column;
            gap: 25px;
            transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 1px solid var(--glass-border);
        }

        .sidebar.active { right: 0; }

        .sidebar a {
            color: #fff;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: 0.3s ease;
        }

        .sidebar a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(3rem, 10vw, 6rem);
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(to bottom, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.4rem;
            color: #a1a1aa;
            max-width: 800px;
            padding: 0 20px;
        }

        .animated-waves {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 15vh;
            margin-bottom: -1px;
            min-height: 100px;
            max-height: 150px;
        }

        .parallax > use {
            animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
        }
        .parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; fill: rgba(255,255,255,0.7); }
        .parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; fill: rgba(255,255,255,0.5); }
        .parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; fill: rgba(255,255,255,0.3); }
        .parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; fill: #fff; }

        @keyframes move-forever {
            0% { transform: translate3d(-90px,0,0); }
            100% { transform: translate3d(85px,0,0); }
        }

        .section-white {
            background: #fff;
            color: #111;
            padding: 60px 20px 100px;
        }

        .bubble-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }

        .bubble-btn {
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            color: #fff;
            font-size: 0.9rem;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .bubble-btn:hover { transform: scale(1.03) translateY(-2px); }

        .bubble-btn svg { width: 22px; height: 22px; stroke: #fff; fill: none; }

        .bubble-btn.purple { background: var(--primary); }
        .bubble-btn.discord { background: var(--discord); }
        .bubble-btn.cyan { background: #00bcd4; }
        .bubble-btn.blue-pure { background: var(--mcpixel); }
        .bubble-btn.dark { background: #1e293b; }

        .mcpixel-icon {
            width: 24px;
            height: 24px;
            border-radius: 4px;
            object-fit: cover;
        }

        .bubble-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transform: skewX(-20deg);
            animation: shineLoop 3s infinite linear;
        }

        @keyframes shineLoop {
            0% { left: -150%; }
            100% { left: 250%; }
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .feature-item {
            background: #f8fafc;
            padding: 40px;
            border-radius: 30px;
            transition: 0.3s;
            border: 1px solid #e2e8f0;
            text-align: center;
        }

        .feature-item:hover {
            transform: translateY(-10px);
            background: #fff;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: var(--primary);
        }

        .feature-item svg {
            width: 45px;
            height: 45px;
            color: var(--primary);
            margin-bottom: 20px;
            fill: none;
        }

        .main-footer {
            background: var(--footer-bg);
            padding: 40px 20px;
            color: #fff;
            width: 100%;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
        }

        .footer-brand {
            flex: 1;
        }

        .footer-brand h2 {
            font-weight: 800;
            font-size: 1.6rem;
            color: #fff;
            margin-bottom: 10px;
        }

        .footer-brand p {
            color: #94a3b8;
            font-size: 0.8rem;
            max-width: 300px;
            font-weight: 500;
            display: none;
        }

        .footer-links-container {
            display: flex;
            flex: 2;
            flex-direction: row;
            justify-content: flex-end;
            gap: 30px;
        }

        .footer-section h4 {
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.7rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section ul li a {
            text-decoration: none;
            color: #94a3b8;
            font-weight: 600;
            font-size: 0.75rem;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-section ul li a svg {
            width: 14px;
            height: 14px;
            stroke-width: 2.5;
        }

        .footer-section ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 30px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
        }

        .footer-bottom p {
            color: #64748b;
            font-weight: 600;
            font-size: 0.75rem;
        }

        @media (min-width: 1024px) {
            .footer-brand p {
                display: block;
            }
        }

        @media (max-width: 968px) {
            .nav-links { display: none; }
            .menu-trigger { display: block; }
            .hero h1 { font-size: 3.2rem; }
            .bubble-container { gap: 10px; }
            .bubble-btn { padding: 12px 20px; font-size: 0.8rem; }
            
            .footer-content {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
            }
            
            .footer-brand {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .footer-links-container {
                width: 100%;
                justify-content: space-between;
                gap: 10px;
            }
            
            .footer-section {
                flex: 1;
                min-width: 80px;
            }
        }