body {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 215, 0, 0.18), transparent 40%),
        radial-gradient(circle at 82% 12%, rgba(40, 210, 130, 0.25), transparent 38%),
        linear-gradient(160deg, #005d28 0%, #007a33 48%, #0c9446 100%);
    font-family: 'League Spartan', sans-serif;
    font-size: 16px;
    text-align: center;
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 24px;
    margin: 0;
}

.page-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 16px auto;
    animation: rise-in 450ms ease-out;
}

h1 {
    font-size: clamp(32px, 6vw, 40px);
    font-weight: 900;
    margin: 0;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(1px);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group label {
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    opacity: 0.9;
}

.arrow {
    text-align: center;
    font-size: 28px;
    opacity: 0.7;
}

.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-btn {
    background: white;
    color: #007A33;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: clamp(15px, 2.2vw, 16px);
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.dropdown-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dropdown-btn.is-picked {
    background: #ffef9f;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    z-index: 10;
    margin-top: 8px;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-content a {
    color: #007A33;
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown-content.show {
    display: block;
}

.continue-box {
    display: block;
    width: 100%;
    margin: 8px auto;
    padding: 18px 36px;
    background: white;
    color: #007A33;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    border: none;
    font-size: clamp(16px, 2.5vw, 18px);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.continue-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.continue-box.is-ready {
    background: #ffe45f;
    box-shadow: 0 0 0 2px rgba(255, 228, 95, 0.4), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.info-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s;
}

.info-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 480px) {
    body {
        padding: 14px;
    }

    h1 {
        font-size: 30px;
    }
    
    .form-section {
        padding: 20px;
        gap: 16px;
    }

    .dropdown-btn,
    .continue-box {
        min-height: 48px;
    }

    .info-link {
        padding: 11px 14px;
        font-size: 13px;
    }
}

@keyframes rise-in {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


