* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fafafa;
    color: #1f2937;
    line-height: 1.65;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.modal-overlay.verified {
    display: none;
}

.modal-box {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
    border: 3px solid #10b981;
}

.modal-box h2 {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 15px;
    font-weight: 800;
}

.modal-box p {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #4b5563;
}

.modal-info {
    background: #f3f4f6;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    color: #1f2937;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #10b981;
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #e5e7eb;
    color: #4b5563;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.main-header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    color: #10b981;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle .line {
    width: 28px;
    height: 3px;
    background: #10b981;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #10b981;
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu a {
        padding: 18px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .mobile-toggle.active .line:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .mobile-toggle.active .line:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .line:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
}

.hero-section {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 120px 40px;
    text-align: center;
}

.hero-inner {
    max-width: 850px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-tags {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: white;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }
}

.about-area {
    padding: 100px 40px;
    background: white;
}

.about-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 30px;
    font-weight: 800;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4b5563;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-card {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 60px;
    border-radius: 12px;
    font-size: 4rem;
    text-align: center;
}

@media (max-width: 768px) {
    .about-area {
        padding: 70px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

.essentials {
    padding: 100px 40px;
    background: #f9fafb;
}

.essentials-wrapper {
    max-width: 100%;
}

.essentials-wrapper h2 {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
}

.essentials-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.essential-block {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.essential-block:hover {
    transform: translateY(-5px);
}

.block-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.essential-block h3 {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 15px;
    font-weight: 800;
}

.essential-block p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4b5563;
}

.game-zone {
    padding: 100px 40px;
    background: white;
}

.zone-wrapper {
    max-width: 100%;
}

.zone-wrapper h2 {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
}

.zone-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 45px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    color: #4b5563;
}

.game-frame-container {
    max-width: 1200px;
    margin: 0 auto 30px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.meta-item {
    color: #10b981;
    font-weight: 600;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .game-zone {
        padding: 70px 20px;
    }

    .game-iframe {
        height: 500px;
    }
}

.highlights {
    padding: 100px 40px;
    background: #f9fafb;
}

.highlights-wrapper {
    max-width: 100%;
}

.highlights-wrapper h2 {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.highlight-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
}

.card-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 800;
}

.highlight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

.action-banner {
    padding: 100px 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    text-align: center;
}

.banner-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.banner-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.action-btn {
    display: inline-block;
    background: white;
    color: #10b981;
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.site-footer {
    background: #111827;
    color: #d1d5db;
    padding: 70px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #10b981;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: #10b981;
}

.footer-base {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .essentials,
    .game-zone,
    .highlights,
    .action-banner {
        padding: 70px 20px;
    }

    .essentials-wrapper h2,
    .zone-wrapper h2,
    .highlights-wrapper h2,
    .banner-content h2 {
        font-size: 2rem;
    }

    .essentials-row,
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}
