/**
 * 年龄验证弹窗样式
 * 
 * 为未满18岁提示弹窗提供样式支持
 */

/* 弹窗遮罩层 */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 弹窗容器 */
.age-verification-modal {
    background-color: #111111;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    padding:85px 90px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.3s ease-out;
}

/* 弹窗标题 */
.age-verification-modal h2 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top:  0;
    color: #ffffff;
    font-weight: 600;
}

/* 弹窗内容 */
.age-verification-modal p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #cccccc;
}

/* 按钮容器 */
.age-verification-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 70px;
}

/* 按钮基础样式 */
.age-verification-button {
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

/* 拒绝按钮 */
.age-verification-button.deny {
    color: #D1A75D ;
    background: none !important;
    border: 1px solid #D1A75D;
}

/* 禁止滚动 */
body.age-verification-active {
    overflow: hidden;
}

/* 弹窗动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media screen and (max-width: 480px) {
    .age-verification-modal {
        padding: 30px 20px;
        width: 85%;
        margin: 0 auto;
    }
    
    .age-verification-modal h2 {
        font-size: 20px;
    }
    
    .age-verification-modal p {
        font-size: 14px;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
    
    .age-verification-button {
        width: 100%;
        margin-bottom: 10px;
    }
}