@font-face {
    font-family: 'MumboSSK';
    src: url('../assets/fonts/MumboSSK-Bold.ttf') format('truetype');
}

.age-gate-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 100;
    color: #fff;
    font-family: 'MumboSSK', sans-serif;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.age-gate-overlay h2 {
    font-size: 2.5rem;
    margin: 0;
}

.age-gate-overlay p {
    font-size: 1.2rem;
    max-width: 400px;
}

.age-gate-buttons {
    display: flex;
    gap: 2rem;
}

.age-gate-buttons button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-family: 'MumboSSK', sans-serif;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.age-gate-buttons button:hover {
    background-color: #fff;
    color: #000;
}