/* General Setup */
body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Neon Pink Glow Effect */
.pink-glow {
    text-shadow: 0 0 15px rgba(219, 39, 119, 0.9);
}

/* The Pulsing Join Button */
.btn-main {
    background-color: #ffffff;
    color: #000000;
    padding: 1.25rem 3.5rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-main:hover {
    background-color: #db2777; /* Pink */
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(219, 39, 119, 0.6);
}

/* Age Gate Styling */
#age-gate {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-card {
    background: #0a0a0a;
    border: 1px solid #27272a;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 400px;
}
