* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom right, #0a2e1f 0%, #051410 100%);
    color: #e8f5e8;
    line-height: 1.7;
    min-height: 100vh;
}

.top-header {
    background: linear-gradient(135deg, #0d3b25 0%, #061a10 100%);
    padding: 1rem 2rem;
    border-bottom: 3px solid #2dd4bf;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.2);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    font-size: 2.5rem;
    color: #2dd4bf;
    filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.5));
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #2dd4bf;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(45, 212, 191, 0.3);
}

.primary-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #e8f5e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2dd4bf;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.current::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.current {
    color: #2dd4bf;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.toggle-line {
    width: 30px;
    height: 3px;
    background: #2dd4bf;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-drawer {
    display: none;
    background: rgba(6, 26, 16, 0.98);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    border-bottom: 3px solid #2dd4bf;
}

.mobile-drawer.visible {
    display: flex;
}

.drawer-link {
    color: #e8f5e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.drawer-link:hover,
.drawer-link.current {
    color: #2dd4bf;
    background: rgba(45, 212, 191, 0.1);
    border-left-color: #2dd4bf;
}

.content-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    padding: 0 1rem;
}

.intro-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid rgba(45, 212, 191, 0.25);
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #2dd4bf;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(45, 212, 191, 0.4);
}

.main-description {
    font-size: 1.2rem;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 2rem;
    line-height: 1.9;
    color: #d0e8d0;
}

.status-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.status-tag {
    background: rgba(45, 212, 191, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    border: 2px solid #2dd4bf;
    font-size: 1.05rem;
}

.platform-overview {
    padding: 4rem 0;
}

.section-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #2dd4bf;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(45, 212, 191, 0.3);
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.overview-item {
    background: linear-gradient(135deg, rgba(13, 59, 37, 0.7) 0%, rgba(6, 26, 16, 0.7) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid rgba(45, 212, 191, 0.25);
    transition: all 0.3s ease;
}

.overview-item:hover {
    border-color: #2dd4bf;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.2);
}

.item-symbol {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    color: #2dd4bf;
    margin-bottom: 1rem;
}

.critical-info {
    padding: 3rem 0;
}

.info-panel {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(45, 212, 191, 0.15) 100%);
    border: 3px solid #10b981;
    border-radius: 10px;
    padding: 2.5rem;
}

.panel-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #2dd4bf;
    margin-bottom: 2rem;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2dd4bf;
}

.game-display {
    padding: 4rem 0;
}

.section-desc {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #d0e8d0;
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #000;
    padding: 1rem;
    border-radius: 10px;
    border: 3px solid #2dd4bf;
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.25);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border-radius: 8px;
}

.game-caption {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.15rem;
    padding: 1rem;
    background: rgba(45, 212, 191, 0.12);
    border-radius: 8px;
}

.benefits-section {
    padding: 4rem 0;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-block {
    background: linear-gradient(135deg, rgba(13, 59, 37, 0.7) 0%, rgba(6, 26, 16, 0.7) 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(45, 212, 191, 0.25);
    transition: all 0.3s ease;
}

.benefit-block:hover {
    border-color: #2dd4bf;
    transform: scale(1.04);
    box-shadow: 0 5px 15px rgba(45, 212, 191, 0.2);
}

.benefit-symbol {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #2dd4bf;
    margin-bottom: 0.8rem;
}

.action-block {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid rgba(45, 212, 191, 0.25);
}

.action-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    color: #2dd4bf;
    margin-bottom: 1rem;
}

.action-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.action-link {
    display: inline-block;
    background: #2dd4bf;
    color: #051410;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 3px solid #2dd4bf;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.4);
}

.action-link:hover {
    background: transparent;
    color: #2dd4bf;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(45, 212, 191, 0.6);
}

.page-intro {
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-intro h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: #2dd4bf;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(45, 212, 191, 0.4);
}

.play-area {
    padding: 2rem 0 4rem;
}

.play-guide {
    background: linear-gradient(135deg, rgba(13, 59, 37, 0.7) 0%, rgba(6, 26, 16, 0.7) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #2dd4bf;
}

.play-guide h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2dd4bf;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.play-guide ul {
    margin-left: 2rem;
}

.play-guide li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.play-frame {
    background: #000;
    padding: 1rem;
    border-radius: 10px;
    border: 3px solid #2dd4bf;
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.25);
}

.play-frame iframe {
    width: 100%;
    height: 750px;
    border-radius: 8px;
}

.play-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.15rem;
    padding: 1.5rem;
    background: rgba(45, 212, 191, 0.12);
    border-radius: 8px;
}

.legal-area {
    padding: 2rem 0 4rem;
}

.legal-text {
    background: linear-gradient(135deg, rgba(13, 59, 37, 0.7) 0%, rgba(6, 26, 16, 0.7) 100%);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid rgba(45, 212, 191, 0.25);
}

.legal-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    color: #2dd4bf;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #2dd4bf;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.legal-text ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.8rem;
}

.terms-box,
.privacy-summary,
.warning-panel {
    background: rgba(45, 212, 191, 0.15);
    border: 3px solid #2dd4bf;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.bottom-footer {
    background: linear-gradient(135deg, #0d3b25 0%, #061a10 100%);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid #2dd4bf;
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2dd4bf;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.7rem;
}

.footer-menu a {
    color: #e8f5e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #2dd4bf;
}

.footer-note {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 212, 191, 0.3);
    opacity: 0.8;
}

.verify-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.verify-overlay.active {
    display: flex;
}

.verify-box {
    background: linear-gradient(135deg, #0d3b25 0%, #061a10 100%);
    padding: 3rem;
    border-radius: 12px;
    max-width: 550px;
    margin: 20px;
    text-align: center;
    border: 3px solid #2dd4bf;
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.5);
}

.verify-symbol {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.verify-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #2dd4bf;
    margin-bottom: 1.5rem;
}

.verify-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.verify-controls {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
}

.verify-button {
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-button.confirm {
    background: #2dd4bf;
    color: #051410;
    border: 3px solid #2dd4bf;
}

.verify-button.confirm:hover {
    background: transparent;
    color: #2dd4bf;
    transform: scale(1.05);
}

.verify-button.decline {
    background: transparent;
    color: #10b981;
    border: 3px solid #10b981;
}

.verify-button.decline:hover {
    background: #10b981;
    color: #fff;
}

@media (min-width: 768px) {
    .primary-nav {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .overview-layout {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .verify-controls {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .primary-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-title {
        font-size: 2rem;
    }

    .section-header {
        font-size: 1.8rem;
    }

    .brand-text {
        font-size: 1.4rem;
    }
}

@media (min-width: 1024px) {
    .benefits-layout {
        grid-template-columns: repeat(4, 1fr);
    }
}
