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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #f0f4f8, #d9e8f5);
    color: #2d3748;
    line-height: 1.7;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(106, 13, 173, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(8px);
}

.modal-overlay.hidden {
    display: none;
}

.modal-box {
    background: white;
    padding: 50px;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

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

.modal-box h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.2rem;
    color: #6a0dad;
    margin-bottom: 20px;
    font-weight: 800;
}

.modal-text {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.modal-subtext {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 30px;
}

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

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

.modal-btn.primary {
    background: linear-gradient(135deg, #6a0dad, #00d9ff);
    color: white;
}

.modal-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.4);
}

.modal-btn.secondary {
    background: #e2e8f0;
    color: #718096;
}

.modal-btn.secondary:hover {
    background: #cbd5e0;
}

/* Page Wrapper */
.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(to bottom, #6a0dad, #4a0b8f);
    color: white;
    padding: 40px 0;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar-header {
    text-align: center;
    padding: 0 20px 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.sidebar-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 15px;
    letter-spacing: 2px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(0, 217, 255, 0.15);
    color: #00d9ff;
    border-left-color: #00d9ff;
}

.nav-icon {
    font-size: 1.5rem;
}

.nav-text {
    font-weight: 600;
    font-size: 1.05rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #6a0dad;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    background: linear-gradient(to bottom right, #f0f4f8, #d9e8f5);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #6a0dad, #00d9ff);
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.page-header.compact {
    padding: 60px 40px;
}

.header-content h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.header-tagline {
    font-size: 1.4rem;
    opacity: 0.95;
}

/* Content Sections */
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 70px 40px;
}

.section-heading {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    color: #6a0dad;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Welcome Section */
.welcome-section {
    background: white;
}

.welcome-section .content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-text h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.2rem;
    color: #6a0dad;
    margin-bottom: 25px;
    font-weight: 800;
}

.welcome-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.welcome-graphic {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.graphic-element {
    font-size: 5rem;
    opacity: 0.8;
}

/* Key Info Section */
.key-info-section {
    background: linear-gradient(to bottom, #e6f7ff, #f0f4f8);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-card.purple {
    border-top: 5px solid #6a0dad;
}

.info-card.teal {
    border-top: 5px solid #00d9ff;
}

.info-card.gradient {
    border-top: 5px solid;
    border-image: linear-gradient(to right, #6a0dad, #00d9ff) 1;
}

.card-header {
    margin-bottom: 20px;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-header h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.6rem;
    color: #2d3748;
    font-weight: 700;
}

.card-body p {
    color: #4a5568;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    background: white;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(106, 13, 173, 0.25);
}

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

.game-note {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #f7fafc;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.game-note p {
    color: #4a5568;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #e6f7ff, #f0f4f8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6a0dad, #00d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-item p {
    color: #718096;
    line-height: 1.7;
}

/* Responsibility Banner */
.responsibility-banner {
    background: linear-gradient(135deg, #6a0dad, #4a0b8f);
    color: white;
}

.banner-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.banner-content h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.banner-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    opacity: 0.95;
}

/* Play Section */
.play-section {
    padding: 60px 40px;
}

.play-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.game-frame {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(106, 13, 173, 0.25);
}

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

.play-info {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.play-info h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    color: #6a0dad;
    margin-bottom: 30px;
    font-weight: 800;
}

.info-block {
    margin-bottom: 30px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-block p {
    color: #4a5568;
    line-height: 1.8;
}

/* Legal Section */
.legal-section {
    padding: 60px 40px;
    background: white;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-article {
    margin-bottom: 50px;
}

.legal-article:last-child {
    margin-bottom: 0;
}

.legal-article h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.9rem;
    color: #6a0dad;
    margin-bottom: 20px;
    font-weight: 800;
}

.legal-article p {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-article ul {
    margin: 20px 0 20px 35px;
    color: #4a5568;
}

.legal-article ul li {
    margin: 12px 0;
    line-height: 1.8;
}

.warning-box {
    background: linear-gradient(135deg, #fef5e7, #fdebd0);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid #6a0dad;
    margin-bottom: 50px;
}

.warning-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.warning-box h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    color: #6a0dad;
    margin-bottom: 20px;
    font-weight: 800;
}

.warning-box p {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 15px;
}

.warning-box ul {
    margin: 20px 0 20px 35px;
    color: #4a5568;
}

.warning-box ul li {
    margin: 12px 0;
    line-height: 1.8;
}

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

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.brand-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.brand-tagline {
    color: #cbd5e0;
    font-size: 1rem;
}

.footer-section h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: #00d9ff;
}

.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #a0aec0;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .welcome-section .content-wrapper,
    .play-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .game-embed iframe,
    .game-frame iframe {
        height: 500px;
    }
    
    .modal-box {
        margin: 20px;
        padding: 35px 25px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}
