@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --savanna-orange: #ff8c42;
    --wild-yellow: #ffd700;
    --earth-brown: #8b4513;
    --safari-tan: #d2b48c;
    --grass-green: #6b8e23;
    --sunset-red: #cd5c5c;
    --sand: #f4a460;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, #ff8c42, #d2691e, #8b4513);
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.95), rgba(205, 92, 92, 0.95));
    padding: 2rem 3rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.header-flex {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
}

.logo-emoji {
    font-size: 3.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-area h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--wild-yellow);
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.primary-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    transition: all 0.3s;
}

.primary-nav a:hover {
    background: var(--wild-yellow);
    color: var(--earth-brown);
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    background: var(--savanna-orange);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin: 6px 0;
    transition: 0.3s;
}

.main-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.title-section {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.title-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--wild-yellow);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.title-section p {
    font-size: 1.5rem;
    color: var(--safari-tan);
    font-weight: 300;
}

.important-notice {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(205, 92, 92, 0.25));
    border: 4px solid var(--sunset-red);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.important-notice h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--wild-yellow);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.important-notice p {
    font-size: 1.2rem;
    line-height: 2;
}

.two-column {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.content-panel {
    background: rgba(139, 69, 19, 0.5);
    border: 3px solid var(--sand);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.content-panel h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3rem;
    color: var(--wild-yellow);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.content-panel h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--savanna-orange);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-panel p {
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: #f5f5f5;
}

.content-panel ul {
    list-style: none;
    padding: 0;
}

.content-panel li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
}

.content-panel li::before {
    content: "🦴";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 15px;
    background: #000;
    margin-top: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.side-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-widget {
    background: rgba(139, 69, 19, 0.5);
    border: 3px solid var(--grass-green);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.info-widget h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--wild-yellow);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.info-widget p {
    line-height: 1.8;
    color: #f5f5f5;
}

.full-width-panel {
    background: rgba(139, 69, 19, 0.5);
    border: 3px solid var(--sand);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
}

.full-width-panel h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--wild-yellow);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.page-footer {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.95), rgba(205, 92, 92, 0.95));
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 4px solid var(--wild-yellow);
}

.footer-content {
    max-width: 1700px;
    margin: 0 auto;
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--wild-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--safari-tan);
}

.age-verify {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.98);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.age-verify.show {
    display: flex;
}

.verify-box {
    background: linear-gradient(135deg, #8b4513, #cd5c5c);
    border: 5px solid var(--wild-yellow);
    border-radius: 30px;
    padding: 4rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 70px rgba(255, 215, 0, 0.6);
    position: relative;
}

.verify-box::before {
    content: '🦁';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
}

.verify-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--wild-yellow);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.verify-box p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.verify-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.verify-btn {
    padding: 1.3rem 3.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.btn-enter {
    background: var(--wild-yellow);
    color: var(--earth-brown);
}

.btn-enter:hover {
    background: var(--savanna-orange);
    transform: scale(1.1);
}

.btn-leave {
    background: var(--sunset-red);
    color: white;
}

.btn-leave:hover {
    background: #a52a2a;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .primary-nav ul {
        position: fixed;
        top: 95px;
        left: -100%;
        flex-direction: column;
        background: rgba(139, 69, 19, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s;
        border-top: 4px solid var(--wild-yellow);
    }
    
    .primary-nav ul.active {
        left: 0;
    }
    
    .title-section h1 {
        font-size: 3rem;
    }
    
    .main-container {
        padding: 2rem 1rem;
    }
    
    .game-iframe {
        height: 450px;
    }
}
