/* Age verification modal styles */
.age-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.age-modal.hidden {
    display: none;
}

.age-modal__content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 2px solid #ff8c00;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: scale(0.8) translateY(-30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.age-modal__icon {
    font-size: 72px;
    margin-bottom: 24px;
    display: block;
}

.age-modal__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.age-modal__subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 24px;
}

.age-modal__text {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 32px;
}

.age-modal__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.age-modal__button {
    flex: 1;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.age-modal__button--yes {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: white;
}

.age-modal__button--yes:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff9e1a, #ff7a1a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.age-modal__button--no {
    background: #444444;
    color: #ffffff;
}

.age-modal__button--no:hover:not(:disabled) {
    background: #555555;
    transform: translateY(-2px);
}

.age-modal__button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.age-modal__warning {
    font-size: 12px;
    color: #ff8c00;
    margin-top: 20px;
    font-style: italic;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .age-modal__content {
        padding: 32px 24px;
        max-width: 100%;
        margin: 20px;
    }

    .age-modal__title {
        font-size: 24px;
    }

    .age-modal__text {
        font-size: 14px;
    }

    .age-modal__buttons {
        flex-direction: column;
    }

    .age-modal__button {
        width: 100%;
    }
}
