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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: 
        linear-gradient(45deg, rgba(16, 185, 129, 0.1) 0%, transparent 25%),
        linear-gradient(-45deg, rgba(59, 130, 246, 0.08) 0%, transparent 25%),
        linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dynamic sports field lines */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(16, 185, 129, 0.1) 100px,
            rgba(16, 185, 129, 0.1) 102px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(16, 185, 129, 0.05) 100px,
            rgba(16, 185, 129, 0.05) 102px
        );
    animation: fieldMove 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Stadium lights effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 400px at 50% 0%, rgba(16, 185, 129, 0.15), transparent 50%),
        radial-gradient(ellipse 600px 300px at 20% 100%, rgba(59, 130, 246, 0.1), transparent 50%),
        radial-gradient(ellipse 600px 300px at 80% 100%, rgba(34, 197, 94, 0.1), transparent 50%);
    animation: lightsFlicker 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}


.container {
    max-width: 700px;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

header {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    width: auto;
    height: 120px;
    max-width: 200px;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: logoFloat 6s ease-in-out infinite;
    object-fit: contain;
}

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

@keyframes fieldMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

@keyframes lightsFlicker {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.75rem;
    font-weight: 400;
    color: #cbd5e1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.coming-soon {
    font-size: 0.95rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    padding: 0.6rem 1.8rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 8px;
    z-index: -1;
}

.email-capture {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(16, 185, 129, 0.3);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.email-capture p {
    margin-bottom: 2rem;
    color: #e5e7eb;
    font-size: 1.125rem;
}

#email-form {
    display: flex;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s;
}

input[type="email"]:focus {
    outline: none;
    border-color: #22c55e;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

input[type="email"]::placeholder {
    color: #6b7280;
}

button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 
        0 4px 14px rgba(16, 185, 129, 0.4),
        0 0 0 1px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

button:active {
    transform: translateY(0);
}

.success-message {
    color: #22c55e;
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 1.125rem;
}

footer {
    color: #6b7280;
    font-size: 0.875rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .logo {
        height: 140px;
    }
    
    .email-capture {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .logo {
        height: 120px;
    }
    
    .coming-soon {
        font-size: 0.875rem;
        padding: 0.4rem 1.2rem;
    }
    
    #email-form {
        flex-direction: column;
    }
    
    button {
        width: 100%;
    }
    
    input[type="email"] {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .email-capture {
        padding: 1.5rem 1rem;
    }
}