<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
            --primary-color: #143d59;
            --secondary-color: #f58634;
            --text-color: #333;
            --light-color: #f4f4f4;
            --border-radius: 5px;
            --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            background-color: var(--light-color);
            color: var(--text-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px 0;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--secondary-color);
            text-transform: uppercase;
        }
        
        .tagline {
            font-size: 1.2em;
            margin-bottom: 20px;
        }
        
        h1, h2, h3 {
            color: var(--primary-color);
        }
        
        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
        
        h2 {
            font-size: 1.8em;
            margin: 30px 0 15px;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 10px;
            display: inline-block;
        }
        
        h3 {
            font-size: 1.4em;
            margin: 20px 0 10px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        
        .main-content {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .odds-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .match-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .match-card:hover {
            transform: translateY(-5px);
        }
        
        .match-header {
            background-color: var(--primary-color);
            color: white;
            padding: 10px;
            text-align: center;
        }
        
        .match-teams {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            font-size: 1.2em;
            border-bottom: 1px solid #eee;
        }
        
        .match-odds {
            display: flex;
            justify-content: space-between;
            padding: 15px;
        }
        
        .odd-box {
            text-align: center;
            flex: 1;
            padding: 10px;
            border-right: 1px solid #eee;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .odd-box:last-child {
            border-right: none;
        }
        
        .odd-box:hover {
            background-color: #f9f9f9;
        }
        
        .odd-label {
            font-size: 0.9em;
            color: #777;
            margin-bottom: 5px;
        }
        
        .odd-value {
            font-size: 1.3em;
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        .highlight-box {
            background-color: var(--secondary-color);
            color: white;
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            text-align: center;
        }
        
        .highlight-box h2 {
            color: white;
            border-bottom: 2px solid white;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            margin-top: 15px;
            transition: background-color 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #e67a24;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature {
            background-color: white;
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            text-align: center;
        }
        
        .feature-icon {
            font-size: 2.5em;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 30px 0;
            text-align: center;
            margin-top: 50px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        
        .footer-links a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .odds-container {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }</pre></body></html>