
        /* CSS RESET & VARIABLES */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --rust-orange: #ce422b;
            --rust-dark: #1a1a1a;
            --rust-gray: #2c2c2c;
            --rust-light: #3d3d3d;
            --text-main: #f0f0f0;
            --text-muted: #aaaaaa;
            --alert-color: #ff9800;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--rust-dark);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .brand {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        /* NAVIGATION */
        header {
            background-color: rgba(26, 26, 26, 0.98);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--rust-orange);
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            letter-spacing: 2px;
        }

        .brand span { color: var(--rust-orange); }

        .nav-links a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            font-weight: 700;
            transition: color 0.3s;
        }

        .nav-links a:hover, .nav-links a.highlight { color: var(--rust-orange); }

        /* HERO SECTION */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1542281286-9e0a16bb7366?auto=format&fit=crop&w=1920&q=80') center/cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 10px;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 600px;
        }

        /* CONNECTION BOX */
        .connect-box {
            background: rgba(44, 44, 44, 0.8);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid var(--rust-orange);
            backdrop-filter: blur(5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .connect-box h3 { margin-bottom: 15px; color: var(--rust-orange); }

        .command-line {
            display: flex;
            align-items: center;
            background: #000;
            padding: 15px 20px;
            border-radius: 4px;
            margin-bottom: 15px;
            font-family: 'Courier New', Courier, monospace;
            font-size: 1.2rem;
            color: #4CAF50;
        }

        .btn {
            background-color: var(--rust-orange);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            cursor: pointer;
            border-radius: 4px;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn:hover { background-color: #b03522; transform: translateY(-2px); }
        .btn-revolut { background-color: #0075eb; width: 100%; margin-top: 20px; }
        .btn-revolut:hover { background-color: #005bb5; }

        /* GENERAL SECTION STYLES */
        section { padding: 80px 5%; }
        .bg-dark { background-color: var(--rust-dark); }
        .bg-gray { background-color: #151515; }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: white;
        }
        .section-title span { color: var(--rust-orange); }

        /* FEATURES & COMMANDS GRID */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            background-color: var(--rust-gray);
            padding: 40px 30px;
            text-align: center;
            border-radius: 8px;
            border-bottom: 4px solid transparent;
            transition: border-color 0.3s, transform 0.3s;
        }
        .card:hover { border-color: var(--rust-orange); transform: translateY(-5px); }
        .card i { font-size: 3rem; color: var(--rust-orange); margin-bottom: 20px; }
        .card h3 { font-size: 1.5rem; margin-bottom: 15px; }

        /* COMMANDS SPECIFIC */
        .cmd-box {
            background: #000;
            color: var(--rust-orange);
            padding: 10px;
            font-family: monospace;
            font-size: 1.2rem;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* VIP SECTION */
        .vip-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--rust-gray);
            border: 2px solid var(--rust-orange);
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(206, 66, 43, 0.1);
        }

        .vip-header { text-align: center; margin-bottom: 30px; }
        .vip-price { font-size: 3rem; font-family: 'Oswald', sans-serif; color: white; }
        .vip-price span { font-size: 1.2rem; color: var(--text-muted); }

        .vip-warning {
            background-color: rgba(255, 152, 0, 0.1);
            border-left: 4px solid var(--alert-color);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        
        .vip-warning h4 { color: var(--alert-color); margin-bottom: 5px; }

        .privacy-notice {
            font-size: 0.9rem;
            text-align: center;
            color: var(--text-muted);
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* RULES SECTION */
        .rules-list { max-width: 800px; margin: 0 auto; list-style: none; }
        .rules-list li {
            background: var(--rust-gray);
            margin-bottom: 15px;
            padding: 20px;
            border-left: 4px solid var(--rust-orange);
            border-radius: 4px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* FOOTER */
        footer {
            background-color: #0a0a0a;
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid #333;
        }
        .social-links { margin-bottom: 20px; }
        .social-links a { color: white; font-size: 1.5rem; margin: 0 15px; transition: color 0.3s; }
        .social-links a:hover { color: var(--rust-orange); }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .command-line { font-size: 1rem; flex-direction: column; gap: 10px; }
            .nav-links { display: none; } /* Hamburger menu place */
            .vip-container { padding: 20px; }
        }
    