* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #1a1a1a;
}

.verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.verify-overlay.hidden {
    display: none;
}

.verify-box {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    padding: 3rem 3.5rem;
    border-radius: 20px;
    max-width: 500px;
    color: white;
    box-shadow: 0 30px 90px rgba(255, 107, 53, 0.5);
    border: 2px solid #ff6b35;
}

.verify-header {
    text-align: center;
    margin-bottom: 2rem;
}

.verify-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.verify-header h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #ff6b35;
}

.verify-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.verify-question {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.verify-buttons {
    display: flex;
    gap: 1rem;
}

.verify-buttons button {
    flex: 1;
    padding: 1.2rem;
    font-size: 1.05rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accept {
    background: linear-gradient(135deg, #ff6b35 0%, #f44336 100%);
    color: white;
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-reject {
    background: transparent;
    color: #bdc3c7;
    border: 2px solid #7f8c8d;
}

.btn-reject:hover {
    background: #34495e;
    border-color: #95a5a6;
    color: white;
}

.main-navbar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navbar-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    letter-spacing: 1px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn .bar {
    width: 30px;
    height: 3px;
    background: #ff6b35;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.current {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #ff6b35 0%, #f44336 100%);
    padding: 6rem 2.5rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.info-section {
    padding: 6rem 0;
    background: #0f0f0f;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.info-card {
    padding: 3rem;
    border-radius: 18px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.red-card {
    background: linear-gradient(145deg, #c0392b 0%, #e74c3c 100%);
    color: white;
}

.orange-card {
    background: linear-gradient(145deg, #d35400 0%, #ff6b35 100%);
    color: white;
}

.dark-card {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border-color: #ff6b35;
}

.card-top {
    margin-bottom: 1.5rem;
}

.card-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.game-display {
    padding: 6rem 0;
    background: #1a1a1a;
}

.game-header-section {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #bdc3c7;
}

.game-frame-container {
    width: 100%;
    height: 700px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.4);
    border: 3px solid #ff6b35;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-blocks {
    padding: 6rem 0;
    background: #0f0f0f;
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.info-block {
    padding: 3.5rem;
    border-radius: 18px;
    color: white;
}

.gradient-red {
    background: linear-gradient(145deg, #e74c3c 0%, #c0392b 100%);
}

.gradient-orange {
    background: linear-gradient(145deg, #ff6b35 0%, #d35400 100%);
}

.gradient-dark {
    background: linear-gradient(145deg, #34495e 0%, #2c3e50 100%);
    border: 2px solid #ff6b35;
}

.info-block h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-block p {
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.play-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 5rem 0;
    text-align: center;
}

.page-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.page-description {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.play-guide {
    padding: 4rem 0;
    background: #1a1a1a;
}

.guide-card {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    padding: 3rem;
    border-radius: 18px;
    border-left: 6px solid #ff6b35;
    color: white;
}

.guide-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.guide-list {
    list-style-position: inside;
    line-height: 2.3;
    font-size: 1.05rem;
}

.play-game-section {
    padding: 4rem 0 6rem 0;
    background: #1a1a1a;
}

.legal-container {
    padding: 6rem 0;
    background: #1a1a1a;
}

.legal-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.effective-date {
    color: #95a5a6;
    font-style: italic;
    margin-bottom: 4rem;
}

.legal-article {
    margin-bottom: 3.5rem;
    background: #0f0f0f;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #ff6b35;
}

.legal-article h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.legal-article p {
    color: #ecf0f1;
    line-height: 2;
    margin-bottom: 1.2rem;
}

.legal-article ul {
    margin-left: 2rem;
    margin-top: 1rem;
    color: #ecf0f1;
}

.legal-article ul li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.warning-article {
    background: linear-gradient(145deg, #d35400 0%, #ff6b35 100%);
    border: none;
}

.warning-article h2,
.warning-article p {
    color: white;
}

.site-footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 5rem 0 2rem 0;
    margin-top: 6rem;
    border-top: 3px solid #ff6b35;
}

.footer-notice-box {
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid #ff6b35;
}

.footer-notice-box p {
    color: #ecf0f1;
    line-height: 1.9;
}

.footer-resources {
    margin-bottom: 3rem;
}

.footer-heading {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.resource-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.resource-link:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.footer-copyright p {
    color: #7f8c8d;
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .game-frame-container {
        height: 500px;
    }

    .blocks-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .legal-title {
        font-size: 2.5rem;
    }

    .resource-links {
        flex-direction: column;
        gap: 1rem;
    }
}
