@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #ffc107;
    --dark-gold: #d4a017;
    --black: #0d0d0d;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --red: #dc143c;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--black), var(--dark-gray));
    padding: 1.2rem 0;
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    transform: rotate(-5deg);
}

.site-logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: block;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
}

/* Split Screen Layout */
.split-container {
    display: flex;
    min-height: calc(100vh - 90px);
}

.split-left {
    flex: 1;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    flex: 1;
    background: var(--black);
    padding: 3rem;
    border-left: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Full Width Sections */
.full-section {
    background: var(--dark-gray);
    padding: 4rem 2rem;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(212, 160, 23, 0.1));
    border: 3px solid var(--gold);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.alert-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.alert-list {
    list-style: none;
}

.alert-list li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
}

.alert-list li:before {
    content: "🦁";
    position: absolute;
    left: 0;
    font-size: 2rem;
}

/* Game Section */
.game-section {
    background: var(--black);
    padding: 3rem;
    text-align: center;
    border: 3px solid var(--gold);
    margin: 2rem 0;
}

.game-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.game-section iframe {
    width: 100%;
    max-width: 900px;
    height: 650px;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
}

/* Feature Boxes */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: var(--black);
    border: 2px solid var(--gold);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: var(--dark-gray);
    border-width: 4px;
    transform: scale(1.05);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.feature-box p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Content Areas */
.content-block {
    background: var(--dark-gray);
    padding: 3rem;
    margin: 2rem 0;
    border-left: 5px solid var(--gold);
}

.content-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.content-block h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin: 2rem 0 1rem;
    letter-spacing: 1px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.content-block ul,
.content-block ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    margin: 0.8rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: var(--black);
    border-top: 3px solid var(--gold);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--dark-gold);
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.98);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    padding: 4rem;
    border: 4px solid var(--gold);
    max-width: 650px;
    margin: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.4);
}

.age-gate-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.age-gate-box p {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.age-gate-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.age-gate-buttons button {
    padding: 1.3rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
    transition: all 0.3s ease;
}

.btn-enter {
    background: var(--gold);
    color: var(--black);
}

.btn-enter:hover {
    background: var(--dark-gold);
    transform: scale(1.08);
}

.btn-exit {
    background: var(--red);
    color: var(--white);
}

.btn-exit:hover {
    background: #a00;
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: var(--black);
        transition: right 0.3s ease;
        padding: 5rem 0;
        border-left: 3px solid var(--gold);
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--dark-gray);
    }

    .split-container {
        flex-direction: column;
    }

    .split-right {
        border-left: none;
        border-top: 3px solid var(--gold);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .game-section iframe {
        height: 450px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
