        :root {
            --dark-bg: #0a0a0a;
            --dark-card: #141414;
            --gold: #d4af37;
            --gold-light: #f1e5b9;
            --red: #d32f2f;
            --red-light: #ef5350;
            --white: #ffffff;
            --gray: #e0e0e0;
            --gray-dark: #9e9e9e;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--dark-bg);
            color: var(--white);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
        }
        
        .logo h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--gold);
            margin-left: 10px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 25px;
        }
        
        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: var(--gold);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/hero-bg.webp') no-repeat center center/cover;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--gray);
        }
        
        .warning {
            background-color: rgba(211, 47, 47, 0.2);
            border-left: 4px solid var(--red);
            padding: 15px;
            margin: 30px auto;
            max-width: 800px;
            text-align: left;
        }
        
        /* CTA Buttons */
        .cta-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .cta-primary {
            background-color: var(--red);
            color: var(--white);
        }
        
        .cta-primary:hover {
            background-color: var(--red-light);
            transform: translateY(-2px);
        }
        
        .cta-secondary {
            background-color: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }
        
        .cta-secondary:hover {
            background-color: var(--gold);
            color: var(--dark-bg);
            transform: translateY(-2px);
        }
        
        /* Section Styles */
        section {
            padding: 70px 0;
        }
        
        section h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--gold);
        }
        
        section h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--gold-light);
        }
        
        .features {
            background-color: var(--dark-card);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .feature-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--white);
        }
        
        /* Process Steps */
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
        }
        
        .step {
            background-color: var(--dark-card);
            border-radius: 8px;
            padding: 20px;
            width: 180px;
            text-align: center;
            position: relative;
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--gold);
            color: var(--dark-bg);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        /* Game Categories */
        .game-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .game-category {
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .game-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .game-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        /* Bonus Types */
        .bonus-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .bonus-type {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--gold);
            padding: 20px;
            border-radius: 4px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                flex-direction: column;
                align-items: center;
            }
            
            nav li {
                margin: 10px 0;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .features-grid, .game-categories, .bonus-types {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step {
                width: 100%;
                max-width: 300px;
            }
        }
        
        /* Footer */
        footer {
            background-color: #080808;
            padding: 50px 0 20px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-links a {
            color: var(--gray);
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .disclaimer {
            background-color: rgba(211, 47, 47, 0.1);
            border: 1px solid var(--red);
            padding: 15px;
            border-radius: 5px;
            margin: 20px auto;
            max-width: 800px;
            font-size: 14px;
        }
        
        .copyright {
            margin-top: 30px;
            color: var(--gray-dark);
            font-size: 14px;
        }