<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --us-blue: #002868;
    --us-red: #d32f2f;
    --us-red-dark: #b71c1c;
    --us-white: #fff;
    --us-gray: #f4f6fa;
    --us-blue-light: #e3eafc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: var(--us-blue-light);
    color: var(--us-blue);
    margin: 0;
    padding: 0;
}

section {
    padding: 60px 0;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    text-align: center;
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--us-white);
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--us-white);
    margin-bottom: 2rem;
}
.hero-live {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.hero-live .live-item {
    background: var(--us-blue-light);
    border-radius: 1rem;
    padding: 1.2rem 2rem;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,40,104,0.08);
}
.hero-live .live-label {
    font-size: 1rem;
    color: var(--us-red);
    font-weight: 700;
}
.hero-live .live-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--us-blue);
}
.cta-buttons .btn {
    margin: 0 0.5rem 1rem 0.5rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--us-red);
    margin-bottom: 2rem;
    text-align: center;
}

.how-steps, .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.how-step, .feature-card {
    background: var(--us-gray);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,40,104,0.08);
    transition: transform 0.2s;
}
.how-step:hover, .feature-card:hover {
    transform: translateY(-6px) scale(1.03);
}
.how-step i, .feature-card i {
    font-size: 2.5rem;
    color: var(--us-red);
    margin-bottom: 1rem;
}
.how-step .step-title, .feature-card .feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--us-blue);
}
.feature-card img {
    height: 2.2rem;
    vertical-align: middle;
    margin-bottom: 1rem;
}
.feature-card .feature-desc {
    color: var(--us-blue);
    font-size: 1rem;
}

.stat-card {
    background: var(--us-gray);
    color: var(--us-blue);
    border-radius: 1rem;
    border: 1px solid #e0e0e0;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,40,104,0.08);
}

.winner-list {
    margin-top: 1rem;
}
.winner-item {
    background: var(--us-blue-light);
    color: var(--us-blue);
    border-left: 4px solid var(--us-red);
    border-radius: 0.5rem;
    transition: background 0.2s;
}
.winner-item:hover {
    background: var(--us-gray);
}

.accordion-button {
    background: var(--us-white);
    color: var(--us-blue);
    font-weight: 700;
}
.accordion-button:not(.collapsed) {
    color: var(--us-white);
    background: var(--us-red);
}
.accordion-body {
    background: var(--us-gray);
    color: var(--us-blue);
}

footer {
    padding: 2rem 0 1rem 0;
    text-align: center;
}

.navbar {
    background: var(--us-blue);
    box-shadow: 0 2px 8px rgba(0,40,104,0.08);
}
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--us-white) !important;
    letter-spacing: 1px;
}
.nav-link {
    color: var(--us-white) !important;
    font-weight: 500;
    margin-right: 1rem;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
    color: var(--us-red) !important;
}

.bg-hero, .bg-footer {
    background: var(--us-blue);
    color: var(--us-white);
}
.bg-how {
    background: var(--us-white);
    color: var(--us-blue);
}
.bg-features {
    background: var(--us-blue-light);
    color: var(--us-blue);
}
.bg-stats {
    background: var(--us-gray);
    color: var(--us-blue);
}
.bg-faq {
    background: var(--us-white);
    color: var(--us-blue);
}

.btn-primary {
    background: linear-gradient(90deg, var(--us-red) 0%, var(--us-blue) 100%);
    color: var(--us-white);
    border: none;
    font-weight: 700;
}
.btn-primary:hover {
    background: linear-gradient(90deg, var(--us-blue) 0%, var(--us-red-dark) 100%);
    color: var(--us-white);
}

.btn-outline-light {
    border-color: var(--us-red);
    color: var(--us-red);
}
.btn-outline-light:hover {
    background: var(--us-red);
    color: var(--us-white);
}

.stat-label {
    font-size: 1rem;
    color: var(--us-blue);
    margin-bottom: 0.5rem;
}
.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--us-red);
}

.footer .footer-links a {
    color: var(--us-red);
}
.footer .footer-links a:hover {
    text-decoration: underline;
}
.footer .social-links a {
    color: var(--us-white);
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.footer .social-links a:hover {
    color: var(--us-red);
}
.disclaimer {
    font-size: 0.95rem;
    color: var(--us-gray);
    margin-top: 1rem;
}

.bg-features .feature-card .feature-desc {
    color: var(--us-blue);
}
.bg-features .feature-card .feature-title {
    color: var(--us-blue);
    font-weight: 700;
}
.bg-features .feature-card i,
.bg-features .feature-card img {
    color: var(--us-red);
}

@media (max-width: 991px) {
    .how-steps, .features-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .how-step, .feature-card {
        min-width: 90vw;
        max-width: 95vw;
    }
    .stat-card {
        font-size: 1rem;
        padding: 1.2rem 0.5rem;
    }
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.13;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.shape-ball {
    background: url('../img/ball.svg') no-repeat center/contain;
    width: 70px; height: 70px;
    left: 5%; top: 10%;
}
.shape-coin {
    background: url('../img/coin.svg') no-repeat center/contain;
    width: 50px; height: 50px;
    right: 8%; top: 30%;
}

/* Glassy cards */
.feature-card, .stat-card, .how-step {
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover, .stat-card:hover, .how-step:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* Section dividers */
.section-divider-top {
    position: absolute;
    top: 0; left: 0; width: 100%; z-index: 1;
    pointer-events: none;
}
.section-divider-bottom {
    position: absolute;
    bottom: 0; left: 0; width: 100%; z-index: 1;
    pointer-events: none;
}

/* Ensure content is above floating shapes and dividers */
section &gt; .container, section &gt; div.container {
    position: relative;
    z-index: 2;
}

/* Button animation */
.btn-outline-light.btn-lg, .btn-primary.btn-lg {
    box-shadow: 0 4px 16px rgba(0,40,104,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
}
.btn-outline-light.btn-lg:hover, .btn-primary.btn-lg:hover {
    box-shadow: 0 8px 32px rgba(0,40,104,0.18);
    transform: scale(1.04);
}

/* Responsive floating shapes */
@media (max-width: 991px) {
    .shape-ball, .shape-coin {
        display: none;
    }
}

/* Fix Bootstrap modal content opacity and style */
.modal-content {
    background: #fff !important;
    color: #222;
    opacity: 1 !important;
}

.modal-body pre {
    background: #f8f9fa;
    color: #222;
    padding: 1em;
    border-radius: 6px;
    max-height: 400px;
    overflow: auto;
    font-size: 0.95em;
}

.modal-header {
    background: #f1f3f6;
    border-bottom: 1px solid #dee2e6;
}

/* Modal z-index and display fixes for Bootstrap */
.modal {
    z-index: 1060 !important;
    /* display: block !important; -- removed to allow Bootstrap JS to control display */
}
.modal-backdrop {
    z-index: 1050 !important;
    background-color: #000;
    opacity: 0.5 !important;
}
/* .modal.show {
    display: block !important;
} -- removed to allow Bootstrap JS to control display */

/* Make modal scrollable for large content */
.modal-dialog {
    max-width: 90vw;
    margin: 1.75rem auto;
}
.modal-content {
    max-height: 80vh;
    overflow: auto;
}
.modal-body {
    overflow-y: auto;
    max-height: 60vh;
} 
</pre></body></html>