* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #18181b;
    background: #fafafa;
    line-height: 1.6;
}

.section-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 26px;
    width: 100%;
}

/* Verification Screen */
.verification-screen {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.4s;
}

.verification-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.verification-box {
    background: white;
    padding: 54px 46px;
    border-radius: 16px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.ver-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.verification-box h2 {
    font-size: 31px;
    color: #10B981;
    margin-bottom: 16px;
    font-weight: 700;
}

.verification-box p {
    font-size: 16px;
    color: #52525b;
    margin-bottom: 32px;
    line-height: 1.7;
}

.ver-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verify-btn {
    padding: 16px 34px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.yes-btn {
    background: #10B981;
    color: white;
}

.yes-btn:hover {
    background: #059669;
    transform: scale(1.02);
}

.no-btn {
    background: #f4f4f5;
    color: #52525b;
}

.no-btn:hover {
    background: #e4e4e7;
}

/* Primary Header */
.primary-header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 27px;
    font-weight: 800;
    color: #10B981;
}

.primary-nav {
    display: flex;
    gap: 34px;
}

.primary-nav a {
    text-decoration: none;
    color: #52525b;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.primary-nav a:hover {
    color: #10B981;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #10B981;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 100px 0;
    color: white;
}

.welcome-inner {
    max-width: 720px;
}

.welcome-section h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.welcome-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 34px;
    opacity: 0.96;
}

.action-btn {
    display: inline-block;
    background: white;
    color: #10B981;
    padding: 17px 42px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.35);
}

/* Features Showcase */
.features-showcase {
    padding: 70px 0;
    background: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.showcase-item {
    background: #f9fafb;
    padding: 38px 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.showcase-item:hover {
    transform: translateY(-5px);
    border-color: #10B981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.item-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.showcase-item h3 {
    font-size: 23px;
    color: #10B981;
    margin-bottom: 12px;
    font-weight: 700;
}

.showcase-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Essential Info */
.essential-info {
    padding: 70px 0;
    background: #f9fafb;
}

.info-container {
    background: white;
    padding: 46px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.info-container h2 {
    font-size: 34px;
    color: #059669;
    margin-bottom: 32px;
    font-weight: 800;
}

.info-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 26px;
}

.info-seg {
    padding: 28px;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #10B981;
}

.seg-icon {
    font-size: 38px;
    margin-bottom: 14px;
}

.info-seg h4 {
    font-size: 20px;
    color: #18181b;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-seg p {
    color: #6b7280;
    margin: 0;
    line-height: 1.7;
}

/* Gaming Area */
.gaming-area {
    padding: 75px 0;
    background: white;
}

.gaming-intro {
    text-align: center;
    margin-bottom: 46px;
}

.gaming-intro h2 {
    font-size: 40px;
    color: #18181b;
    margin-bottom: 12px;
    font-weight: 800;
}

.gaming-intro p {
    font-size: 19px;
    color: #6b7280;
}

.gaming-frame-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 26px;
    border-radius: 16px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}

.game-frame {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 12px;
}

.gaming-tip {
    max-width: 900px;
    margin: 32px auto 0;
    padding: 20px 30px;
    background: #D1FAE5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tip-symbol {
    font-size: 30px;
}

.gaming-tip p {
    margin: 0;
    color: #065F46;
    font-weight: 500;
}

/* Benefits List */
.benefits-list {
    padding: 75px 0;
    background: #f9fafb;
}

.benefits-title {
    text-align: center;
    font-size: 40px;
    color: #18181b;
    margin-bottom: 54px;
    font-weight: 800;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 28px;
}

.benefit-item {
    background: white;
    padding: 34px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.benefit-item h4 {
    font-size: 21px;
    color: #10B981;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.7;
}

/* Platform Info */
.platform-info {
    padding: 75px 0;
    background: white;
}

.info-content h2 {
    font-size: 38px;
    color: #18181b;
    margin-bottom: 26px;
    font-weight: 800;
}

.info-content p {
    font-size: 18px;
    color: #3f3f46;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* Sub Header */
.sub-header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 72px 0;
    color: white;
    text-align: center;
}

.sub-header h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 12px;
}

.sub-header p {
    font-size: 19px;
    opacity: 0.96;
}

.doc-date {
    font-size: 16px;
    opacity: 0.92;
}

/* Play Details */
.play-details {
    padding: 70px 0;
}

.details-box {
    background: white;
    padding: 46px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    margin-bottom: 46px;
}

.details-box h2 {
    font-size: 34px;
    color: #10B981;
    margin-bottom: 34px;
    font-weight: 800;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 26px;
}

.detail-card {
    text-align: center;
}

.card-emoji {
    font-size: 46px;
    margin-bottom: 16px;
}

.detail-card h4 {
    font-size: 19px;
    color: #18181b;
    margin-bottom: 10px;
    font-weight: 700;
}

.detail-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.play-game-wrapper {
    background: white;
    padding: 26px;
    border-radius: 16px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
    margin-bottom: 38px;
}

.play-game-frame {
    width: 100%;
    height: 760px;
    border: none;
    border-radius: 12px;
}

.play-note {
    background: #D1FAE5;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #10B981;
}

.play-note h3 {
    color: #059669;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
}

.play-note p {
    color: #065F46;
    margin: 0;
    font-size: 16px;
}

/* Play Tips */
.play-tips {
    padding: 70px 0;
    background: #f9fafb;
}

.play-tips h2 {
    text-align: center;
    font-size: 38px;
    color: #18181b;
    margin-bottom: 48px;
    font-weight: 800;
}

.play-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.tip-block {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tip-block h4 {
    font-size: 20px;
    color: #10B981;
    margin-bottom: 10px;
    font-weight: 700;
}

.tip-block p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Legal Page */
.legal-page {
    padding: 70px 0;
}

.legal-container {
    background: white;
    padding: 54px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 1150px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 28px;
    color: #10B981;
    margin-top: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container p {
    color: #3f3f46;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-container li {
    color: #3f3f46;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-box {
    background: #D1FAE5;
    padding: 30px;
    border-radius: 12px;
    margin-top: 38px;
    border-left: 5px solid #10B981;
}

.legal-box h3 {
    color: #059669;
    margin-bottom: 14px;
    font-size: 23px;
    font-weight: 700;
}

.legal-box p {
    color: #065F46;
    font-weight: 500;
}

.legal-box ul {
    margin-top: 16px;
}

.legal-box li {
    color: #065F46;
}

/* Primary Footer */
.primary-footer {
    background: #09090b;
    color: white;
    padding: 68px 0 30px;
    margin-top: 78px;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 42px;
    margin-bottom: 42px;
}

.footer-segment h3, .footer-segment h4 {
    color: #10B981;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 700;
}

.footer-segment p {
    color: #a1a1aa;
    line-height: 1.7;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 11px;
}

.footer-list a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #10B981;
}

.footer-line {
    border-top: 1px solid #27272a;
    padding-top: 30px;
    text-align: center;
    color: #a1a1aa;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .primary-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 26px;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
        transition: left 0.3s ease;
        gap: 0;
    }
    
    .primary-nav.open {
        left: 0;
    }
    
    .primary-nav a {
        padding: 17px 0;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .welcome-section h1 {
        font-size: 36px;
    }
    
    .welcome-text {
        font-size: 18px;
    }
    
    .game-frame {
        height: 520px;
    }
    
    .play-game-frame {
        height: 570px;
    }
    
    .legal-container {
        padding: 34px 22px;
    }
    
    .verification-box {
        margin: 20px;
        padding: 40px 30px;
    }
}
