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

:root {
    /* Primary colors */
    --color-fun-green: #007C3E;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Grayscale */
    --color-gray-alto: #D2D2D2;
    --color-gray: #8E8E8E;
    --color-gray-mine-shaft: #4A4A4A;

    /* Secondary colors */
    --color-green-pea: #1D5632;
    --color-apple: #4E9D2D;
    --color-conifer: #A4D55D;
    --color-yellow-green: #D4EB8D;

    /* Special */
    --color-stripe-green-2023: #1BA741;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
    background: var(--color-green-pea);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Diagonal stripe background like FCSG jerseys */
body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(27,167,65,.08) 40px,
        rgba(27,167,65,.08) 80px
    );
    pointer-events: none;
}

.landing {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.landing-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

.logo {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 10px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,.3);
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 1.1rem;
    color: var(--color-conifer);
    margin-bottom: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.landing-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.landing-btn {
    display: block;
    padding: 1.2rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: all 0.15s ease;
    min-height: 56px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.landing-btn:active { transform: scale(0.97); }

.landing-btn-primary {
    background: var(--color-white);
    color: var(--color-green-pea);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.landing-btn-primary:hover {
    box-shadow: 0 6px 30px rgba(0,0,0,.3);
    transform: translateY(-2px);
}

.landing-btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,.35);
}

.landing-btn-secondary:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.6);
}
