* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom right, #1c1c1c 0%, #2d2d2d 100%);
    color: #f0f0f0;
    line-height: 1.65;
}

.primary-header {
    background: linear-gradient(90deg, #1c1c1c 0%, #2d2d2d 100%);
    border-bottom: 3px solid #e74c3c;
    position: sticky;
    top: 0;
    z-index: 800;
    box-shadow: 0 3px 15px rgba(231, 76, 60, 0.25);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 3rem;
    max-width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.site-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #e74c3c;
    letter-spacing: 4px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #e74c3c;
    transition: 0.3s;
    border-radius: 2px;
}

.site-nav {
    display: flex;
    gap: 2.5rem;
}

.site-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.4rem 0;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s;
}

.site-nav a:hover {
    color: #e74c3c;
}

.site-nav a:hover::after {
    width: 100%;
}

.hero-zone {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.hero-slogan {
    font-size: 1.7rem;
    color: #ffe6e6;
    margin-bottom: 2.5rem;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.warnings-zone {
    padding: 4rem 2rem;
    background: #1c1c1c;
}

.content-box {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.zone-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #e74c3c;
    text-align: center;
    margin-bottom: 3rem;
}

.zone-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.warnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.warning-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid;
}

.warning-card.red-warning {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
}

.warning-card.blue-warning {
    border-left-color: #3498db;
    background: rgba(52, 152, 219, 0.08);
}

.warning-card.orange-warning {
    border-left-color: #e67e22;
    background: rgba(230, 126, 34, 0.08);
}

.warning-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.warning-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.warning-card p {
    line-height: 1.8;
    color: #c0c0c0;
}

.game-zone {
    padding: 4rem 2rem;
    background: #2d2d2d;
}

.zone-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.game-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #000;
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid #e74c3c;
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
}

.game-tags {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(231, 76, 60, 0.1);
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    border: 1px solid #e74c3c;
    font-size: 1.05rem;
}

.platform-zone {
    padding: 4rem 2rem;
    background: #1c1c1c;
}

.platform-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.platform-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #c0c0c0;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-box {
    background: rgba(231, 76, 60, 0.08);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.feature-symbol {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: #b0b0b0;
}

.process-zone {
    padding: 4rem 2rem;
    background: #2d2d2d;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.process-step {
    background: rgba(231, 76, 60, 0.08);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.process-marker {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.process-step p {
    color: #b0b0b0;
    line-height: 1.8;
}

.values-zone {
    padding: 4rem 2rem;
    background: #1c1c1c;
}

.values-statement {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(231, 76, 60, 0.1);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #e74c3c;
    text-align: center;
}

.values-statement h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.values-statement p {
    font-size: 1.15rem;
    line-height: 2;
    color: #c0c0c0;
}

.primary-footer {
    background: #0f0f0f;
    border-top: 3px solid #e74c3c;
    padding: 3rem 2rem 1rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #e74c3c;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e74c3c;
}

.footer-section p {
    color: #808080;
    line-height: 1.7;
}

.footer-credits {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(231, 76, 60, 0.3);
    color: #707070;
}

.gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.gate-modal.hidden {
    display: none;
}

.gate-content {
    background: linear-gradient(135deg, #2d2d2d 0%, #1c1c1c 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #e74c3c;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.4);
}

.gate-emblem {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.gate-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.gate-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.gate-disclaimer {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.gate-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.access-btn,
.block-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.access-btn {
    background: #e74c3c;
    color: #ffffff;
}

.access-btn:hover {
    background: #c0392b;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
}

.block-btn {
    background: #555;
    color: #f0f0f0;
}

.block-btn:hover {
    background: #666;
}

.play-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.play-banner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.banner-text {
    font-size: 1.4rem;
    color: #ffe6e6;
}

.play-game-zone {
    padding: 3rem 2rem;
    background: #1c1c1c;
}

.play-guide-zone {
    padding: 4rem 2rem;
    background: #2d2d2d;
}

.guide-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: rgba(231, 76, 60, 0.08);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.guide-card h4 {
    font-size: 1.4rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.guide-card p {
    color: #b0b0b0;
    line-height: 1.8;
}

.play-alerts-zone {
    padding: 4rem 2rem;
    background: #1c1c1c;
}

.alerts-panel {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(231, 76, 60, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid #e74c3c;
}

.alerts-panel h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.alerts-list {
    list-style-position: inside;
    font-size: 1.1rem;
    line-height: 2.2;
    color: #c0c0c0;
}

.legal-container {
    padding: 3rem 2rem;
    background: #1c1c1c;
    min-height: 100vh;
}

.legal-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #e74c3c;
    text-align: center;
    margin-bottom: 1rem;
}

.legal-date {
    text-align: center;
    font-style: italic;
    color: #808080;
    margin-bottom: 3rem;
}

.legal-segment {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.legal-segment h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.legal-segment p {
    margin-bottom: 1rem;
    line-height: 1.9;
    color: #c0c0c0;
}

.legal-segment ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.9;
    color: #b0b0b0;
}

.emphasis-segment {
    background: rgba(231, 76, 60, 0.1);
    border-left-color: #e74c3c;
}

.emphasis-para {
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        gap: 0;
    }

    .site-nav.active {
        left: 0;
    }

    .site-nav a {
        font-size: 1.5rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(231, 76, 60, 0.3);
    }

    .header-wrapper {
        padding: 1.4rem 1.5rem;
    }

    .hero-inner h2 {
        font-size: 3rem;
    }

    .hero-slogan {
        font-size: 1.4rem;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }

    .game-frame {
        height: 500px;
    }

    .warnings-grid {
        grid-template-columns: 1fr;
    }

    .platform-split {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }

    .footer-sections {
        grid-template-columns: 1fr;
    }

    .gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .gate-actions {
        flex-direction: column;
    }
}
