* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.7;
}

.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Verification Modal */
.verification-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.verification-modal.hidden {
    display: none;
}

.verify-box {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 480px;
    color: white;
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.5);
}

.verify-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.verify-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.verify-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.verify-yes, .verify-no {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.verify-yes {
    background: white;
    color: #4f46e5;
}

.verify-yes:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.verify-no {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.verify-no:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Top Navigation */
.topnav {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #4f46e5;
    text-decoration: none;
}

.nav-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggler span {
    width: 28px;
    height: 3px;
    background: #4f46e5;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-items {
    display: flex;
    gap: 2.5rem;
}

.nav-items a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-items a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #4f46e5;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-items a:hover {
    color: #4f46e5;
}

.nav-items a:hover::before {
    width: 100%;
}

/* Main Hero */
.main-hero {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 7rem 0;
    text-align: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #4f46e5;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Key Points */
.key-points {
    padding: 5rem 0;
    background: #f9fafb;
}

.key-points .wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.point-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.point-card:hover {
    transform: translateY(-10px);
}

.point-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.point-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4f46e5;
    font-weight: 700;
}

.point-card p {
    color: #6b7280;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
}

.story-section h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1f2937;
    font-weight: 800;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
}

.highlight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 700;
}

.highlight-item p {
    color: #6b7280;
}

/* Featured Game */
.featured-game {
    padding: 5rem 0;
    background: #f9fafb;
}

.game-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.game-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 800;
}

.game-intro p {
    font-size: 1.2rem;
    color: #6b7280;
}

.game-embed-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.game-embed-box iframe {
    width: 100%;
    height: 750px;
    border: none;
}

/* Value Props */
.value-props {
    padding: 6rem 0;
}

.value-props h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1f2937;
    font-weight: 800;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.prop-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top: 4px solid #4f46e5;
}

.prop-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4f46e5;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.prop-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #4f46e5;
    font-weight: 700;
}

.prop-item p {
    color: #6b7280;
}

/* Responsible Section */
.responsible-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.responsible-content {
    text-align: center;
    color: white;
}

.responsible-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.responsible-content p {
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Play Page */
.play-intro-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    text-align: center;
}

.play-intro-section h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.play-intro-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.play-game-section {
    padding: 3rem 0;
}

.play-game-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.play-game-box iframe {
    width: 100%;
    height: 850px;
    border: none;
}

.play-details {
    padding: 5rem 0;
    background: #f9fafb;
}

.play-details h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    font-weight: 800;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.detail-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #4f46e5;
    font-weight: 700;
}

.detail-card p {
    color: #6b7280;
}

/* Legal Page */
.legal-page {
    padding: 5rem 0;
}

.legal-page h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 800;
}

.last-update {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #4f46e5;
    font-weight: 700;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

.warning-box {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    color: white;
}

.warning-box h2 {
    color: white;
    margin-top: 0;
}

.warning-box p {
    color: white;
}

/* Site Footer */
.site-footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #d1d5db;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #6366f1;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #d1d5db;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggler {
        display: flex;
    }

    .nav-items {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
    }

    .nav-items.active {
        right: 0;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .story-layout {
        grid-template-columns: 1fr;
    }

    .game-embed-box iframe {
        height: 550px;
    }

    .play-game-box iframe {
        height: 650px;
    }

    .play-intro-section h1 {
        font-size: 2.8rem;
    }

    .legal-page h1 {
        font-size: 2.5rem;
    }
}
