<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&amp;display=swap');
        
        :root {
            --black: #0a0a0a;
            --dark: #111111;
            --gold: #d4af37;
            --light-gold: #f1c40f;
            --white: #ffffff;
            --gray: #333333;
            --card-bg: #181818;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: var(--black);
            padding: 20px 0;
            border-bottom: 1px solid var(--gold);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .logo span {
            color: var(--gold);
        }
        
        .btn-gold {
            background-color: var(--gold);
            color: var(--black);
            border: none;
            padding: 10px 25px;
            border-radius: 0;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn-gold:hover {
            background-color: var(--light-gold);
        }
        
        .hero {
            height: 500px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080/000000/000000?text=');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold);
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero span {
            display: inline-block;
            color: var(--gold);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #ccc;
        }
        
        .section-title {
            text-align: center;
            margin: 80px 0 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--white);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }
        
        .game-card {
            background: var(--card-bg);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid #222;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--gold);
        }
        
        .game-img {
            height: 200px;
            overflow: hidden;
        }
        
        .game-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .game-card:hover .game-img img {
            transform: scale(1.1);
        }
        
        .game-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold);
            color: var(--black);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 10px;
            text-transform: uppercase;
        }
        
        .game-content {
            padding: 25px;
        }
        
        .game-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--white);
        }
        
        .game-text {
            font-size: 14px;
            color: #aaa;
            margin-bottom: 20px;
        }
        
        .game-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .game-rtp {
            font-size: 14px;
            color: var(--gold);
            font-weight: 600;
        }
        
        .btn-small {
            padding: 8px 15px;
            font-size: 12px;
        }
        
        .vip-section {
            padding: 80px 0;
            background: var(--card-bg);
            position: relative;
            overflow: hidden;
        }
        
        .vip-content {
            display: flex;
            align-items: center;
        }
        
        .vip-text {
            flex: 1;
            padding-right: 40px;
        }
        
        .vip-text h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .vip-text p {
            margin-bottom: 30px;
            color: #ccc;
        }
        
        .vip-levels {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .vip-level {
            background: var(--dark);
            padding: 20px;
            border: 1px solid #333;
            text-align: center;
        }
        
        .vip-level:hover {
            border-color: var(--gold);
        }
        
        .vip-level h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--gold);
        }
        
        .vip-level p {
            font-size: 14px;
            color: #aaa;
            margin-bottom: 0;
        }
        
        .content-section {
            padding: 80px 0;
        }
        
        .content {
            background: var(--card-bg);
            padding: 40px;
            border: 1px solid #222;
        }
        
        .footer {
            background: var(--dark);
            padding: 60px 0 20px;
            border-top: 5px solid var(--gold);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--gold);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid #222;
            color: #777;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .vip-content {
                flex-direction: column;
            }
            
            .vip-text {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }
        }</pre></body></html>