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

body {
    font-family: 'Manrope', sans-serif;
    background: #f8fafc;
    color: #334155;
    line-height: 1.7;
}

/* Verification Screen */
.verification-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.verification-screen.hidden {
    display: none;
}

.verification-card {
    background: white;
    padding: 60px;
    border-radius: 30px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.verification-icon {
    margin-bottom: 30px;
}

.verification-card h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: #06b6d4;
    margin-bottom: 20px;
    font-weight: 600;
}

.verification-text {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 15px;
    font-weight: 500;
}

.verification-note {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 35px;
    line-height: 1.7;
}

.verification-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.verify-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.verify-btn.primary {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
}

.verify-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.verify-btn.secondary {
    background: #f1f5f9;
    color: #64748b;
}

.verify-btn.secondary:hover {
    background: #e2e8f0;
}

/* Header */
.site-header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #06b6d4;
}

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

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: #06b6d4;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.site-navigation {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: #06b6d4;
}

/* Content Width */
.content-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-width.narrow {
    max-width: 900px;
}

.content-width.wide {
    max-width: 1400px;
}

/* Typography */
.main-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #0f172a;
}

.main-subheading {
    font-size: 1.4rem;
    color: #64748b;
}

.section-header {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    padding: 120px 0;
    text-align: center;
    color: white;
}

.hero-section .main-heading {
    color: white;
    margin-bottom: 20px;
}

.hero-section .main-subheading {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* About Section */
.about-section {
    padding: 90px 0;
    background: white;
}

.about-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.9;
}

/* Critical Section */
.critical-section {
    padding: 90px 0;
    background: #f8fafc;
}

.critical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.critical-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.critical-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.critical-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

.critical-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.critical-item p {
    color: #475569;
    line-height: 1.9;
}

/* Game Section */
.game-section {
    padding: 90px 0;
    background: white;
}

.game-frame {
    max-width: 1100px;
    margin: 0 auto 40px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.15);
}

.game-frame iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.game-guidance {
    max-width: 900px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 25px 35px;
    border-radius: 15px;
    border-left: 4px solid #06b6d4;
}

.game-guidance p {
    color: #475569;
    line-height: 1.8;
}

/* Advantages Section */
.advantages-section {
    padding: 90px 0;
    background: #f8fafc;
}

.advantages-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #64748b;
    line-height: 1.8;
}

/* Responsibility Section */
.responsibility-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.responsibility-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.responsibility-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 25px;
    text-align: center;
}

.responsibility-content p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Play Pages */
.play-header {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.play-header .main-heading {
    color: white;
    margin-bottom: 15px;
}

.play-header .main-subheading {
    color: rgba(255, 255, 255, 0.9);
}

.play-main {
    padding: 70px 0;
    background: #f8fafc;
}

.play-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.game-display {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.15);
}

.game-display iframe {
    width: 100%;
    height: 750px;
    display: block;
}

.play-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-section {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.info-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 12px;
}

.info-section p {
    color: #475569;
    line-height: 1.8;
}

/* Document Pages */
.doc-header {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.doc-header .main-heading {
    color: white;
    margin-bottom: 15px;
}

.doc-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.doc-main {
    padding: 70px 0;
    background: #f8fafc;
}

.terms-document,
.privacy-document,
.disclaimer-document {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.term-section,
.privacy-section,
.disclaimer-section {
    margin-bottom: 45px;
}

.term-section:last-child,
.privacy-section:last-child,
.disclaimer-section:last-child {
    margin-bottom: 0;
}

.term-section h2,
.privacy-section h2,
.disclaimer-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 18px;
}

.term-section p,
.privacy-section p,
.disclaimer-section p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 15px;
}

.term-section ul,
.privacy-section ul,
.disclaimer-section ul {
    margin: 20px 0 20px 35px;
    color: #475569;
}

.term-section ul li,
.privacy-section ul li,
.disclaimer-section ul li {
    margin: 12px 0;
    line-height: 1.9;
}

/* Emphasis Blocks */
.emphasis-block {
    background: linear-gradient(135deg, #f0f9ff, #f8fafc);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #06b6d4;
    margin-bottom: 45px;
}

.emphasis-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.emphasis-block h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 20px;
}

.emphasis-block p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 15px;
}

.emphasis-block ul {
    margin: 20px 0 20px 35px;
    color: #475569;
}

.emphasis-block ul li {
    margin: 12px 0;
    line-height: 1.9;
}

/* Footer */
.site-footer {
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    color: white;
    padding: 60px 40px 30px;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.brand-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.brand-info p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-support h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.support-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.support-links a:hover {
    color: #06b6d4;
}

.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        gap: 20px;
    }
    
    .site-navigation.active {
        right: 0;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .main-subheading {
        font-size: 1.2rem;
    }
    
    .section-header {
        font-size: 2rem;
    }
    
    .play-container {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .game-frame iframe,
    .game-display iframe {
        height: 500px;
    }
    
    .verification-card {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .verification-actions {
        flex-direction: column;
    }
    
    .terms-document,
    .privacy-document,
    .disclaimer-document,
    .responsibility-content {
        padding: 30px 25px;
    }
}
