/* Age Gate Modal Styling */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-gate-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.age-gate-modal {
    background-color: #1a1a1a;
    border: 2px solid #ff3333;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.15);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.age-gate-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.age-gate-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    color: #ff3333;
    text-transform: uppercase;
}

.age-gate-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #cccccc;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.age-gate-btn {
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.age-gate-btn.primary {
    background-color: #ff3333;
    color: #ffffff;
    border: none;
}

.age-gate-btn.primary:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.age-gate-btn.secondary {
    background-color: transparent;
    color: #aaaaaa;
    border: 1px solid #555555;
}

.age-gate-btn.secondary:hover {
    background-color: #333333;
    color: #ffffff;
}

.age-gate-footer {
    font-size: 12px;
    color: #666666;
    margin: 0;
}
