* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f1419;
    --secondary-dark: #1a1f2e;
    --accent-cyan: #00d9ff;
    --accent-teal: #00ffc8;
    --text-light: #ffffff;
    --text-gray: #8b92a7;
    --card-bg: #1e2433;
    --nav-h: 64px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Site Navigation */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.site-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-nav-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.site-nav-home {
    display: none;
}

.site-nav-menu {
    display: contents;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.site-nav-links a {
    position: relative;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-nav-links a:not(:last-child)::after {
    content: "•";
    position: absolute;
    left: calc(100% + 0.7rem);
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.55rem;
    color: var(--text-gray);
    opacity: 0.5;
    pointer-events: none;
}

.site-nav-links a:hover {
    color: var(--accent-cyan);
}

.site-nav-links a.site-nav-link-active {
    color: var(--accent-cyan);
}

@media (max-width: 700px) {
    .site-nav-inner {
        padding: 0.6rem 1rem;
    }

    .site-nav-logo-img {
        height: 22px;
    }

    .site-nav-links {
        display: none;
    }

    .site-nav-brand {
        gap: 0.9rem;
    }

    .site-nav-home {
        display: inline-flex;
        align-items: center;
        color: var(--text-gray);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 600;
        transition: color 0.2s ease;
    }

    .site-nav-home:hover {
        color: var(--accent-cyan);
    }
}

/* Mobile-only league links, rendered as a static bar right below the fixed header */
.mobile-league-nav {
    display: none;
}

@media (max-width: 700px) {
    .mobile-league-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: var(--nav-h) 1rem 0.9rem;
        background: rgba(15, 20, 25, 0.65);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-league-nav a {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        color: var(--text-gray);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 600;
        text-align: left;
        transition: color 0.2s ease;
    }

    .mobile-league-nav a::before {
        content: '';
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--text-gray);
        opacity: 0.6;
        flex-shrink: 0;
        transition: opacity 0.2s ease;
    }

    .mobile-league-nav a.site-nav-link-active {
        color: var(--accent-cyan);
    }

    .mobile-league-nav a.site-nav-link-active::before {
        background: var(--text-gray);
        opacity: 1;
    }
}

/* Language Switcher */
.lang-switch {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    display: flex;
    gap: 2px;
    background: rgba(15, 20, 25, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 3px;
    backdrop-filter: blur(10px);
}

.site-nav .lang-switch {
    position: static;
    flex-shrink: 0;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
}

.lang-btn {
    appearance: none;
    border: none;
    background: transparent;
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    width: 34px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--text-light);
}

.lang-btn.active {
    color: var(--accent-cyan);
}

@media (max-width: 480px) {
    .lang-switch {
        top: 0.75rem;
        right: 0.75rem;
    }

    .lang-btn {
        width: 30px;
        height: 28px;
        font-size: 0.72rem;
    }
}

/* Floating download CTA */
.scroll-cta {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 900;
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    color: #06131a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-cta.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.scroll-cta:hover {
    box-shadow: 0 14px 36px rgba(0, 217, 255, 0.45);
}

@media (max-width: 480px) {
    .scroll-cta {
        bottom: 2rem;
        padding: 0.8rem 1.4rem;
        font-size: 0.85rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
    padding-bottom: 12vh;
}

/* Stadium background image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

/* Dark overlay - stronger vignette */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 100% 60% at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Spotlight beams from top - stronger and more visible */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(155deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.12) 47%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.12) 53%, transparent 58%, transparent 100%),
        linear-gradient(135deg, transparent 0%, transparent 32%, rgba(255, 255, 255, 0.1) 37%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.1) 43%, transparent 48%, transparent 100%),
        linear-gradient(165deg, transparent 0%, transparent 47%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.14) 55%, rgba(255, 255, 255, 0.08) 58%, transparent 63%, transparent 100%),
        linear-gradient(145deg, transparent 0%, transparent 37%, rgba(255, 255, 255, 0.11) 42%, rgba(255, 255, 255, 0.16) 45%, rgba(255, 255, 255, 0.11) 48%, transparent 53%, transparent 100%),
        linear-gradient(125deg, transparent 0%, transparent 27%, rgba(255, 255, 255, 0.09) 32%, rgba(255, 255, 255, 0.13) 35%, rgba(255, 255, 255, 0.09) 38%, transparent 43%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Stadium spotlight container - not used but kept for compatibility */
.stadium-bg {
    display: none;
}

/* Animated particles container */
.hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero .particles-container > div {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 5px rgba(0, 217, 255, 0.2);
    animation: float-particles linear infinite;
}

@keyframes float-particles {
    0% {
        transform: translateY(-100px) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift));
        opacity: 0;
    }
}

