<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
            --primary-color: #e63232;
            --secondary-color: #1a1a1a;
            --text-color: #f5f5f5;
            --dark-accent: #0a0a0a;
            --light-accent: #333333;
            --red-gradient: linear-gradient(135deg, #e63232, #a61b1b);
            --border-radius: 5px;
            --glow-effect: 0 0 10px rgba(230, 50, 50, 0.5);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--secondary-color);
            color: var(--text-color);
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 25px 25px, rgba(230, 50, 50, 0.15) 2px, transparent 0),
                radial-gradient(circle at 75px 75px, rgba(230, 50, 50, 0.1) 2px, transparent 0);
            background-size: 100px 100px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background-color: var(--dark-accent);
            border-bottom: 3px solid var(--primary-color);
            padding: 20px 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(--dark-accent);
            opacity: 0.8;
            z-index: 1;
        }
        
        .logo {
            font-size: 2.5em;
            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(230, 50, 50, 0.5);
        }
        
        .tagline {
            font-size: 1.2em;
            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(--red-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(--red-gradient);
            color: var(--text-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(230, 50, 50, 0.7);
        }
        
        .main-content {
            background-color: var(--dark-accent);
            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);
        }
        
        .esports-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(230, 50, 50, 0.3);
        }
        
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-effect);
        }
        
        .game-img {
            height: 160px;
            background-color: #222;
            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(26, 26, 26, 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: #999;
        }
        
        .live-matches {
            margin: 40px 0;
        }
        
        .match-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--light-accent);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            transition: background-color 0.3s ease;
            border-left: 3px solid var(--primary-color);
        }
        
        .match-row:hover {
            background-color: #2a2a2a;
        }
        
        .match-teams {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .team {
            display: flex;
            align-items: center;
        }
        
        .team-logo {
            width: 30px;
            height: 30px;
            background-color: #333;
            border-radius: 50%;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .vs {
            margin: 0 15px;
            color: #999;
            font-weight: bold;
        }
        
        .match-time {
            background-color: rgba(230, 50, 50, 0.1);
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 0.9em;
            color: var(--primary-color);
        }
        
        .match-odds {
            display: flex;
            gap: 10px;
        }
        
        .odd-box {
            background-color: #222;
            padding: 8px 15px;
            border-radius: 3px;
            text-align: center;
            transition: background-color 0.3s ease;
            cursor: pointer;
            min-width: 80px;
        }
        
        .odd-box:hover {
            background-color: var(--primary-color);
        }
        
        .odd-value {
            font-size: 1.1em;
            font-weight: bold;
        }
        
        .odd-label {
            font-size: 0.8em;
            color: #999;
        }
        
        .features-section {
            background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('path-to-image.jpg');
            background-size: cover;
            background-position: center;
            padding: 50px 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            text-align: center;
            border: 1px solid var(--light-accent);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }
        
        .feature-item {
            background-color: rgba(10, 10, 10, 0.7);
            padding: 25px;
            border-radius: var(--border-radius);
            transition: transform 0.3s ease;
            border: 1px solid var(--light-accent);
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-effect);
        }
        
        .feature-icon {
            font-size: 2.5em;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .tournaments {
            margin: 40px 0;
        }
        
        .tournament-card {
            background-color: var(--light-accent);
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(230, 50, 50, 0.3);
        }
        
        .tournament-header {
            background: var(--red-gradient);
            color: white;
            padding: 15px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .prize-pool {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 0.9em;
        }
        
        .tournament-content {
            padding: 20px;
        }
        
        .teams-list {
            margin: 15px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .team-pill {
            background-color: #222;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9em;
        }
        
        footer {
            background-color: var(--dark-accent);
            padding: 50px 0 30px;
            margin-top: 60px;
            border-top: 3px solid var(--primary-color);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2em;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        
        .payment-method {
            background-color: #222;
            padding: 8px 15px;
            border-radius: 3px;
            font-size: 0.9em;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--light-accent);
            color: #777;
            font-size: 0.9em;
        }
        
        @media (max-width: 768px) {
            .esports-games {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .match-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .match-odds {
                width: 100%;
                justify-content: space-between;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }


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