/* Full theme CSS (from original design) */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0d0525;
    color: #f0f0f0;
    background-image: linear-gradient(180deg, #0d0525 0%, #1a0b4a 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- Age Verification Pop-up --- */
#age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.age-gate-box {
    background-color: #120a33;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    border: 1px solid #ff00c8;
    box-shadow: 0 0 15px rgba(255, 0, 200, 0.4);
}

.age-gate-box h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    margin-top: 0;
}

.age-gate-box p {
    color: #c0c0c0;
    line-height: 1.6;
}

.age-gate-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#age-gate-yes {
    background-color: #ff00c8;
    color: white;
}

#age-gate-yes:hover {
    background-color: #ffffff;
    color: #ff00c8;
    box-shadow: 0 0 10px #ff00c8;
}

#age-gate-no {
    background-color: #333;
    color: #ccc;
}
#age-gate-no:hover {
    background-color: #555;
    color: white;
}


/* --- Main Content (Initially Hidden) --- */
#main-content {
    display: none; /* Hidden by default, shown with JS */
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Hero Section --- */
.hero {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    background: transparent;
    border: 2px solid #ff00c8;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 200, 0.5);
}

.cta-button:hover {
    background-color: #ff00c8;
    box-shadow: 0 0 25px rgba(255, 0, 200, 0.8);
}

/* --- Video Section --- */
.video-container {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Newsletter Section --- */
.newsletter-section {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.newsletter-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    background: transparent;
    border: none;
    border-bottom: 2px solid #555;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    flex-grow: 1;
    transition: border-color 0.3s ease;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: #888;
}

.newsletter-form input[type="email"]:focus {
    border-bottom-color: #ff00c8;
}

.newsletter-form button {
    background: none;
    border: none;
    color: #ff00c8;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px;
    transition: color 0.3s ease;
}

.newsletter-form button:hover {
    color: #fff;
}