* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bebas Neue', sans-serif;
    background: #1a1f15;
    color: #e8f0e0;
    line-height: 1.55;
}

.site-container {
    width: 100%;
}

.main-header {
    background: linear-gradient(to right, #1a1f15, #2d3a25);
    padding: 2rem 0;
    border-bottom: 4px solid #c8d800;
    position: sticky;
    top: 0;
    z-index: 8000;
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 3rem;
    font-weight: 900;
    color: #c8d800;
    text-decoration: none;
    letter-spacing: 6px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-menu a {
    color: #e8f0e0;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #c8d800;
    transition: width 0.3s;
}

.main-menu a:hover {
    color: #c8d800;
}

.main-menu a:hover::after {
    width: 100%;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon div {
    width: 35px;
    height: 4px;
    background: #c8d800;
    margin: 8px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hero-area {
    padding: 7rem 70px;
    background: linear-gradient(135deg, #2d3a25 0%, #1a1f15 100%);
    border-bottom: 6px solid #c8d800;
    text-align: center;
}

.hero-area h1 {
    font-size: 5rem;
    color: #c8d800;
    margin-bottom: 2.5rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

.hero-area p {
    font-size: 1.6rem;
    color: #b8c8a0;
    max-width: 1050px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 1px;
}

.info-card {
    margin: 6rem 70px;
    padding: 4rem;
    background: #2d3a25;
    border: 4px solid #c8d800;
    box-shadow: 8px 8px 0 rgba(200, 216, 0, 0.2);
}

.info-card h2 {
    font-size: 3.5rem;
    color: #c8d800;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.info-card ul {
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card li {
    padding: 1.8rem 2rem;
    margin-bottom: 1.5rem;
    background: rgba(200, 216, 0, 0.1);
    border-left: 8px solid #c8d800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.info-card li:hover {
    background: rgba(200, 216, 0, 0.2);
    transform: translateX(12px);
}

.game-section {
    margin: 6rem 70px;
}

.game-section h2 {
    font-size: 4rem;
    text-align: center;
    color: #c8d800;
    margin-bottom: 3.5rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.game-frame {
    background: #2d3a25;
    padding: 3rem;
    border: 6px solid #c8d800;
    box-shadow: 10px 10px 0 rgba(200, 216, 0, 0.2);
}

.game-frame iframe {
    width: 100%;
    height: 820px;
    border: none;
}

.content-area {
    margin: 6rem 70px;
    padding: 4.5rem 4rem;
    background: linear-gradient(to bottom, #2d3a25, #1a1f15);
}

.content-area h2 {
    font-size: 3.3rem;
    color: #c8d800;
    margin-bottom: 2.8rem;
    text-align: center;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.content-area p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #b8c8a0;
    max-width: 1250px;
    margin: 0 auto 2.5rem;
    letter-spacing: 0.5px;
}

.site-footer {
    background: #0f120d;
    padding: 5rem 70px;
    margin-top: 7rem;
    border-top: 6px solid #c8d800;
}

.footer-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.footer-content h3 {
    font-size: 2.8rem;
    color: #c8d800;
    margin-bottom: 3rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 4rem;
    list-style: none;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #b8c8a0;
    text-decoration: none;
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 700;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #c8d800;
}

.footer-note {
    color: #6a7560;
    font-size: 1.1rem;
    margin-top: 3rem;
    letter-spacing: 1px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.93);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #2d3a25 0%, #1a1f15 100%);
    padding: 5rem;
    border: 6px solid #c8d800;
    text-align: center;
    max-width: 700px;
    box-shadow: 15px 15px 0 rgba(200, 216, 0, 0.3);
}

.modal-content h2 {
    font-size: 3.2rem;
    color: #c8d800;
    margin-bottom: 2.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.modal-content p {
    font-size: 1.4rem;
    color: #b8c8a0;
    margin-bottom: 4rem;
    line-height: 1.7;
    letter-spacing: 1px;
}

.modal-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.modal-buttons button {
    padding: 1.6rem 3.5rem;
    font-size: 1.5rem;
    border: 3px solid #c8d800;
    background: rgba(200, 216, 0, 0.15);
    color: #c8d800;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    transition: all 0.3s;
}

.modal-buttons button:hover {
    background: #c8d800;
    color: #1a1f15;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
}

.page-content {
    max-width: 1450px;
    margin: 120px auto 0;
    padding: 5rem 70px;
}

.page-content h1 {
    font-size: 4.5rem;
    color: #c8d800;
    margin-bottom: 3rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.page-content h2 {
    font-size: 2.8rem;
    color: #c8d800;
    margin-top: 4rem;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.page-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #b8c8a0;
    margin-bottom: 2.3rem;
    letter-spacing: 0.5px;
}

.page-content ul, .page-content ol {
    margin-left: 4rem;
    margin-bottom: 3rem;
    color: #b8c8a0;
}

.page-content li {
    margin-bottom: 1.3rem;
    line-height: 1.7;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .main-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background: #1a1f15;
        width: 100%;
        padding: 3rem;
        transition: 0.3s;
        border-top: 4px solid #c8d800;
    }

    .main-menu.active {
        left: 0;
    }

    .header-inner {
        padding: 0 30px;
    }

    .brand-logo {
        font-size: 2.2rem;
    }

    .hero-area {
        padding: 5rem 30px;
    }

    .hero-area h1 {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .info-card,
    .game-section,
    .content-area {
        margin: 4rem 30px;
        padding: 3rem;
    }

    .game-frame iframe {
        height: 540px;
    }

    .page-content {
        padding: 4rem 30px;
    }

    .page-content h1 {
        font-size: 2.8rem;
    }

    .site-footer {
        padding: 4rem 30px;
    }
}
