.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    /* Black background */
    color: #FFD700;
    /* Yellow text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    padding: 20px;
}

.age-verification h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.age-verification p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.age-verification button {
    margin: 0 15px;
    padding: 12px 25px;
    font-size: 1em;
    font-weight: bold;
    border: 2px solid #FFD700;
    background-color: transparent;
    color: #FFD700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.age-verification button:hover {
    background-color: #FFD700;
    color: #000;
}

body {
    background-color: #121212;
    color: white;
}

.sidebar {
    background-color: #1f1f1f;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    padding-top: 20px;
    border-right: 1px solid rgb(158, 158, 158);
}

.sidebar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.sidebar a:hover {
    background-color: #333;
}

.main-content {
    margin-left: 200px;
}

.btn-yellow {
    background-color: #ffc107;
    color: black;
    border: none;
}

.carousel-item img {
    width: 100%;
    object-fit: cover;
}

.slide-text {
    margin: 0 auto;
    max-width: 800px;
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
    }

    .sidebar {
        position: relative;
        height: auto;
    }
}

.btn-yellow {
    background-color: #ffc107;
    color: black;
    border: none;
}

.footer {
    background-color: #1f1f1f;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

.footer a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-social i {
    color: #ffc107;
    cursor: pointer;
}

.footer-payments img,
.footer-logos img {
    height: 30px;
    object-fit: contain;
}