* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    min-height: 100vh;
    color: #2c2c2c;
}

h1, h2, h3, h4 {
    font-family: 'Exo 2', sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.age-check {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.age-check.hidden {
    display: none;
}

.age-box {
    background: white;
    border-radius: 25px;
    padding: 50px 45px;
    max-width: 540px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.age-symbol {
    font-size: 5em;
    margin-bottom: 20px;
}

.age-box h2 {
    font-size: 2.3em;
    margin-bottom: 20px;
    color: #ff6b35;
}

.age-box p {
    font-size: 1.15em;
    color: #555;
    margin-bottom: 15px;
}

.age-question {
    font-size: 1.4em;
    font-weight: 700;
    color: #2c2c2c;
    margin: 25px 0;
}

.age-choices {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.choice-yes, .choice-no {
    flex: 1;
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Exo 2', sans-serif;
}

.choice-yes {
    background: #10b981;
    color: white;
}

.choice-yes:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.choice-no {
    background: #ef4444;
    color: white;
}

.choice-no:hover {
    background: #dc2626;
    transform: translateY(-3px);
}

.top-bar {
    background: white;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-graphic {
    font-size: 2.5em;
    color: #ff6b35;
}

.logo-name {
    font-size: 2em;
    font-weight: 900;
    color: #2c2c2c;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 8px;
}

.nav-option {
    color: #555;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
}

.nav-option:hover {
    background: #fef3c7;
    color: #f59e0b;
}

.nav-option.active {
    background: #ff6b35;
    color: white;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-line {
    display: block;
    width: 30px;
    height: 3px;
    background: #ff6b35;
    border-radius: 3px;
}

.intro-banner {
    background: white;
    padding: 100px 25px;
    text-align: center;
}

.banner-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: #ff6b35;
    font-weight: 900;
}

.banner-lead {
    font-size: 1.5em;
    color: #555;
    line-height: 1.6;
}

.page-intro {
    background: white;
    padding: 80px 25px;
    text-align: center;
}

.page-intro h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #ff6b35;
    font-weight: 900;
}

.page-intro p {
    font-size: 1.3em;
    color: #555;
}

.alert-section {
    padding: 80px 0;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.alert-item {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 6px solid;
    transition: transform 0.3s;
}

.alert-item:hover {
    transform: translateY(-8px);
}

.red-alert {
    border-top-color: #ef4444;
}

.blue-alert {
    border-top-color: #3b82f6;
}

.orange-alert {
    border-top-color: #f59e0b;
}

.alert-badge {
    font-size: 4em;
    display: block;
    margin-bottom: 20px;
}

.alert-item h3 {
    font-size: 1.7em;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.alert-item p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

.story-section {
    background: white;
    padding: 80px 0;
}

.story-content h2 {
    font-size: 3em;
    margin-bottom: 30px;
    color: #ff6b35;
}

.story-content p {
    font-size: 1.15em;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

.showcase-game {
    padding: 80px 0;
}

.showcase-intro {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-intro h2 {
    font-size: 3em;
    margin-bottom: 15px;
    color: white;
}

.showcase-intro p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.95);
}

.showcase-player {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.game-player {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.perks-section {
    background: white;
    padding: 80px 0;
}

.perks-title {
    font-size: 3em;
    text-align: center;
    margin-bottom: 60px;
    color: #ff6b35;
}

.perks-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.perk-card {
    background: #fef3c7;
    padding: 35px;
    border-radius: 18px;
    transition: all 0.3s;
}

.perk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.perk-visual {
    font-size: 3em;
    margin-bottom: 20px;
}

.perk-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.perk-card p {
    color: #555;
    line-height: 1.7;
}

.mission-section {
    padding: 80px 0;
}

.mission-panel {
    background: white;
    padding: 60px 55px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mission-panel h2 {
    font-size: 3em;
    margin-bottom: 30px;
    color: #ff6b35;
}

.mission-panel p {
    font-size: 1.15em;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

.guide-section {
    background: white;
    padding: 70px 0;
}

.guide-section h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    text-align: center;
    color: #ff6b35;
}

.guide-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.guide-box {
    background: #fef3c7;
    padding: 30px;
    border-radius: 15px;
}

.guide-label {
    font-size: 1.4em;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 12px;
    font-family: 'Exo 2', sans-serif;
}

.guide-box p {
    color: #555;
    line-height: 1.7;
}

.gaming-area {
    padding: 70px 0;
}

.gaming-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.game-embed {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.reminder-section {
    background: white;
    padding: 70px 0;
}

.reminder-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #fef3c7;
    padding: 50px 40px;
    border-radius: 20px;
}

.reminder-box h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #ff6b35;
}

.reminder-box p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #555;
}

.text-section {
    padding: 70px 0;
}

.text-panel {
    background: white;
    padding: 60px 55px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.text-panel h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ff6b35;
}

.text-panel h2:first-child {
    margin-top: 0;
}

.text-panel p {
    font-size: 1.05em;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.update-stamp {
    margin-top: 55px;
    padding-top: 28px;
    border-top: 3px solid #ff6b35;
    font-style: italic;
    color: #888;
}

.site-footer {
    background: #2c2c2c;
    padding: 70px 0;
    color: #d1d5db;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-segment h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-segment p {
    line-height: 1.8;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ff6b35;
}

@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        background: white;
        flex-direction: column;
        width: 280px;
        padding: 30px 20px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.3s;
        height: calc(100vh - 80px);
    }

    .main-nav.active {
        right: 0;
    }

    .menu-btn {
        display: flex;
    }

    .banner-content h1 {
        font-size: 2.8em;
    }

    .page-intro h1 {
        font-size: 2.5em;
    }

    .game-player {
        height: 500px;
    }

    .game-embed {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .intro-banner {
        padding: 70px 20px;
    }

    .banner-content h1 {
        font-size: 2.2em;
    }

    .page-intro h1 {
        font-size: 2em;
    }

    .alert-grid {
        grid-template-columns: 1fr;
    }

    .perks-layout {
        grid-template-columns: 1fr;
    }

    .guide-boxes {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }

    .mission-panel {
        padding: 40px 30px;
    }

    .text-panel {
        padding: 40px 28px;
    }

    .age-box {
        padding: 35px 25px;
    }

    .age-choices {
        flex-direction: column;
    }
}
