body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #e0e0e0;
    overflow-x: hidden;
}

#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.age-gate-content {
    max-width: 500px;
}

.age-gate-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.age-gate-btn {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.age-gate-btn:hover {
    background-color: #27ae60;
    transform: scale(1.05);
}

.age-gate-btn:active {
    transform: scale(0.98);
}

/* Ensure nothing else is visible when age gate is present */
body.locked {
    overflow: hidden;
}

.luxury-text-container {
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #d4af37; /* Gold */
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    border-left: 4px solid #d4af37;
    padding-left: 15px;
}

h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    color: #f0f0f0;
}

.resort-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.resort-details b {
    color: #d4af37;
}

.cta-container {
    text-align: center;
    margin-top: 60px;
    position: sticky;
    bottom: 20px;
    z-index: 101;
}

.enter-button {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.enter-button:hover {
    background: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.footer-info {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

.disclaimer-box {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 20px;
    margin-top: 40px;
    font-size: 0.85rem;
    border-radius: 4px;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hide game UI initially */
#game-ui, #crosshair {
    display: none;
}