/* GLOBAL BACKGROUND & BASE STYLES */
* { 
    box-sizing: border-box; 
}

body { 
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; 
    margin: 0; 
    padding: 0; 
    color: white;
    line-height: 1.6;
    background: rgb(30, 30, 30);
    overflow-x: hidden;
}

#wrapwrap {
    min-height: 100vh;
    background: rgb(30, 30, 30);
}

.adventure-cinema-page {
    background: rgb(30, 30, 30);
    min-height: 100vh;
    position: relative;
}

/* Loading state */
.loading-spinner {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Basic button styles */
.mega-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ffd700;
    color: #0d1b2a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mega-cta-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Page not found styles */
.page-not-found {
    text-align: center;
    padding: 100px 20px;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-not-found h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.page-not-found p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}
