/* Age Verification Popup */
.gb-age-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;
    backdrop-filter: blur(5px);
}

.gb-age-modal {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.gb-age-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ec4899; /* Neon Pink */
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.gb-age-modal p {
    color: #f8fafc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gb-age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gb-btn-yes, .gb-btn-no {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.gb-btn-yes {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}

.gb-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
}

.gb-btn-no {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #94a3b8;
}

.gb-btn-no:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}
