* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background: #0a0a0a;
    color: #b8b8b8;
    line-height: 1.6;
}

.site-header {
    background: #1a1a1a;
    border-bottom: 3px solid #00ff88;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 1.8rem;
    color: #00ff88;
}

.logo-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #00ff88;
    letter-spacing: 2px;
}

.main-menu {
    display: flex;
    gap: 2.5rem;
}

.menu-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.menu-item:hover,
.menu-item.active {
    color: #00ff88;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: #00ff88;
    transition: all 0.3s;
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-block {
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    color: #00ff88;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-block h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 2.5rem;
}

.action-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #00ff88;
    color: #0a0a0a;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.action-cta:hover {
    background: #00dd77;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.7);
    transform: translateY(-2px);
}

.status-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #00ff88;
    margin: 3rem 0;
}

.status-item {
    background: #1a1a1a;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.status-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #707070;
    letter-spacing: 1px;
}

.status-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
    letter-spacing: 1px;
}

.intro-section {
    margin: 4rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.intro-block {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 2.5rem;
}

.block-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #00ff88;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.intro-block h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.intro-block p {
    margin-bottom: 1rem;
}

.feature-bullets {
    list-style: none;
}

.feature-bullets li {
    padding: 0.7rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bullet {
    color: #00ff88;
    font-size: 1.2rem;
}

.game-section {
    margin: 4rem 0;
    text-align: center;
}

.section-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #00ff88;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.game-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.game-box {
    background: #1a1a1a;
    border: 2px solid #00ff88;
    padding: 1rem;
    margin-bottom: 1rem;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
}

.game-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
}

.footer-tag {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #00ff88;
    letter-spacing: 1px;
}

.footer-sep {
    color: #2a2a2a;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.info-card {
    background: #1a1a1a;
    border-left: 4px solid;
    padding: 2rem;
}

.primary-card {
    border-color: #00ff88;
}

.secondary-card {
    border-color: #00ccff;
}

.tertiary-card {
    border-color: #ff0088;
}

.card-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: inherit;
}

.primary-card .card-tag {
    color: #00ff88;
}

.secondary-card .card-tag {
    color: #00ccff;
}

.tertiary-card .card-tag {
    color: #ff0088;
}

.info-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.responsibility-block {
    margin: 4rem 0;
}

.resp-content {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.resp-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.play-header {
    padding: 4rem 0;
    text-align: center;
}

.play-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    color: #00ff88;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.play-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.play-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
}

.play-area {
    margin: 3rem 0;
}

.play-container {
    background: #1a1a1a;
    border: 2px solid #00ff88;
    padding: 1rem;
}

.play-frame {
    width: 100%;
    height: 700px;
    border: none;
}

.tech-specs {
    margin: 4rem 0;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.spec-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 2rem;
}

.spec-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: #00ff88;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.spec-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.alert-block {
    margin: 4rem 0;
}

.alert-content {
    background: rgba(255, 0, 136, 0.1);
    border: 2px solid #ff0088;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.alert-icon {
    font-size: 3rem;
    color: #ff0088;
}

.alert-text h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0088;
    margin-bottom: 0.8rem;
}

.doc-container {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 3rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.doc-header {
    margin-bottom: 3rem;
}

.doc-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.doc-meta {
    font-family: 'Rajdhani', sans-serif;
    color: #707070;
    letter-spacing: 1px;
}

.doc-section {
    margin-bottom: 2.5rem;
}

.doc-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.site-footer {
    background: #1a1a1a;
    border-top: 3px solid #00ff88;
    margin-top: 5rem;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-block h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-badge {
    color: #00ff88;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin-top: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00ff88;
}

.footer-bar {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    color: #707070;
}

.access-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.access-screen.hidden {
    display: none;
}

.access-panel {
    background: #1a1a1a;
    border: 3px solid #00ff88;
    max-width: 600px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.access-header {
    background: #00ff88;
    padding: 2rem;
    text-align: center;
}

.access-icon {
    font-size: 4rem;
    color: #0a0a0a;
}

.access-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.access-body {
    padding: 2rem;
}

.access-main {
    margin-bottom: 2rem;
}

.age-requirement {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.req-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.req-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    letter-spacing: 1px;
}

.access-info {
    color: #b8b8b8;
    font-size: 0.95rem;
}

.access-controls {
    padding: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.ctrl-btn {
    padding: 1rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s;
}

.ctrl-btn.grant {
    background: #00ff88;
    border-color: #00ff88;
    color: #0a0a0a;
}

.ctrl-btn.grant:hover {
    background: #00dd77;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.ctrl-btn.deny {
    background: transparent;
    border-color: #707070;
    color: #b8b8b8;
}

.ctrl-btn.deny:hover {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 968px) {
    .menu-btn {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s;
        border-bottom: 3px solid #00ff88;
    }

    .main-menu.active {
        left: 0;
    }

    .menu-item {
        padding: 1rem 0;
        border-bottom: 1px solid #2a2a2a;
    }

    .hero-block h1 {
        font-size: 2.5rem;
    }

    .status-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .info-blocks {
        grid-template-columns: 1fr;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .play-header h1 {
        font-size: 2.5rem;
    }

    .game-embed {
        height: 400px;
    }

    .play-frame {
        height: 500px;
    }

    .access-panel {
        margin: 1rem;
    }

    .access-controls {
        flex-direction: column;
    }

    .alert-content {
        flex-direction: column;
    }

    .doc-container {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
