<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
            --primary-color: #d4af37;
            --secondary-color: #081c2c;
            --text-color: #f5f5f5;
            --dark-bg: #0a0e17;
            --light-accent: #1e2e42;
            --gold-gradient: linear-gradient(135deg, #d4af37, #aa8c2c);
            --border-radius: 8px;
            --glow-effect: 0 0 15px rgba(212, 175, 55, 0.5);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 25px 25px, rgba(212, 175, 55, 0.1) 2px, transparent 0),
                radial-gradient(circle at 75px 75px, rgba(212, 175, 55, 0.05) 2px, transparent 0);
            background-size: 100px 100px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background-color: var(--secondary-color);
            border-bottom: 3px solid var(--primary-color);
            padding: 30px 0;
            position: relative;
            overflow: hidden;
        }
        
        .header-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .header-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--secondary-color);
            opacity: 0.8;
            z-index: 1;
        }
        
        .logo {
            font-size: 2.8em;
            font-weight: bold;
            letter-spacing: 2px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
            display: inline-block;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
        }
        
        .tagline {
            font-size: 1.3em;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }
        
        h1, h2, h3 {
            color: var(--primary-color);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        h1 {
            font-size: 2.5em;
            margin: 30px 0 20px;
            text-align: center;
        }
        
        h2 {
            font-size: 1.8em;
            margin: 25px 0 15px;
            position: relative;
            display: inline-block;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold-gradient);
        }
        
        h3 {
            font-size: 1.3em;
            margin: 20px 0 10px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--gold-gradient);
            color: var(--secondary-color);
            text-decoration: none;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            box-shadow: var(--glow-effect);
            cursor: pointer;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
        }
        
        .main-content {
            background-color: var(--secondary-color);
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--light-accent);
        }
        
        .casino-games {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .game-card {
            background-color: var(--light-accent);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-effect);
        }
        
        .game-img {
            height: 160px;
            background-color: #121a24;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            color: var(--primary-color);
            position: relative;
            overflow: hidden;
        }
        
        .game-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(8, 28, 44, 0.8) 100%);
        }
        
        .game-info {
            padding: 20px;
        }
        
        .game-title {
            font-size: 1.3em;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .game-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            font-size: 0.9em;
            color: #aaa;
        }
        
        .vip-section {
            background: linear-gradient(to right, var(--secondary-color), #0d2941);
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            border-left: 5px solid var(--primary-color);
        }
        
        .vip-levels {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        
        .vip-level {
            background-color: var(--light-accent);
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            width: calc(33.333% - 15px);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .vip-level:hover {
            transform: translateY(-5px);
        }
        
        .vip-level h3 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 15px;
        }
        
        .bonus-offers {
            margin: 40px 0;
        }
        
        .bonus-card {
            display: flex;
            background-color: var(--light-accent);
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            border-left: 3px solid var(--primary-color);
            align-items: center;
        }
        
        .bonus-icon {
            font-size: 2.5em;
            color: var(--primary-color);
            margin-right: 20px;
        }
        
        .bonus-info {
            flex: 1;
        }
        
        .bonus-info h3 {
            margin-top: 0;
        }
        
        footer {
            background-color: var(--secondary-color);
            padding: 30px 0;
            text-align: center;
            margin-top: 50px;
            border-top: 3px solid var(--primary-color);
        }
        
        .payment-methods {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        
        .payment-icon {
            width: 50px;
            height: 30px;
            background-color: #fff;
            border-radius: 5px;
            margin: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        @media (max-width: 768px) {
            .vip-level {
                width: 100%;
            }
            
            .bonus-card {
                flex-direction: column;
                text-align: center;
            }
            
            .bonus-icon {
                margin: 0 0 15px 0;
            }
        }


        .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>