body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #121212;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 40px;
    max-width: 700px;
    animation: fadeIn 2s ease-in;
}

h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.5rem;
    letter-spacing: 6px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #ffffff;
}

.subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D4AF37;
    margin-bottom: 40px;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: #D4AF37;
    margin: 0 auto 40px;
    opacity: 0.6;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #888888;
    margin-bottom: 60px;
    font-weight: 300;
}

.btn-access {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #333;
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: all 0.5s ease;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.btn-access:hover {
    border-color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.05);
    cursor: pointer;
}

/* ---------- STILI DEL POP-UP ---------- */
.modal {
    display: none; /* Nascosto all'inizio */
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Sfondo scuro semitrasparente */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px); /* Sfocatura per un tocco premium */
}

.modal-content {
    background-color: #1a1a1a;
    padding: 40px;
    border: 1px solid #333;
    border-top: 2px solid #D4AF37;
    border-radius: 4px;
    text-align: center;
    position: relative;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-content h2 {
    font-family: 'Bodoni Moda', serif;
    color: #D4AF37;
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.modal-content input {
    width: 85%;
    padding: 12px;
    margin: 10px 0;
    background-color: #121212;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.modal-content input:focus {
    outline: none;
    border-color: #D4AF37;
}

.close-btn {
    color: #555;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #D4AF37;
}

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