* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f0fdf4;
    color: #1c1917;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.site-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.site-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #10B981;
    letter-spacing: 1px;
}

.main-menu {
    display: flex;
    gap: 2.5rem;
}

.main-menu a {
    color: #404040;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10B981;
    transition: width 0.3s ease;
}

.main-menu a:hover {
    color: #10B981;
}

.main-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: #10B981;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .main-menu.active {
        left: 0;
    }
}

.hero-area {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    padding: 5rem 0;
    color: white;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text-block h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: white;
    color: #10B981;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-image-block {
    position: relative;
    height: 350px;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.floating-element:nth-child(1) {
    top: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
}

.floating-element:nth-child(2) {
    top: 80px;
    right: 50px;
    width: 90px;
    height: 90px;
}

.floating-element:nth-child(3) {
    bottom: 50px;
    left: 80px;
    width: 110px;
    height: 110px;
}

.about-platform {
    padding: 5rem 0;
    background: white;
}

.section-header {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: #10B981;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #525252;
    margin-bottom: 1.5rem;
}

.key-points {
    padding: 5rem 0;
    background: #f0fdf4;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.point-card {
    padding: 2.5rem;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.point-card.emerald {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.point-card.teal {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
}

.point-card.green {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
}

.point-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.point-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.point-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

.game-display {
    padding: 5rem 0;
    background: white;
}

.section-lead {
    text-align: center;
    font-size: 1.15rem;
    color: #525252;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.game-embed-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.game-embed-container iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.platform-features {
    padding: 5rem 0;
    background: #f0fdf4;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid #10B981;
}

.feature-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #1c1917;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.feature-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #525252;
}

.responsible-message {
    padding: 5rem 0;
    background: white;
}

.message-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 3.5rem;
    border-radius: 15px;
    border: 3px solid #10B981;
}

.message-box h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.8rem;
    color: #059669;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.message-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #525252;
    margin-bottom: 1.3rem;
}

.site-footer {
    background: #1c1917;
    color: #d4d4d4;
    padding: 3.5rem 0 2rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.footer-block h4 {
    font-family: 'Bebas Neue', cursive;
    color: #10B981;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 0.6rem;
}

.footer-block a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #10B981;
}

.footer-block p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.verify-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.verify-modal.hidden {
    display: none;
}

.verify-card {
    background: white;
    border-radius: 20px;
    max-width: 550px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid #10B981;
}

.verify-header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 2.5rem;
    border-radius: 16px 16px 0 0;
    text-align: center;
    color: white;
}

.verify-symbol {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.verify-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
}

.verify-body {
    padding: 2.5rem;
    text-align: center;
}

.verify-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #525252;
    margin-bottom: 1rem;
}

.verify-footer {
    padding: 0 2.5rem 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-confirm,
.btn-decline {
    padding: 1.1rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

.btn-decline {
    background: #737373;
    color: white;
}

.btn-decline:hover {
    background: #525252;
}

.play-section {
    min-height: 80vh;
    padding: 4.5rem 0;
    background: white;
}

.page-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: #10B981;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.page-lead {
    text-align: center;
    font-size: 1.15rem;
    color: #525252;
    margin-bottom: 3rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.game-player-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.game-player-container iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.game-info-panel {
    max-width: 850px;
    margin: 0 auto;
    background: #f0fdf4;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #10B981;
}

.game-info-panel h3 {
    font-family: 'Bebas Neue', cursive;
    color: #059669;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.game-info-panel ul {
    list-style-position: inside;
}

.game-info-panel li {
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #525252;
}

.legal-page {
    min-height: 80vh;
    padding: 4.5rem 0;
    background: white;
}

.legal-updated {
    text-align: center;
    font-size: 0.95rem;
    color: #737373;
    font-style: italic;
    margin-bottom: 3.5rem;
}

.legal-section {
    max-width: 950px;
    margin: 0 auto 3rem;
    background: #f0fdf4;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #10B981;
}

.legal-section h2 {
    font-family: 'Bebas Neue', cursive;
    color: #059669;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #525252;
    margin-bottom: 1.2rem;
}

@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-text-block h1 {
        font-size: 3.5rem;
    }

    .hero-image-block {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-header {
        font-size: 2.8rem;
    }

    .game-embed-container iframe,
    .game-player-container iframe {
        height: 500px;
    }

    .page-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 2.3rem;
    }

    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .game-embed-container iframe,
    .game-player-container iframe {
        height: 400px;
    }

    .verify-card {
        margin: 0.5rem;
    }

    .verify-header,
    .verify-body {
        padding: 2rem;
    }

    .verify-footer {
        padding: 0 2rem 2rem;
    }
}
