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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #0a192f;
}

.header {
    background: linear-gradient(90deg, #0a192f 0%, #112240 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #64ffda;
}

.brand-icon {
    font-size: 2rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #8892b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #64ffda;
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: #64ffda;
}

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

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

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #64ffda;
    transition: 0.3s;
    border-radius: 2px;
}

.banner {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95), rgba(17, 34, 64, 0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23112240" width="1200" height="600"/></svg>');
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.banner-overlay {
    max-width: 900px;
}

.banner-text h1 {
    font-size: 3.5rem;
    color: #ccd6f6;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    color: #8892b0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #64ffda;
    color: #0a192f;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #52d4bb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

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

.alerts-section {
    background: #112240;
    padding: 4rem 0;
}

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

.alert-box {
    background: #0a192f;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid;
    text-align: center;
}

.alert-box.warning {
    border-color: #ffd700;
}

.alert-box.info {
    border-color: #64ffda;
}

.alert-box.danger {
    border-color: #ff6b6b;
}

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

.alert-box h3 {
    color: #ccd6f6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.alert-box p {
    color: #8892b0;
    line-height: 1.7;
}

.intro-section {
    background: #0a192f;
    padding: 5rem 0;
}

.intro-content {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-content h2 {
    font-size: 2.8rem;
    color: #ccd6f6;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.15rem;
    color: #8892b0;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

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

.feature-box {
    background: #112240;
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.4rem;
    color: #ccd6f6;
    margin-bottom: 0.8rem;
}

.feature-box p {
    color: #8892b0;
    line-height: 1.7;
}

.game-showcase {
    background: #112240;
    padding: 5rem 0;
}

.section-title {
    font-size: 2.8rem;
    color: #ccd6f6;
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    font-size: 1.15rem;
    color: #8892b0;
    margin-bottom: 3rem;
}

.game-embed {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

.game-window {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-notice {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #8892b0;
}

.how-it-works {
    background: #0a192f;
    padding: 5rem 0;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #64ffda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a192f;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.6rem;
    color: #ccd6f6;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #8892b0;
    line-height: 1.7;
}

.footer {
    background: #020c1b;
    color: #8892b0;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    color: #ccd6f6;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.resource-list,
.footer-menu {
    list-style: none;
}

.resource-list li,
.footer-menu li {
    margin-bottom: 0.7rem;
}

.resource-list a,
.footer-menu a {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-list a:hover,
.footer-menu a:hover {
    color: #64ffda;
}

.footer-bar {
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #6b7a99;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.modal-box {
    background: #112240;
    padding: 3.5rem;
    border-radius: 10px;
    max-width: 550px;
    text-align: center;
    border: 2px solid #64ffda;
}

.modal-emoji {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.modal-box h2 {
    font-size: 2.2rem;
    color: #ccd6f6;
    margin-bottom: 1rem;
}

.modal-box p {
    color: #8892b0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-btn.confirm {
    background: #64ffda;
    color: #0a192f;
}

.modal-btn.confirm:hover {
    background: #52d4bb;
}

.modal-btn.decline {
    background: #ff6b6b;
    color: #fff;
}

.modal-btn.decline:hover {
    background: #ff5252;
}

.legal-header {
    background: #112240;
    padding: 4rem 0;
}

.legal-header h1 {
    font-size: 3rem;
    color: #ccd6f6;
    margin-bottom: 0.5rem;
}

.updated-date {
    color: #8892b0;
    font-size: 1.1rem;
}

.legal-body {
    background: #0a192f;
    padding: 4rem 0;
}

.legal-article {
    background: #112240;
    padding: 3rem;
    border-radius: 10px;
    line-height: 1.8;
}

.legal-article h2 {
    font-size: 2rem;
    color: #64ffda;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article p,
.legal-article li {
    color: #8892b0;
}

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

.legal-article li {
    margin-bottom: 0.5rem;
}

.legal-article a {
    color: #64ffda;
    text-decoration: none;
}

.legal-article a:hover {
    text-decoration: underline;
}

.play-hero {
    background: #112240;
    padding: 4rem 0;
    text-align: center;
}

.play-hero h1 {
    font-size: 3rem;
    color: #ccd6f6;
    margin-bottom: 1rem;
}

.play-hero p {
    font-size: 1.2rem;
    color: #8892b0;
}

.play-area {
    background: #0a192f;
    padding: 3rem 0;
}

.game-embed-large {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

.game-window-large {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.play-info {
    background: #112240;
    padding: 4rem 0;
}

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

.info-card {
    background: #0a192f;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #64ffda;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #ccd6f6;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: #8892b0;
    line-height: 1.7;
}

.warning-banner {
    background: #0a192f;
    padding: 3rem 0;
}

.warning-content {
    background: rgba(255, 215, 0, 0.1);
    border-left: 5px solid #ffd700;
    padding: 2rem;
    border-radius: 8px;
}

.warning-content h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.warning-content p {
    color: #8892b0;
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a192f;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-item {
        padding: 1rem;
        border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .banner-text h1 {
        font-size: 2.2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .game-window {
        height: 450px;
    }
    
    .game-window-large {
        height: 550px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
}
