<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
            --primary-color: #0db04b;
            --secondary-color: #f8f8f8;
            --dark-color: #333;
            --light-color: #fff;
            --accent-color: #00c853;
            --border-radius: 12px;
            --box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        body {
            font-family: 'SF Pro Display', 'Segoe UI', sans-serif;
            line-height: 1.6;
            background-color: var(--secondary-color);
            color: var(--dark-color);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
        }
        
        header {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 20px 0;
            text-align: center;
        }
        
        .logo {
            font-size: 1.8em;
            font-weight: bold;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-icon {
            margin-right: 10px;
            font-size: 1.2em;
        }
        
        h1 {
            font-size: 2em;
            margin: 20px 0;
            color: var(--primary-color);
        }
        
        h2 {
            font-size: 1.5em;
            margin: 25px 0 15px;
            color: var(--primary-color);
        }
        
        h3 {
            font-size: 1.2em;
            margin: 15px 0 10px;
            color: var(--primary-color);
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        .app-download {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 30px 0;
            text-align: center;
        }
        
        .app-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .app-button {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            background-color: var(--dark-color);
            color: var(--light-color);
            text-decoration: none;
            border-radius: 8px;
            font-size: 0.9em;
            transition: all 0.3s ease;
        }
        
        .app-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .app-icon {
            font-size: 1.5em;
            margin-right: 10px;
        }
        
        .button-text {
            display: flex;
            flex-direction: column;
            text-align: left;
        }
        
        .button-small {
            font-size: 0.7em;
            opacity: 0.8;
        }
        
        .button-large {
            font-size: 1.1em;
            font-weight: bold;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin: 20px 0;
            box-shadow: var(--box-shadow);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .cta-button:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-img {
            height: 150px;
            background-color: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            color: var(--primary-color);
        }
        
        .feature-content {
            padding: 20px;
        }
        
        .feature-title {
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .devices-mockup {
            display: flex;
            justify-content: center;
            margin: 40px 0;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .device {
            background-color: var(--light-color);
            border-radius: 20px;
            box-shadow: var(--box-shadow);
            overflow: hidden;
            width: 220px;
            height: 400px;
            position: relative;
        }
        
        .device:nth-child(2) {
            transform: scale(0.9);
        }
        
        .device-header {
            background-color: var(--primary-color);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-color);
            font-weight: bold;
        }
        
        .device-content {
            padding: 15px;
            font-size: 0.8em;
            text-align: center;
        }
        
        .mini-odds {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
            background-color: #f1f1f1;
            padding: 10px;
            border-radius: 8px;
        }
        
        .mini-odd {
            text-align: center;
        }
        
        .odd-value {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .steps {
            display: flex;
            flex-direction: column;
            margin: 40px 0;
        }
        
        .step {
            display: flex;
            margin-bottom: 30px;
            position: relative;
        }
        
        .step-number {
            background-color: var(--primary-color);
            color: var(--light-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .step-content {
            background-color: var(--light-color);
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            flex: 1;
        }
        
        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            left: 20px;
            width: 2px;
            height: calc(100% - 10px);
            background-color: var(--primary-color);
        }
        
        .testimonials {
            margin: 40px 0;
        }
        
        .testimonial {
            background-color: var(--light-color);
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 20px;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f1f1f1;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        .author-name {
            font-weight: bold;
        }
        
        .author-info {
            color: #777;
            font-size: 0.9em;
        }
        
        .faq {
            margin: 40px 0;
        }
        
        .faq-item {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 20px 20px;
            border-top: 1px solid #eee;
        }
        
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 40px 0 20px;
            text-align: center;
            margin-top: 60px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .footer-links a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            transition: background-color 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
        }
        
        .copyright {
            margin-top: 20px;
            color: #777;
            font-size: 0.9em;
        }
        
        @media (max-width: 768px) {
            .feature-cards {
                grid-template-columns: 1fr;
            }
            
            .app-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .app-button {
                width: 100%;
                max-width: 250px;
            }
            
            .devices-mockup {
                flex-direction: column;
                align-items: center;
            }
            
            .device {
                width: 80%;
                max-width: 300px;
            }
            
            .device:nth-child(2) {
                transform: none;
            }
        }


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