<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
            --primary-color: #121212;
            --secondary-color: #d4af37;
            --text-color: #f5f5f5;
            --dark-accent: #1e1e1e;
            --light-accent: #f5f5f5;
            --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
            --border-radius: 5px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Playfair Display', serif;
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background-color: var(--dark-accent);
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
            border-bottom: 3px solid var(--secondary-color);
        }
        
        .header-overlay {
            background: rgba(0, 0, 0, 0.7);
            padding: 50px 20px;
            text-align: center;
        }
        
        h1 {
            font-size: 3em;
            margin-bottom: 20px;
            letter-spacing: 2px;
            color: var(--secondary-color);
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        h2 {
            font-size: 2em;
            margin: 30px 0 20px;
            color: var(--secondary-color);
            display: inline-block;
            position: relative;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold-gradient);
        }
        
        h3 {
            font-size: 1.5em;
            margin: 20px 0 15px;
            color: var(--secondary-color);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1em;
            line-height: 1.8;
        }
        
        .tagline {
            font-size: 1.5em;
            margin-bottom: 30px;
            font-style: italic;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--gold-gradient);
            color: var(--primary-color);
            text-decoration: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            margin-top: 20px;
        }
        
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px var(--secondary-color);
        }
        
        .main-content {
            background-color: var(--dark-accent);
            padding: 40px;
            border-radius: var(--border-radius);
            margin-bottom: 40px;
            border: 1px solid var(--secondary-color);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .game-card {
            background-color: var(--primary-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.3);
            position: relative;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
        }
        
        .game-card-image {
            height: 200px;
            width: 100%;
            background-color: #333;
            position: relative;
            overflow: hidden;
        }
        
        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .game-card:hover .game-overlay {
            opacity: 1;
        }
        
        .play-button {
            background: var(--gold-gradient);
            color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        .game-info {
            padding: 20px;
        }
        
        .game-title {
            color: var(--secondary-color);
            font-size: 1.3em;
            margin-bottom: 10px;
        }
        
        .game-stats {
            display: flex;
            justify-content: space-between;
            color: #aaa;
            font-size: 0.9em;
            margin-top: 15px;
        }
        
        .vip-section {
            background: var(--gold-gradient);
            color: var(--primary-color);
            padding: 40px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            text-align: center;
        }
        
        .vip-section h2 {
            color: var(--primary-color);
            border-bottom: none;
        }
        
        .vip-section h2:after {
            background: var(--primary-color);
        }
        
        .vip-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .vip-benefit {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
        }
        
        .vip-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
        }
        
        .bonus-section {
            background-color: var(--dark-accent);
            padding: 40px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            border: 1px solid var(--secondary-color);
            text-align: center;
        }
        
        .payment-methods {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        
        .payment-method {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px 30px;
            border-radius: var(--border-radius);
        }
        
        footer {
            background-color: var(--dark-accent);
            padding: 40px 0;
            text-align: center;
            margin-top: 60px;
            border-top: 2px solid var(--secondary-color);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        
        .footer-links a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #fff;
        }
        
        .footer-disclaimer {
            font-size: 0.9em;
            color: #777;
            max-width: 800px;
            margin: 20px auto;
        }
        
        @media (max-width: 768px) {
            .game-grid {
                grid-template-columns: 1fr;
            }
            
            .vip-benefits {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.2em;
            }
        }


        .related-pages {
            margin: 40px 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .related-pages h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.4em;
        }
        .related-pages ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .related-pages li {
            margin-bottom: 10px;
        }
        .related-pages a {
            display: inline-block;
            padding: 8px 15px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .related-pages a:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }</pre></body></html>