* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
    padding: 20px;
    color: #ffffff;
}

.age-gate-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-gate-card {
    background: transparent;
    border-radius: 0;
    padding: 50px 60px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: none;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    height: 150px;
    width: auto;
}

h1 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.welcome-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.confirm-btn {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 18px 60px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.confirm-btn:hover {
    background: #e0e0e0;
    transform: scale(1.02);
}

.reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 18px;
}

.reviews-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 480px) {
    .age-gate-card {
        padding: 40px 20px;
    }

    h1 {
        font-size: 28px;
    }

    .welcome-text {
        font-size: 16px;
    }

    .logo img {
        height: 122px;
    }

    .confirm-btn {
        padding: 16px 40px;
        font-size: 18px;
    }
}
