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

body {
    font-family: 'Quicksand', sans-serif;
    background: #f5f5f5;
    color: #2c3e50;
    line-height: 1.7;
}

.verify-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

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

.verify-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: 1rem;
}

.verify-card h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.verify-icon {
    font-size: 4rem;
    margin: 1rem 0;
}

.verify-note {
    color: #7f8c8d;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.verify-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.verify-btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
}

.yes-btn {
    background: #2c3e50;
    color: white;
}

.yes-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.no-btn {
    background: #ecf0f1;
    color: #2c3e50;
}

.no-btn:hover {
    background: #bdc3c7;
}

.navbar {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-symbol {
    font-size: 1.8rem;
    color: #2c3e50;
}

.logo-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.toggle-line {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    padding: 0.3rem 0;
}

.nav-link:hover,
.nav-link.active-link {
    color: #3498db;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-intro {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.hero-inner h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.primary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.essentials {
    padding: 4rem 0;
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.essential-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.essential-card:hover {
    transform: translateY(-8px);
}

.card-symbol {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.essential-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.game-feature {
    padding: 4rem 0;
    background: white;
}

.section-heading {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subheading {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.game-embed-box {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.embedded-game {
    width: 100%;
    height: 650px;
    border: none;
}

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

.overview-content {
    display: grid;
    gap: 2.5rem;
}

.overview-segment {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.overview-segment h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.overview-segment p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.benefits {
    padding: 4rem 0;
    background: white;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.closing-statement {
    padding: 4rem 0;
}

.closing-statement h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.closing-statement p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-segment h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-segment ul {
    list-style: none;
}

.footer-segment a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-segment a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.play-main .play-intro {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.play-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.1rem;
}

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

.info-alert {
    background: white;
    border-left: 4px solid #3498db;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.alert-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.play-game {
    padding: 3rem 0;
}

.game-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.game-player {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 5px;
}

.play-reminders {
    padding: 3rem 0;
}

.reminder-panel {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.reminder-panel h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.reminder-items {
    list-style: none;
    line-height: 2.5;
    font-size: 1.05rem;
}

.legal-main .legal-header-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.legal-header-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-timestamp {
    color: #bdc3c7;
}

.legal-content-section {
    padding: 4rem 0;
}

.legal-block {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.legal-block h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-block h3 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.legal-block ul {
    margin: 1rem 0 1rem 2rem;
}

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

.emphasis-block {
    border-left: 5px solid #3498db;
    background: #ecf0f1;
}

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

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 260px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        gap: 0;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid #ecf0f1;
    }

    .hero-inner h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .embedded-game {
        height: 450px;
    }

    .game-player {
        height: 550px;
    }

    .verify-actions {
        flex-direction: column;
    }
}
