.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add class for when body scroll is locked */
body.age-verification-active {
    overflow: hidden !important;
    height: 100vh !important;
    padding-right: 17px; /* Compensate for scrollbar disappearance */
}

.age-verification-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 650px;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}

.age-verification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.age-logo {
    max-width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.age-warning {
    color: #ff4444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

.age-disclaimer {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.date-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.date-label {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

.date-inputs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.date-inputs input {
    width: 70px;
    height: 40px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.date-inputs input:focus {
    border-color: #2ecc71;
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.date-inputs input.error {
    border-color: var(--eliq-red, #ff4444);
    animation: shake 0.5s;
}

.date-separator {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
}

#verify-age {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
    min-width: 150px;
}

.age-form {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

#verify-age:hover {
    background: #27ae60;
}

#verify-age.underage {
    background: var(--eliq-red, #ff4444) !important;
}

#verify-age.underage:hover {
    background: var(--eliq-red, #ff4444) !important;
    opacity: 0.8;
}

.age-error {
    color: var(--eliq-red, #ff4444);
    font-size: 0.9rem;
    font-weight: bold;
    animation: fadeIn 0.3s;
}

.age-form button {
    border-radius: 20px;
}

#redirect-google {
    background: gray;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.age-verification-content img{
  max-width: 300px !important;
}