/* ============================================================
   AGE GATE — Bombay Sapphire (svijetla tema)
   ============================================================ */

html.age-locked {
    overflow: hidden;
}
html.age-locked body {
    overflow: hidden;
}

#age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #eaf3f8;
    background-image:
        linear-gradient(135deg, #d6e7ee 0%, #eaf3f8 40%, #cfe4f2 100%),
        radial-gradient(circle at 20% 30%, rgba(87, 176, 220, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(46, 109, 180, 0.1) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a2b52;
    -webkit-font-smoothing: antialiased;
    overflow-y: auto;
}

.age-gate-inner {
    max-width: 480px;
    width: 100%;
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(46, 109, 180, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(26, 43, 82, 0.15);
}

.age-gate-brand {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(26, 43, 82, 0.12);
    display: flex;
    justify-content: center;
}

#age-gate h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: #1a2b52;
}

.age-gate-lead {
    font-size: 14px;
    color: #4a5b73;
    line-height: 1.6;
    margin-bottom: 28px;
}

.age-gate-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2e6db4;
    margin-bottom: 12px;
}

.age-gate-fields {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.age-gate-fields select {
    width: 100%;
    padding: 12px 8px;
    font-family: inherit;
    font-size: 15px;
    background: #ffffff;
    color: #1a2b52;
    border: 1px solid rgba(26, 43, 82, 0.2);
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232e6db4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.age-gate-fields select:focus {
    outline: none;
    border-color: #2e6db4;
    box-shadow: 0 0 0 2px rgba(46, 109, 180, 0.15);
}

.age-gate-fields select option {
    background: #ffffff;
    color: #1a2b52;
}

.age-gate-error {
    min-height: 20px;
    font-size: 13px;
    color: #d0342c;
    margin-bottom: 16px;
    line-height: 1.4;
}

.age-gate-btn {
    width: 100%;
    padding: 14px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #1a2b52;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.age-gate-btn:hover {
    background: #2e6db4;
    transform: translateY(-1px);
}

.age-gate-btn:active {
    transform: translateY(0);
}

.age-gate-footnote {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 43, 82, 0.1);
    font-size: 12px;
    color: #6b7a8d;
    line-height: 1.6;
}

.age-gate-footnote strong {
    display: block;
    margin-top: 6px;
    color: #2e6db4;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.age-gate-legal {
    margin-top: 12px;
    font-size: 11px;
    color: #8b98a8;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 480px) {
    .age-gate-inner {
        padding: 28px 20px;
    }
    #age-gate h1 {
        font-size: 22px;
    }
    .age-gate-lead {
        font-size: 13px;
    }
    .age-gate-fields select {
        font-size: 14px;
        padding: 11px 6px;
        padding-right: 24px;
    }
}
