<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=Oswald:wght@400;500;600;700&amp;family=Roboto:wght@300;400;500;700&amp;display=swap');
        
        :root {
            --primary: #e63946;
            --secondary: #1d3557;
            --accent: #f1faee;
            --light-blue: #457b9d;
            --light: #ffffff;
            --dark: #0d1b2a;
            --card-bg: #f5f5f5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--accent);
            color: var(--dark);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: var(--secondary);
            color: var(--light);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Oswald', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            text-transform: uppercase;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            padding: 10px 25px;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-primary:hover {
            background-color: #d12836;
            transform: translateY(-3px);
        }
        
        .hero {
            background-image: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.8)), url('https://via.placeholder.com/1920x1080/1d3557/1d3557?text=');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: var(--light);
            position: relative;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        
        .hero-content {
            max-width: 700px;
            text-align: left;
        }
        
        .hero-badge {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            font-size: 14px;
            font-weight: 600;
            padding: 5px 15px;
            margin-bottom: 20px;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .sports-section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--dark);
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.8;
        }
        
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .slot-card {
            background-color: var(--card-bg);
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid #e1e1e1;
        }
        
        .slot-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .slot-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .slot-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .slot-card:hover .slot-img img {
            transform: scale(1.1);
        }
        
        .slot-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary);
            color: var(--light);
            font-size: 12px;
            font-weight: 600;
            padding: 5px 10px;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            z-index: 10;
        }
        
        .slot-content {
            padding: 20px;
        }
        
        .slot-title {
            font-size: 20px;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        
        .slot-text {
            font-size: 14px;
            color: #555;
            margin-bottom: 20px;
        }
        
        .slot-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .slot-rtp {
            color: var(--secondary);
            font-weight: 700;
        }
        
        .slot-category {
            background-color: #e1e1e1;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
        }
        
        .bonus-section {
            padding: 80px 0;
            background-color: var(--secondary);
            color: var(--light);
            position: relative;
        }
        
        .bonus-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .bonus-text {
            flex: 1;
            padding-right: 40px;
        }
        
        .bonus-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--light);
        }
        
        .bonus-text p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .bonus-card {
            flex: 1;
            background-color: var(--light);
            color: var(--dark);
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            text-align: center;
        }
        
        .bonus-amount {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            font-family: 'Oswald', sans-serif;
        }
        
        .bonus-info {
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .matches-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .matches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .match-card {
            background-color: var(--light);
            border-radius: 5px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        .match-teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .team {
            text-align: center;
            flex: 1;
        }
        
        .team img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 10px;
        }
        
        .team-name {
            font-size: 14px;
            font-weight: 600;
        }
        
        .match-info {
            margin-bottom: 20px;
        }
        
        .match-date {
            font-size: 14px;
            color: #777;
            margin-bottom: 5px;
        }
        
        .match-league {
            font-size: 12px;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 600;
        }
        
        .match-odds {
            display: flex;
            justify-content: space-between;
        }
        
        .odd {
            flex: 1;
            background-color: #f1f1f1;
            padding: 8px 0;
            margin: 0 5px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .odd:hover {
            background-color: var(--primary);
            color: var(--light);
        }
        
        .content-section {
            padding: 80px 0;
        }
        
        .content {
            background-color: var(--light);
            padding: 40px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .footer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--light);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .bonus-content {
                flex-direction: column;
            }
            
            .bonus-text {
                padding-right: 0;
                margin-bottom: 30px;
                text-align: center;
            }
            
            .match-card {
                margin-bottom: 20px;
            }
        }


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