<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
            --primary-color: #1e54b7;
            --secondary-color: #ff6b18;
            --text-color: #333;
            --bg-color: #f5f7fa;
            --dark-bg: #0e2b5c;
            --light-accent: #e1e7f2;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg-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(--dark-bg));
            color: white;
            padding: 20px 0;
            position: relative;
        }
        
        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .live-badge {
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9em;
            font-weight: bold;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .live-pulse {
            width: 10px;
            height: 10px;
            background-color: white;
            border-radius: 50%;
            display: inline-block;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.2);
                opacity: 1;
            }
            100% {
                transform: scale(0.8);
                opacity: 0.8;
            }
        }
        
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .tagline {
            font-size: 1.2em;
            margin-bottom: 20px;
            max-width: 600px;
        }
        
        h1, h2, h3 {
            color: var(--primary-color);
        }
        
        h1 {
            font-size: 2.2em;
            margin: 30px 0 20px;
        }
        
        h2 {
            font-size: 1.8em;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        h2::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(to right, var(--primary-color), transparent);
        }
        
        h3 {
            font-size: 1.4em;
            margin: 20px 0 10px;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 0.9em;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            background-color: #e05500;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 24, 0.3);
        }
        
        .main-content {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 30px 0;
            box-shadow: var(--box-shadow);
        }
        
        .live-matches {
            margin: 30px 0;
        }
        
        .match-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .match-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
            border: 1px solid var(--light-accent);
            position: relative;
        }
        
        .match-card:hover {
            transform: translateY(-5px);
        }
        
        .match-live-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--secondary-color);
            color: white;
            padding: 3px 8px;
            border-radius: 50px;
            font-size: 0.7em;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .match-header {
            background-color: var(--primary-color);
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: bold;
        }
        
        .match-teams {
            padding: 15px;
            text-align: center;
        }
        
        .match-status {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 10px;
            background-color: var(--light-accent);
            font-weight: bold;
        }
        
        .match-time {
            color: var(--secondary-color);
        }
        
        .match-score {
            font-size: 1.2em;
        }
        
        .match-odds {
            display: flex;
            justify-content: space-between;
            padding: 15px;
        }
        
        .match-odd {
            text-align: center;
            flex: 1;
            border-right: 1px solid var(--light-accent);
            cursor: pointer;
            transition: background-color 0.3s ease;
            padding: 10px 0;
        }
        
        .match-odd:last-child {
            border-right: none;
        }
        
        .match-odd:hover {
            background-color: #f0f4f9;
        }
        
        .odd-name {
            font-size: 0.9em;
            color: #666;
            margin-bottom: 5px;
        }
        
        .odd-value {
            font-size: 1.2em;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-box {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
            text-align: center;
            border-top: 3px solid var(--primary-color);
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5em;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .statistics {
            margin: 40px 0;
            background-color: var(--dark-bg);
            color: white;
            padding: 30px;
            border-radius: var(--border-radius);
        }
        
        .statistics h2 {
            color: white;
            border-color: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .stat-box {
            text-align: center;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
        }
        
        .stat-value {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }
        
        .promo-banner {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
            color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .promo-banner h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        .promo-banner .btn {
            margin-top: 20px;
            background-color: white;
            color: var(--primary-color);
        }
        
        .promo-banner .btn:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3em;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .match-grid {
                grid-template-columns: 1fr;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr 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>