* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #000033;
    color: #e8e8e8;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-modal.hide {
    display: none;
}

.age-modal-box {
    background: linear-gradient(145deg, #001a4d 0%, #000033 100%);
    padding: 3.5rem 3rem;
    border-radius: 10px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    border: 3px solid #00CED1;
    box-shadow: 0 0 50px rgba(0, 206, 209, 0.4);
}

.age-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.age-modal-box h2 {
    color: #00CED1;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.age-modal-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #ccc;
}

.age-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 1.2rem 2.5rem;
    border: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    letter-spacing: 1px;
}

.btn-confirm {
    background: #00CED1;
    color: #000033;
}

.btn-confirm:hover {
    background: #00FFFF;
    transform: scale(1.05);
}

.btn-deny {
    background: #333;
    color: #fff;
}

.btn-deny:hover {
    background: #555;
}

.main-header {
    background: rgba(0, 0, 51, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00CED1;
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #00CED1;
    letter-spacing: 3px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background: #00CED1;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.8rem;
}

.nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00CED1;
}

.hero-banner {
    position: relative;
    background: linear-gradient(135deg, #001a4d 0%, #003366 50%, #004d7a 100%);
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(0,206,209,0.1)" stroke-width="0.5"/></svg>');
    opacity: 0.3;
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 4rem;
    color: #00CED1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.tagline {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.hero-btn {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: #00CED1;
    color: #000033;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

.hero-btn:hover {
    background: #00FFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.5);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-block {
    padding: 5rem 0;
    background: rgba(0, 26, 77, 0.5);
}

.section-title {
    font-size: 3rem;
    color: #00CED1;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
    color: #ccc;
}

.features-grid {
    padding: 5rem 0;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: linear-gradient(145deg, #001a4d 0%, #000033 100%);
    padding: 2.5rem;
    border: 2px solid #00CED1;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.3);
    border-color: #00FFFF;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    color: #00CED1;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #bbb;
}

.game-showcase {
    padding: 5rem 0;
    background: rgba(0, 26, 77, 0.5);
}

.subtitle {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #aaa;
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #000;
    border: 3px solid #00CED1;
    border-radius: 10px;
    overflow: hidden;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.info-panels {
    padding: 5rem 0;
}

.panel-grid {
    display: grid;
    gap: 2rem;
}

.info-panel {
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 6px solid #00CED1;
}

.cyan-panel {
    background: rgba(0, 206, 209, 0.1);
}

.dark-panel {
    background: rgba(0, 26, 77, 0.6);
}

.info-panel h3 {
    color: #00CED1;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-panel p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #ccc;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #001a4d 0%, #003366 100%);
}

.cta-box {
    text-align: center;
    padding: 3rem;
}

.cta-box h2 {
    font-size: 3rem;
    color: #00CED1;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-box p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #d0d0d0;
}

.cta-btn-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: #00CED1;
    color: #000033;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

.cta-btn-large:hover {
    background: #00FFFF;
    transform: scale(1.05);
}

.disclaimer-notice {
    padding: 5rem 0;
}

.notice-card {
    background: rgba(0, 26, 77, 0.6);
    border: 3px solid #00CED1;
    border-radius: 10px;
    padding: 3rem;
}

.notice-card h3 {
    color: #00CED1;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.notice-items {
    list-style: none;
    display: grid;
    gap: 1.2rem;
}

.notice-items li {
    padding: 1.2rem;
    background: rgba(0, 206, 209, 0.05);
    border-left: 4px solid #00CED1;
    font-size: 1.1rem;
    border-radius: 5px;
}

.notice-items strong {
    color: #00CED1;
}

.site-footer {
    background: #000019;
    padding: 4rem 0 2rem;
    border-top: 3px solid #00CED1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #00CED1;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.support-links, .footer-nav {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.support-links a, .footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover, .footer-nav a:hover {
    color: #00CED1;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 206, 209, 0.3);
    color: #888;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 51, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .game-iframe {
        height: 500px;
    }
}

.content-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-container h1 {
    font-size: 3.5rem;
    color: #00CED1;
    text-align: center;
    margin-bottom: 2rem;
}

.content-container h2 {
    font-size: 2.2rem;
    color: #00CED1;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

.content-container h3 {
    font-size: 1.7rem;
    color: #00CED1;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-container p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #ccc;
}

.content-container ul, .content-container ol {
    margin-bottom: 1.5rem;
    margin-left: 2.5rem;
    color: #ccc;
}

.content-container li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-container strong {
    color: #00CED1;
}

.play-page {
    padding: 3rem 0;
}

.play-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.play-heading h1 {
    font-size: 3.5rem;
    color: #00CED1;
    margin-bottom: 1rem;
}

.game-info {
    background: rgba(0, 26, 77, 0.6);
    border: 2px solid #00CED1;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.game-info h3 {
    color: #00CED1;
    margin-bottom: 1.5rem;
}

.game-info ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.game-info li {
    font-size: 1.1rem;
}