.stadium-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
}

.hero-logo {
    width: 88px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 24px rgba(0, 217, 255, 0.4));
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.download-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-download {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.15);
}

.btn-download-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-download-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}

.btn-download:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-download--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.download-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.75rem;
}

.download-group .btn-download {
    justify-content: center;
}

.qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(0, 217, 255, 0.35);
    border-radius: 14px;
    backdrop-filter: blur(16px);
}

.qr-canvas canvas {
    display: block;
    border-radius: 6px;
}

.qr-card--soon .qr-canvas,
.qr-soon {
    width: 148px;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--text-gray);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.qr-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    letter-spacing: 0.01em;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-cyan);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Strip */
.stats-strip {
    position: relative;
    background: var(--secondary-dark);
    padding: 3.25rem 0;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-teal), transparent);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.stat-item {
    position: relative;
    flex: 1;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2.5rem;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.35));
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    margin-top: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .stats-strip {
        padding: 2.5rem 0;
    }

    .stat-item {
        padding: 0 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.4rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }
}

@media (max-width: 480px) {
    .stat-item {
        padding: 0 0.5rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-item + .stat-item::before {
        top: 15%;
        bottom: 15%;
    }
}

/* App Preview Section */
.app-preview {
    padding: 8rem 0;
    background: #151b26;
    position: relative;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle cx="30" cy="30" r="15" fill="none" stroke="rgba(0,217,255,0.18)" stroke-width="1"/><path d="M 30 15 Q 35 22 30 30 Q 25 22 30 15 M 15 30 Q 22 25 30 30 Q 22 35 15 30" stroke="rgba(0,217,255,0.18)" stroke-width="1" fill="none"/><circle cx="150" cy="80" r="12" fill="none" stroke="rgba(0,255,200,0.18)" stroke-width="1"/><path d="M 138 80 L 162 80 M 150 68 L 150 92 M 142 72 L 158 88 M 158 72 L 142 88" stroke="rgba(0,255,200,0.18)" stroke-width="1"/><ellipse cx="80" cy="150" rx="14" ry="14" fill="none" stroke="rgba(0,217,255,0.18)" stroke-width="1"/><path d="M 80 136 Q 85 143 80 150 M 80 150 Q 75 143 80 136" stroke="rgba(0,217,255,0.18)" stroke-width="1" fill="none"/></svg>');
    background-size: 200px 200px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.app-preview > .container {
    position: relative;
    z-index: 1;
}

.app-preview h2,
.features h2,
.contact h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.contact .section-subtitle {
    margin-bottom: 1rem;
}

.phone-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    perspective: 1000px;
}

.phone {
    width: 280px;
    height: 560px;
    background: linear-gradient(160deg, #babfc9, #8b909c);
    border-radius: 40px;
    padding: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 0.3s ease;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e2433 0%, #2a3142 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.phone-left .phone-screen {
    background-image: url("images/ss1.b431aaa3abbf.jpeg");
}

.phone-center .phone-screen {
    background-image: url("images/ss2.d8796994263a.jpeg");
}

.phone-right .phone-screen {
    background-image: url("images/ss3.09c371308112.jpeg");
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: transparent;
    border-radius: 0 0 20px 20px;
    z-index: 10;
    display: none;
}

.phone-left {
    transform: rotateY(15deg) scale(0.9);
}

.phone-right {
    transform: rotateY(-15deg) scale(0.9);
}

.phone-center {
    transform: scale(1.05);
    z-index: 2;
}

.phone-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(0, 217, 255, 0.4), transparent);
    filter: blur(30px);
}

.phone:hover {
    transform: scale(1.1) rotateY(0deg);
}

.phone-left:hover,
.phone-right:hover {
    opacity: 1;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--primary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(0, 255, 200, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact Section */
.about {
    padding: 7rem 0;
    background: var(--secondary-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-teal), transparent);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-teal), transparent);
}

