* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #1e1e1e;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(30, 30, 30, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.modal-backdrop.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 50px 45px;
    border-radius: 18px;
    max-width: 540px;
    text-align: center;
    border: 3px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.modal-icon {
    font-size: 88px;
    margin-bottom: 24px;
}

.modal-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #ff6b35;
}

.modal-content p {
    font-size: 17px;
    margin-bottom: 34px;
    line-height: 1.8;
    color: #b8b8b8;
}

.modal-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-buttons button {
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid;
    border-radius: 9px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff6b35;
    color: #1e1e1e;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: #ff5722;
    border-color: #ff5722;
    transform: scale(1.06);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #ff3d00;
    border-color: #ff3d00;
}

.btn-secondary:hover {
    background: #ff3d00;
    color: white;
    transform: scale(1.06);
}

.site-nav {
    background: #2a2a2a;
    border-bottom: 3px solid #ff6b35;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 24px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
}

.brand-symbol {
    font-size: 42px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-burger span {
    width: 28px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 36px;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 6px 0;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
}

.hero-block {
    padding: 95px 0;
    text-align: center;
    background: linear-gradient(180deg, #1e1e1e 0%, #2a2a2a 50%, #1e1e1e 100%);
}

.hero-block h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 26px;
    color: #ff6b35;
    line-height: 1.1;
}

.hero-text {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 42px;
    color: #b8b8b8;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid #ff6b35;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
}

.game-display {
    padding: 80px 0;
    background: #1e1e1e;
}

.game-display h2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #ff6b35;
}

.game-box {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 38px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #ff6b35;
    box-shadow: 0 12px 45px rgba(255, 107, 53, 0.3);
}

.game-box iframe {
    width: 100%;
    height: 730px;
    display: block;
    border: none;
}

.cta-btn {
    display: inline-block;
    padding: 20px 52px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
    color: #1e1e1e;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    border-radius: 11px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(255, 107, 53, 0.6);
}

.highlights {
    padding: 80px 0;
    background: linear-gradient(180deg, #1e1e1e 0%, #2a2a2a 100%);
}

.highlight-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 34px;
}

.highlight-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 44px;
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: #ff6b35;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.card-icon {
    font-size: 72px;
    margin-bottom: 26px;
}

.highlight-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ff6b35;
}

.highlight-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #b8b8b8;
}

.important-info {
    padding: 80px 0;
    background: #1e1e1e;
}

.important-info h2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #ff6b35;
}

.info-blocks {
    display: grid;
    gap: 34px;
}

.info-block {
    background: rgba(42, 42, 42, 0.8);
    padding: 40px;
    border-radius: 16px;
    border-left: 6px solid #ff6b35;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.info-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ff6b35;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #b8b8b8;
}

.platform-numbers {
    padding: 80px 0;
    background: linear-gradient(180deg, #1e1e1e 0%, #2a2a2a 100%);
    text-align: center;
}

.platform-numbers h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #ff6b35;
}

.numbers-text {
    font-size: 19px;
    max-width: 940px;
    margin: 0 auto 52px;
    color: #b8b8b8;
    line-height: 1.7;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 46px;
    border-radius: 16px;
    border: 3px solid #ff6b35;
}

.stat-value {
    font-size: 52px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 18px;
    color: #b8b8b8;
}

.site-footer {
    background: #2a2a2a;
    border-top: 3px solid #ff6b35;
    padding: 58px 50px 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-section p {
    margin-bottom: 20px;
    color: #b8b8b8;
    line-height: 1.7;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #ff5722;
    padding-left: 6px;
}

.footer-legal {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
    color: #b8b8b8;
    font-size: 14px;
}

.page-intro {
    padding: 80px 0 55px;
    text-align: center;
    background: linear-gradient(180deg, #1e1e1e 0%, #2a2a2a 100%);
}

.page-intro h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 26px;
    color: #ff6b35;
}

.page-intro p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #b8b8b8;
}

.technical-specs {
    padding: 80px 0;
    background: #1e1e1e;
}

.technical-specs h2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #ff6b35;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 34px;
}

.spec-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 44px;
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.spec-icon {
    font-size: 72px;
    margin-bottom: 26px;
}

.spec-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ff6b35;
}

.spec-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #b8b8b8;
}

.legal-page {
    padding: 80px 0 55px;
    text-align: center;
    background: linear-gradient(180deg, #1e1e1e 0%, #2a2a2a 100%);
    border-bottom: 3px solid rgba(255, 107, 53, 0.3);
}

.legal-page h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #ff6b35;
}

.legal-updated {
    font-size: 16px;
    color: #b8b8b8;
    font-style: italic;
}

.legal-body {
    padding: 80px 0;
    background: #1e1e1e;
}

.legal-body .container {
    max-width: 1100px;
}

.legal-item {
    margin-bottom: 50px;
    background: rgba(42, 42, 42, 0.8);
    padding: 44px;
    border-radius: 16px;
    border-left: 6px solid #ff6b35;
}

.legal-item h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #ff6b35;
}

.legal-item p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #b8b8b8;
}

.legal-item p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 28px;
    }

    .nav-wrapper {
        padding: 20px 28px;
    }

    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 82px);
        background: #2a2a2a;
        flex-direction: column;
        padding: 40px 30px;
        gap: 24px;
        transition: right 0.3s ease;
        border-left: 3px solid #ff6b35;
        box-shadow: -6px 0 28px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-block h1 {
        font-size: 40px;
    }

    .hero-text {
        font-size: 18px;
    }

    .game-box iframe {
        height: 530px;
    }

    .highlight-row {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
