* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #0d1117;
    color: #c9d1d9;
    line-height: 1.6;
}

.top-nav {
    background: #161b22;
    border-bottom: 2px solid #4a90e2;
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 3rem;
    max-width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #4a90e2;
    letter-spacing: 3px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-line {
    width: 26px;
    height: 3px;
    background: #4a90e2;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #c9d1d9;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.4rem 0;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #4a90e2;
}

.nav-links a:hover::before {
    width: 100%;
}

.main-header {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.header-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-tagline {
    font-size: 1.6rem;
    color: #e6f2ff;
    margin-bottom: 2.5rem;
}

.header-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.benefit-pill {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.alerts-section {
    padding: 4rem 2rem;
    background: #0d1117;
}

.main-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #4a90e2;
    text-align: center;
    margin-bottom: 3rem;
}

.alerts-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.alert-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid;
}

.alert-box.alert-danger {
    border-left-color: #f85149;
    background: rgba(248, 81, 73, 0.05);
}

.alert-box.alert-info {
    border-left-color: #4a90e2;
    background: rgba(74, 144, 226, 0.05);
}

.alert-box.alert-warning {
    border-left-color: #d29922;
    background: rgba(210, 153, 34, 0.05);
}

.alert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.alert-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.alert-box p {
    line-height: 1.8;
    color: #8b949e;
}

.game-feature {
    padding: 4rem 2rem;
    background: #161b22;
}

.feature-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-desc {
    font-size: 1.2rem;
    color: #8b949e;
}

.game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: #000;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #4a90e2;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
}

.game-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.meta-tag {
    background: rgba(74, 144, 226, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #4a90e2;
    font-size: 1.05rem;
}

.about-lumethor {
    padding: 4rem 2rem;
    background: #0d1117;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #8b949e;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: rgba(74, 144, 226, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #4a90e2;
    text-align: center;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #4a90e2;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: #8b949e;
}

.how-works {
    padding: 4rem 2rem;
    background: #161b22;
}

.works-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.timeline-item {
    background: rgba(74, 144, 226, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.timeline-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #8b949e;
    line-height: 1.8;
}

.transparency-pledge {
    padding: 4rem 2rem;
    background: #0d1117;
}

.pledge-card {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(74, 144, 226, 0.08);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #4a90e2;
    text-align: center;
}

.pledge-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.pledge-card p {
    font-size: 1.15rem;
    line-height: 2;
    color: #8b949e;
}

.site-footer {
    background: #010409;
    border-top: 2px solid #4a90e2;
    padding: 3rem 2rem 1rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-block h3 {
    font-family: 'Montserrat', sans-serif;
    color: #4a90e2;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #4a90e2;
}

.footer-block p {
    color: #6e7681;
    line-height: 1.7;
}

.footer-line {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    color: #6e7681;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #4a90e2;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.4);
}

.age-symbol {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.age-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.age-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.age-info {
    font-size: 1rem;
    color: #8b949e;
    margin-bottom: 2rem;
}

.age-choice {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.accept-btn,
.deny-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.accept-btn {
    background: #4a90e2;
    color: #ffffff;
}

.accept-btn:hover {
    background: #357abd;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
}

.deny-btn {
    background: #30363d;
    color: #c9d1d9;
}

.deny-btn:hover {
    background: #484f58;
}

.play-header {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.play-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.play-subhead {
    font-size: 1.3rem;
    color: #e6f2ff;
}

.play-section {
    padding: 3rem 2rem;
    background: #0d1117;
}

.play-info {
    padding: 4rem 2rem;
    background: #161b22;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(74, 144, 226, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.info-card h3 {
    font-size: 1.4rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.info-card p {
    color: #8b949e;
    line-height: 1.8;
}

.play-notices {
    padding: 4rem 2rem;
    background: #0d1117;
}

.notice-block {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(248, 81, 73, 0.08);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid #f85149;
}

.notice-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #f85149;
    margin-bottom: 1.5rem;
}

.notice-list {
    list-style-position: inside;
    font-size: 1.1rem;
    line-height: 2.2;
    color: #8b949e;
}

.legal-page {
    padding: 3rem 2rem;
    background: #0d1117;
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-wrapper h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #4a90e2;
    text-align: center;
    margin-bottom: 1rem;
}

.date-line {
    text-align: center;
    font-style: italic;
    color: #6e7681;
    margin-bottom: 3rem;
}

.legal-article {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
}

.legal-article h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.legal-article p {
    margin-bottom: 1rem;
    line-height: 1.9;
    color: #8b949e;
}

.legal-article ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.9;
    color: #8b949e;
}

.highlight-article {
    background: rgba(74, 144, 226, 0.1);
    border-left-color: #4a90e2;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        gap: 0;
    }

    .nav-links.open {
        left: 0;
    }

    .nav-links a {
        font-size: 1.4rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(74, 144, 226, 0.2);
    }

    .nav-container {
        padding: 1.3rem 1.5rem;
    }

    .main-header {
        padding: 4rem 1.5rem;
    }

    .header-content h1 {
        font-size: 2.8rem;
    }

    .header-tagline {
        font-size: 1.3rem;
    }

    .header-benefits {
        flex-direction: column;
        align-items: center;
    }

    .game-embed {
        height: 500px;
    }

    .alerts-wrapper {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .works-timeline {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }

    .age-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-choice {
        flex-direction: column;
    }
}
