@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Roboto:wght@300;400;500;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-primary: #0a1628;
    --bg-secondary: #132743;
    --neon-orange: #f97316;
    --neon-blue: #0ea5e9;
    --pure-white: #ffffff;
    --gray-light: #94a3b8;
    --card-bg: rgba(19, 39, 67, 0.85);
    --border-glow: rgba(249, 115, 22, 0.4);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    min-height: 100vh;
    color: var(--pure-white);
    line-height: 1.7;
}

.nav-bar {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-orange);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 2rem;
}

.logo-area {
    font-family: 'Russo One', sans-serif;
    font-size: 1.6rem;
    color: var(--neon-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 15px var(--border-glow);
}

.logo-area img { width: 40px; height: 40px; }

.nav-items ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-items a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-items a:hover { color: var(--neon-orange); }

.mobile-btn {
    display: none;
    cursor: pointer;
}

.mobile-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--neon-orange);
    margin: 5px 0;
    transition: all 0.3s;
}

.mobile-btn.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.mobile-btn.active span:nth-child(2) { opacity: 0; }
.mobile-btn.active span:last-child { transform: rotate(-45deg) translate(6px, -6px); }

.content-wrap { padding-top: 75px; }

.hero-banner {
    padding: 5rem 2rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.1) 0%, transparent 60%);
}

.hero-banner h1 {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(1.9rem, 4.5vw, 3.5rem);
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.hero-banner p {
    font-size: 1.1rem;
    max-width: 780px;
    margin: 0 auto;
    color: var(--gray-light);
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.info-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.info-panel .ico { font-size: 2.5rem; margin-bottom: 1rem; }

.info-panel h3 {
    font-family: 'Russo One', sans-serif;
    color: var(--neon-orange);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.info-panel p { color: var(--gray-light); font-size: 0.9rem; }

.game-container {
    padding: 3rem 2rem;
    max-width: 1450px;
    margin: 0 auto;
}

.game-container h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.7rem;
    text-align: center;
    color: var(--neon-blue);
    margin-bottom: 2rem;
}

.game-frame {
    background: var(--card-bg);
    border: 2px solid var(--border-glow);
    border-radius: 16px;
    padding: 1rem;
}

.game-frame iframe {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 10px;
}

.content-block {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-block h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.4rem;
    color: var(--neon-orange);
    margin-bottom: 1rem;
}

.content-block p { color: var(--gray-light); margin-bottom: 1rem; }

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.f-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.75rem;
    border-top: 3px solid var(--neon-blue);
}

.f-card h3 {
    font-family: 'Russo One', sans-serif;
    color: var(--neon-blue);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.f-card p { color: var(--gray-light); font-size: 0.9rem; }

.page-text {
    padding: 6rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-text h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.2rem;
    color: var(--neon-blue);
    margin-bottom: 2rem;
}

.page-text h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    color: var(--neon-orange);
    margin: 2rem 0 0.75rem;
}

.page-text p, .page-text li { color: var(--gray-light); margin-bottom: 0.9rem; }
.page-text ul { padding-left: 1.5rem; }

.site-footer {
    background: rgba(10, 22, 40, 0.95);
    border-top: 2px solid var(--neon-orange);
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.help-section { margin-bottom: 1.5rem; }

.help-section h4 {
    font-family: 'Russo One', sans-serif;
    color: var(--neon-orange);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.help-section a {
    color: var(--gray-light);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.help-section a:hover { color: var(--neon-blue); }

.copyright { color: var(--gray-light); font-size: 0.85rem; }

.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.age-modal.hidden { display: none; }

.modal-box {
    background: var(--card-bg);
    border: 2px solid var(--neon-orange);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.modal-box h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.modal-box p { color: var(--gray-light); margin-bottom: 1.5rem; }

.modal-btns { display: flex; gap: 1rem; justify-content: center; }

.modal-btn {
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn.confirm {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-blue));
    color: white;
}

.modal-btn.confirm:hover { transform: scale(1.05); box-shadow: 0 5px 20px var(--border-glow); }

.modal-btn.deny {
    background: transparent;
    border: 1px solid var(--gray-light);
    color: var(--gray-light);
}

.modal-btn.deny:hover { border-color: var(--neon-orange); color: var(--neon-orange); }

@media (max-width: 900px) {
    .nav-items {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(10, 22, 40, 0.98);
        padding: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    .nav-items.open { transform: translateX(0); }
    .nav-items ul { flex-direction: column; text-align: center; gap: 1rem; }
    .mobile-btn { display: block; }
    .game-frame iframe { height: 450px; }
    .help-section a { display: block; margin: 0.4rem 0; }
}

@media (max-width: 600px) {
    .logo-area { font-size: 1.3rem; }
    .logo-area img { width: 34px; height: 34px; }
    .game-frame iframe { height: 350px; }
    .page-text { padding: 5rem 1.5rem 3rem; }
    .modal-box { padding: 2rem 1.5rem; }
    .modal-btns { flex-direction: column; }
}
