@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #0a2e1c 0%, #041810 100%);
    color: #ecf5f0;
    min-height: 100vh;
    line-height: 1.7;
}

.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(4, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3px solid #2ecc71;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #2ecc71;
    text-decoration: none;
    letter-spacing: 4px;
}

.nav-links ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: #a8d5ba;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2ecc71;
}

.mobile-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.mobile-btn span {
    width: 30px;
    height: 3px;
    background: #2ecc71;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-btn.toggled span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-btn.toggled span:nth-child(2) {
    opacity: 0;
}

.mobile-btn.toggled span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.main-wrapper {
    padding-top: 80px;
}

.hero-banner {
    padding: 80px 25px;
    text-align: center;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(46, 204, 113, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(39, 174, 96, 0.15) 0%, transparent 50%);
}

.hero-banner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #2ecc71;
    letter-spacing: 6px;
    margin-bottom: 25px;
    text-shadow: 3px 3px 20px rgba(46, 204, 113, 0.4);
}

.hero-desc {
    font-size: 1.2rem;
    color: #a8d5ba;
    max-width: 750px;
    margin: 0 auto 40px;
}

.notice-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.notice-tag {
    background: rgba(46, 204, 113, 0.15);
    border: 2px solid #2ecc71;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-tag span {
    margin-right: 8px;
}

.game-showcase {
    padding: 70px 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #2ecc71;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.game-box {
    background: rgba(10, 46, 28, 0.8);
    border-radius: 20px;
    padding: 25px;
    border: 3px solid rgba(46, 204, 113, 0.3);
    box-shadow: 0 0 60px rgba(46, 204, 113, 0.2);
}

.game-window {
    width: 100%;
    height: 560px;
    border: none;
    border-radius: 12px;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 25px;
}

.highlight-card {
    background: linear-gradient(180deg, rgba(46, 204, 113, 0.1) 0%, rgba(4, 24, 16, 0.9) 100%);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #2ecc71;
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: scale(1.03);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #2ecc71;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.highlight-card p {
    color: #a8d5ba;
    font-size: 0.95rem;
}

.content-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 25px;
}

.content-block {
    background: rgba(10, 46, 28, 0.6);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #2ecc71;
}

.content-block h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #2ecc71;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.content-block p {
    color: #a8d5ba;
    line-height: 1.8;
}

.site-footer {
    background: #020c07;
    padding: 60px 25px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.support-links {
    margin-bottom: 35px;
}

.support-links h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #2ecc71;
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.support-links a {
    color: #a8d5ba;
    margin: 0 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover {
    color: #2ecc71;
}

.footer-pages {
    margin-bottom: 28px;
}

.footer-pages a {
    color: #6b9d7d;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-pages a:hover {
    color: #2ecc71;
}

.footer-copy {
    color: #3d5c4a;
    font-size: 0.85rem;
}

.verify-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 12, 7, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.verify-modal.closed {
    display: none;
}

.modal-card {
    background: linear-gradient(145deg, #0a2e1c, #041810);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #2ecc71;
    box-shadow: 0 0 80px rgba(46, 204, 113, 0.3);
}

.modal-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #2ecc71;
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.modal-card p {
    color: #a8d5ba;
    margin-bottom: 15px;
    line-height: 1.7;
}

.modal-card .accent {
    color: #2ecc71;
    font-weight: 700;
}

.modal-btns {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.modal-btn {
    padding: 15px 45px;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.modal-btn.enter {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #041810;
}

.modal-btn.leave {
    background: transparent;
    border: 2px solid #6b9d7d;
    color: #a8d5ba;
}

.modal-btn:hover {
    transform: scale(1.05);
}

.page-top {
    padding: 120px 25px 50px;
    text-align: center;
    background: linear-gradient(180deg, rgba(46, 204, 113, 0.15) 0%, transparent 100%);
}

.page-top h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #2ecc71;
    letter-spacing: 5px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 25px;
}

.page-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #2ecc71;
    font-size: 1.6rem;
    letter-spacing: 3px;
    margin: 45px 0 18px;
}

.page-content h2:first-of-type {
    margin-top: 0;
}

.page-content p {
    color: #a8d5ba;
    margin-bottom: 16px;
}

.page-content ul {
    color: #a8d5ba;
    margin: 18px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 12px;
}

.info-banner {
    background: rgba(46, 204, 113, 0.15);
    border-left: 5px solid #2ecc71;
    padding: 22px;
    border-radius: 10px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .highlights,
    .content-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #041810;
        padding: 25px;
        display: none;
        border-bottom: 3px solid #2ecc71;
    }

    .nav-links.showing {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 18px;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .notice-strip {
        flex-direction: column;
        align-items: center;
    }

    .game-window {
        height: 380px;
    }

    .highlights,
    .content-blocks {
        grid-template-columns: 1fr;
    }

    .modal-card {
        margin: 20px;
        padding: 35px 25px;
    }

    .modal-btns {
        flex-direction: column;
    }
}
