/* 年齢確認ポップアップ */
#age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#age-verification-modal {
    background: #1a1a2e;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#age-verification-modal h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

#age-verification-modal .warning-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

#age-verification-modal p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

#age-verification-modal .highlight {
    color: #e94560;
    font-weight: bold;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-yes {
    background: #e94560;
    color: #fff;
}

.age-btn-yes:hover {
    background: #ff6b6b;
    transform: scale(1.05);
}

.age-btn-no {
    background: #333;
    color: #fff;
}

.age-btn-no:hover {
    background: #555;
}

#age-verification-modal .legal-text {
    font-size: 11px;
    color: #888;
    margin-top: 20px;
    line-height: 1.6;
}

/* 非表示クラス */
.age-verified #age-verification-overlay {
    display: none;
}
