/* Capodanno landing styles */

.capodanno-hero {
    min-height: 100vh;
    padding: 120px 0 100px 0;
    background: radial-gradient(circle at 20% 20%, rgba(254,205,63,0.12) 0, rgba(254,205,63,0) 32%),
                radial-gradient(circle at 80% 10%, rgba(164,76,207,0.14) 0, rgba(164,76,207,0) 34%),
                linear-gradient(135deg, #0d0d0f, #141622);
}

.capodanno-hero .lead-hero-content {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    padding: 32px 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.capodanno-hero .hero-title {
    color: var(--white);
}

.capodanno-hero .hero-subtitle {
    color: rgba(255,255,255,0.86);
}

.city-selector {
    display: inline-flex;
    gap: 12px;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.city-chip {
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.45);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--color-transition);
}

.city-chip:hover {
    border-color: rgba(254,205,63,0.5);
    color: var(--primary-yellow);
}

.city-chip.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-violet));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(74,145,242,0.35);
}

.capodanno-note {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 16px 18px;
    color: rgba(255,255,255,0.9);
    text-align: left;
    line-height: 1.5;
    width: 100%;
}

.capodanno-note strong {
    color: var(--primary-yellow);
}

.capodanno-links {
    margin-top: 6px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.capodanno-links a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.capodanno-links a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .capodanno-hero {
        padding: 140px 0 60px 0;
        min-height: auto;
    }
    .capodanno-hero .lead-hero-content {
        padding: 22px 18px;
    }
    .city-selector {
        width: 100%;
        justify-content: center;
    }
    .city-chip {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .capodanno-hero {
        padding: 120px 0 40px 0;
    }
    .city-selector {
        flex-direction: column;
        gap: 8px;
    }
}

/* Privacy checkbox styles */
.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.form-checkbox {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary-blue);
}

.form-checkbox-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
    font-weight: 400;
}

.form-checkbox-label a {
    color: var(--primary-yellow) !important;
    text-decoration: underline;
    transition: color 0.2s ease;
    font-weight: 500;
}

.form-checkbox-label a:hover {
    color: var(--white) !important;
}

.privacy-link {
    color: var(--primary-yellow) !important;
    text-decoration: underline;
    transition: color 0.2s ease;
    font-weight: 500;
}

.privacy-link:hover {
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .form-checkbox-label {
        font-size: 0.8rem;
    }
}








