html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.sports-container {
    background: #2d2d2d;
    border-radius: 12px;
    padding: 15px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.sports-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.sports-scroll::-webkit-scrollbar {
    height: 6px;
}

.sports-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.sports-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.sports-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.match-card {
    min-width: 280px;
    background: #383838;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #4a4a4a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: #666;
    text-decoration: none;
}

.league-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.league-icon {
    width: 16px;
    height: 16px;
    background: #555;
    border-radius: 50%;
}

.league-name {
    color: #ccc;
    font-size: 12px;
    font-weight: 500;
}

.time {
    color: #888;
    font-size: 11px;
    margin-left: auto;
}

.match-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.teams {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
}

.team-name {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    flex: 1;
}

.vs-divider {
    color: #666;
    font-size: 12px;
    font-weight: bold;
    margin: 0 10px;
}

.odds {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.odd {
    background: #2a2a2a;
    border: 1px solid #555;
    border-radius: 6px;
    padding: 6px 8px;
    text-align: center;
    flex: 1;
    transition: all 0.2s ease;
}

.odd:hover {
    background: #3a3a3a;
    border-color: #777;
}

.odd-label {
    color: #aaa;
    font-size: 10px;
    display: block;
    margin-bottom: 2px;
}

.odd-value {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

/* Champions League styling */
.champions-league .league-icon {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
}

/* Europa League styling */
.europa-league .league-icon {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
}

/* Elite Club Friendlies styling */
.elite-friendlies .league-icon {
    background: linear-gradient(45deg, #10b981, #34d399);
}

/* Team logo variations */
.team-logo.arsenal { background: linear-gradient(45deg, #dc2626, #ef4444); }
.team-logo.rb-salzburg { background: linear-gradient(45deg, #dc2626, #ffffff); }
.team-logo.villarreal { background: linear-gradient(45deg, #fbbf24, #f59e0b); }
.team-logo.bruges { background: linear-gradient(45deg, #1e40af, #3b82f6); }
.team-logo.rigas { background: linear-gradient(45deg, #059669, #10b981); }

@media (max-width: 768px) {
    .match-card {
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    .match-card {
        min-width: 240px;
        padding: 12px;
    }

    .team-name {
        font-size: 12px;
    }
}

.bonuses-container {
    max-width: 1400px;
    margin: 40px auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.bonuses-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.bonuses-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.bonuses-title {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ffb347, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonuses-subtitle {
    color: #b8c5d1;
    font-size: 16px;
    font-weight: 400;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.bonus-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffd700, #ff6b35);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.bonus-card:hover::before {
    transform: translateX(0);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.bonus-card.featured {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    transform: scale(1.02);
}

.bonus-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 0 15px 0 15px;
    letter-spacing: 1px;
}

.bonus-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.bonus-amount {
    font-size: 28px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bonus-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.bonus-description {
    color: #b8c5d1;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.bonus-terms {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.bonus-term {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: #e1e8ed;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-button {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.bonus-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.bonus-expiry {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.sports-icons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.sport-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #b8c5d1;
}

@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .bonuses-title {
        font-size: 24px;
    }

    .bonus-card {
        padding: 20px;
    }

    .bonus-terms {
        flex-direction: column;
        gap: 10px;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

.bonus-card.featured {
    animation: glow 2s ease-in-out infinite;
}

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #b8c5d1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #b8c5d1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.app-downloads {
    display: flex;
    gap: 15px;
}

.app-download {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-download:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.app-icon {
    font-size: 24px;
}

.app-text {
    display: flex;
    flex-direction: column;
}

.app-store {
    font-size: 10px;
    color: #b8c5d1;
}

.app-name {
    font-size: 14px;
    font-weight: 600;
}

.footer-column {
    min-width: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8c5d1;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-text {
    color: #b8c5d1;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #b8c5d1;
}

.newsletter-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.newsletter-button {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-legal a {
    color: #b8c5d1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffd700;
}

.footer-payments {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-method {
    width: 45px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: #fff;
    transform: translateY(-2px);
}

.footer-licenses {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.license-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    color: #b8c5d1;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.license-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 20px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 30px;
    }

    .app-downloads {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .footer-payments {
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-title {
        font-size: 16px;
    }

    .app-downloads {
        flex-direction: column;
        align-items: center;
    }

    .footer-licenses {
        flex-direction: column;
        gap: 10px;
    }
}

.hero-banner {
    min-height: 70vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #2d3e50 50%, #34495e 75%, #2c3e50 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 15% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 85% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '🔥';
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    color: #b8c5d1;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e1e8ed;
    font-size: 16px;
    font-weight: 500;
}

.hero-feature::before {
    content: '✓';
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.hero-button::after {
    content: '⚡';
    font-size: 20px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0) translateY(0) rotate(45deg); }
}

.sports-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
}

.sport-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-icon:hover {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}

.stat-value {
    color: #ffd700;
    font-weight: 700;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: rgba(255, 215, 0, 0.3);
    font-size: 20px;
    animation: float 4s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 1s; }
.floating-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.floating-element:nth-child(4) { top: 40%; right: 30%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Tablet and Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 85vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        justify-content: center;
        gap: 20px;
    }

    .hero-graphic {
        height: 300px;
    }

    .sports-icons {
        padding: 30px;
        gap: 15px;
    }

    .sport-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-button {
        padding: 16px 28px;
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-graphic {
        height: 250px;
    }

    .sports-icons {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 12px;
    }

    .sport-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stats-overlay {
        position: static;
        margin-top: 20px;
    }
}

.navbar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.navbar-item {
    position: relative;
}

.navbar-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    color: #e1e8ed;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.navbar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 215, 0, 0.2));
    transition: width 0.3s ease;
    z-index: -1;
}

.navbar-link:hover::before {
    width: 100%;
}

.navbar-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.navbar-link.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login {
    background: transparent;
    color: #e1e8ed;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.btn-signup {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    border: none;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #e1e8ed;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 40px 20px;
}

.mobile-menu-list {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-menu-item {
    margin-bottom: 5px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: #e1e8ed;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(10px);
}

.mobile-menu-actions {
    padding: 0 20px;
}

.mobile-menu-actions .navbar-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    font-size: 16px;
}

/* Hamburger Animation */
.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: #ffd700;
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
    background: #ffd700;
}

/* Overlay for mobile menu */
.mobile-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-menu {
        gap: 0;
    }

    .navbar-link {
        padding: 10px 15px;
        font-size: 14px;
    }

    .navbar-actions {
        gap: 10px;
    }

    .navbar-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .navbar-menu,
    .navbar-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 15px;
        height: 65px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .mobile-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .mobile-overlay {
        top: 65px;
        height: calc(100vh - 65px);
    }
}

/* Demo content for testing */
.demo-content {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.demo-content h2 {
    color: #333;
    margin-bottom: 20px;
}

.demo-content p {
    color: #666;
    line-height: 1.6;
}

.content-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Typography Styles */
.content-container h1 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.content-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 20px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
    z-index: 2;
}

.content-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffd700);
    border-radius: 2px;
}

.content-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffd700;
    margin: 30px 0 15px 0;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.content-container h4 {
    font-size: 20px;
    font-weight: 600;
    color: #e1e8ed;
    margin: 25px 0 12px 0;
    position: relative;
    z-index: 2;
}

.content-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #b8c5d1;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 2;
}

.content-container p:last-child {
    margin-bottom: 0;
}

.content-container p strong {
    color: #ffffff;
    font-weight: 600;
}

/* Links */
.content-container a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.content-container a:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

/* Lists */
.content-container ul,
.content-container ol {
    margin: 20px 0;
    padding-left: 30px;
    position: relative;
    z-index: 2;
}

.content-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #b8c5d1;
    margin-bottom: 8px;
    position: relative;
}

.content-container ul li {
    list-style: none;
}

.content-container ul li::before {
    content: '✓';
    position: absolute;
    left: -25px;
    top: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 14px;
}

.content-container ol li {
    counter-increment: item;
}

.content-container ol li::marker {
    color: #ffd700;
    font-weight: 600;
}

/* Tables */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.7);
}

.content-container table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
}

.content-container thead {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(255, 215, 0, 0.8) 100%);
}

.content-container th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.content-container th:first-child {
    border-radius: 12px 0 0 0;
}

.content-container th:last-child {
    border-radius: 0 12px 0 0;
}

.content-container td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e1e8ed;
    font-size: 15px;
    vertical-align: middle;
}

.content-container tbody tr {
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.content-container tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(2px);
}

.content-container tbody tr:last-child td {
    border-bottom: none;
}

.content-container tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.content-container tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

/* Special text formatting */
.content-container blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    font-style: italic;
    color: #e1e8ed;
    position: relative;
    z-index: 2;
}

.content-container code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.content-container pre {
    background: rgba(0, 0, 0, 0.5);
    color: #e1e8ed;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Highlight boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.highlight-box::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #1a1a2e;
    padding: 0 10px;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-container {
        padding: 30px 20px;
    }

    .content-container h1 {
        font-size: 36px;
    }

    .content-container h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 25px 15px;
        margin: 10px;
    }

    .content-container h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .content-container h2 {
        font-size: 24px;
        margin: 30px 0 15px 0;
    }

    .content-container h3 {
        font-size: 20px;
        margin: 25px 0 12px 0;
    }

    .content-container p {
        font-size: 15px;
        text-align: left;
        margin-bottom: 18px;
    }

    .content-container ul,
    .content-container ol {
        padding-left: 25px;
    }

    .table-wrapper {
        border-radius: 0;
    }

    .content-container table {
        min-width: 500px;
    }

    .content-container th,
    .content-container td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .content-container h1 {
        font-size: 28px;
    }

    .content-container h2 {
        font-size: 22px;
    }

    .content-container h3 {
        font-size: 18px;
    }

    .content-container p {
        font-size: 14px;
        line-height: 1.7;
    }

    .content-container table {
        min-width: 450px;
    }

    .content-container th,
    .content-container td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .highlight-box {
        padding: 15px;
        margin: 20px 0;
    }

    .content-container blockquote {
        padding: 15px 20px;
        margin: 25px 0;
    }
}

/* Print styles */
@media print {
    .content-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .content-container a {
        color: #333;
        text-decoration: underline;
    }

    .table-wrapper {
        overflow: visible;
    }
}