<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
            --primary-color: #5e2ca5;
            --secondary-color: #ffd700;
            --text-color: #333;
            --background-color: #f9f9f9;
            --accent-color: #9b59b6;
            --border-radius: 10px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 30px 0;
            text-align: center;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        h2 {
            color: var(--primary-color);
            margin: 25px 0 15px;
            font-size: 1.8em;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }
        
        h3 {
            color: var(--accent-color);
            margin: 20px 0 10px;
            font-size: 1.4em;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        
        .content {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .game-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .game-card:hover {
            transform: translateY(-5px);
        }
        
        .game-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        
        .game-info {
            padding: 15px;
        }
        
        .game-info h3 {
            color: var(--primary-color);
            margin: 0 0 10px;
        }
        
        .bonus-box {
            background: linear-gradient(45deg, var(--secondary-color), #f5e28a);
            border-radius: var(--border-radius);
            padding: 20px;
            margin: 30px 0;
            text-align: center;
            color: var(--text-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .bonus-box h2 {
            color: var(--primary-color);
            border-bottom: none;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
        }
        
        .cta-button:hover {
            background: transparent;
            color: var(--primary-color);
        }
        
        .testimonials {
            margin: 40px 0;
        }
        
        blockquote {
            background: rgba(155, 89, 182, 0.1);
            padding: 20px;
            border-left: 5px solid var(--accent-color);
            margin: 20px 0;
            font-style: italic;
        }
        
        footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            background: var(--primary-color);
            color: white;
            border-radius: var(--border-radius);
        }
        
        @media (max-width: 768px) {
            .games-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 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>