.about .container {
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.about-text {
    flex: 1 1 55%;
}

.about-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

.about-phone-frame {
    width: 100%;
    max-width: 280px;
    padding: 5px;
    background: linear-gradient(160deg, #babfc9, #8b909c);
    border-radius: 34px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-image img {
    display: block;
    width: 100%;
    border-radius: 26px;
}

.about-tagline {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.5;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.about p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
}

.contact {
    padding: 8rem 0;
    background: #151b26;
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="180" height="180"><circle cx="40" cy="40" r="13" fill="none" stroke="rgba(0,217,255,0.16)" stroke-width="1.5"/><circle cx="40" cy="40" r="8" fill="none" stroke="rgba(0,217,255,0.16)" stroke-width="1"/><path d="M 40 27 L 40 53 M 27 40 L 53 40" stroke="rgba(0,217,255,0.16)" stroke-width="1"/><circle cx="130" cy="50" r="11" fill="none" stroke="rgba(0,255,200,0.16)" stroke-width="1.5"/><path d="M 130 39 Q 135 45 130 50 Q 125 45 130 39 M 119 50 Q 125 45 130 50 Q 125 55 119 50" stroke="rgba(0,255,200,0.16)" stroke-width="1" fill="none"/><ellipse cx="60" cy="130" rx="12" ry="12" fill="none" stroke="rgba(0,217,255,0.16)" stroke-width="1.5"/><path d="M 60 118 Q 65 124 60 130 M 60 130 Q 55 124 60 118 M 48 130 Q 54 125 60 130" stroke="rgba(0,217,255,0.16)" stroke-width="1" fill="none"/></svg>');
    background-size: 180px 180px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.contact > .container {
    position: relative;
    z-index: 1;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.email-link:hover::after {
    transform: scaleX(1);
}

.email-link:hover {
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 380px;
}

.footer-downloads {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-download-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-download-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-download-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}

.footer-download-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent-cyan);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-download {
        width: 100%;
        max-width: 300px;
    }

    .phone-mockups {
        flex-direction: column;
        gap: 2rem;
    }

    .phone {
        width: 60vw;
        height: 120vw;
        max-width: 240px;
        max-height: 480px;
    }

    .phone-left,
    .phone-right,
    .phone-center {
        transform: none;
        opacity: 1;
    }

    .phone:hover {
        transform: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .app-preview h2,
    .features h2,
    .contact h2 {
        font-size: 2rem;
    }
}

.competitions {
    padding: 80px 0;
    background: var(--secondary-dark);
}

.competitions .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.competitions h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.competitions-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 32px 0 16px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.competitions-carousel::-webkit-scrollbar {
    display: none;
}

.competitions-carousel.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.competitions-track {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: max-content;
}

.comp-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 28px;
    min-width: 220px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.comp-card:hover {
    border-color: rgba(0, 217, 255, 0.35);
    transform: translateY(-3px);
}

a.comp-card:has(.comp-sport.football) {
    border-width: 2px;
    border-color: rgba(0, 217, 255, 0.4);
}

a.comp-card:has(.comp-sport.basketball) {
    border-width: 2px;
    border-color: rgba(255, 160, 50, 0.4);
}

a.comp-card:has(.comp-sport.football):hover {
    border-color: rgba(0, 217, 255, 0.7);
}

a.comp-card:has(.comp-sport.basketball):hover {
    border-color: rgba(255, 160, 50, 0.7);
}

.comp-card-featured:has(.comp-sport.football) .comp-card-hint {
    color: var(--accent-cyan);
}

.comp-card-featured:has(.comp-sport.basketball) .comp-card-hint {
    color: #ffa032;
}

.comp-card-featured:has(.comp-sport.football) .comp-card-hint:hover {
    color: var(--accent-teal);
}

.comp-card-featured:has(.comp-sport.basketball) .comp-card-hint:hover {
    color: #ffb85c;
}

.comp-card-featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    scroll-snap-align: start;
}

.comp-card-featured .comp-card {
    scroll-snap-align: none;
}

.comp-card-hint {
    display: inline-block;
    text-decoration: none;
    color: var(--accent-cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.comp-card-hint:hover {
    color: var(--accent-teal);
}

.comp-sport {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.comp-sport-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #ffffff;
}

.comp-sport.football {
    color: var(--accent-cyan);
}

.comp-sport.basketball {
    color: #ffa032;
}

.comp-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

.comp-period {
    font-size: 13px;
    color: var(--text-gray);
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
}
