.corporative-color {
    color: #00ff7f;
}

#age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.98;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#age-gate-overlay-content {
    background: #000;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 20px #00ff7f;
}

#birthdate-input {
    margin: 1rem 0;
    padding: 0.5rem;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #00ff7f;
    background: #111;
}

#error-msg {
    color: red;
    display: none;
    margin-bottom: 1rem;
}

.custom-btn {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
}

#verify-age-btn {
    background: #00ff7f;
    color: #000;
}

#leave-btn {
    background: #222;
    color: #00ff7f;
}

.warning-text {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.age-gate-title {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.age-gate-subtitle {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.uppercase {
    text-transform: uppercase;
}