@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --secondary-yellow: #F7931E;
    --accent-red: #E63946;
    --light-cream: #FFF8F0;
    --dark-gray: #2D3142;
    --medium-gray: #4F5D75;
    --highlight: #FFD23F;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, var(--light-cream) 0%, #FFE5D9 100%);
    color: var(--dark-gray);
    min-height: 100vh;
    margin: 0;
}

/* Top Navigation Bar */
.top-nav {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-red) 100%);
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.desktop-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.desktop-menu li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-red) 100%);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.mobile-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Page Header */
.page-header {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--medium-gray);
    font-weight: 400;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    border-left: 5px solid var(--primary-orange);
}

.content-card h2 {
    color: var(--accent-red);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content-card h3 {
    color: var(--primary-orange);
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card p {
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 1.2rem;
}

.content-card ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-card ul li {
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
}

/* Alert Boxes */
.alert-box {
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE69C 100%);
    border: 3px solid var(--secondary-yellow);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.alert-box h3 {
    color: var(--accent-red);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.alert-box p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.alert-box.danger {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFCCCC 100%);
    border-color: var(--accent-red);
}

/* Game Section */
.game-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 10px 35px rgba(230, 57, 70, 0.2);
    border: 3px solid var(--secondary-yellow);
}

.game-section h2 {
    color: var(--accent-red);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.game-section iframe {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-red) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px 20px 0 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 1rem;
}

.site-footer ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.site-footer ul li a:hover {
    color: var(--highlight);
    padding-left: 10px;
}

.site-footer p {
    margin-top: 2rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-box {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 5px solid var(--primary-orange);
}

.age-modal-box h2 {
    color: var(--accent-red);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.age-modal-box p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-modal-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-red));
    color: white;
}

.btn-confirm:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.btn-decline {
    background: var(--medium-gray);
    color: white;
}

.btn-decline:hover {
    background: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .container {
        padding: 1rem;
    }
    
    .page-header {
        padding: 2rem 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .game-section iframe {
        height: 500px;
    }
    
    .age-modal-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
}
