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

body {
    font-family: 'Lato', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.7;
}

.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00D4FF;
}

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

.logo-section svg {
    height: 50px;
    width: 185px;
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #00D4FF;
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.05rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00D4FF;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #00D4FF;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.welcome-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(91, 134, 229, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.hero-text h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00D4FF 0%, #5B86E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 212, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
}

.important-notices {
    margin: 3rem 0;
}

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

.notice-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.notice-item:hover {
    transform: translateY(-5px);
    border-color: #00D4FF;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.notice-item h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.4rem;
    color: #00D4FF;
    margin-bottom: 1rem;
}

.game-display {
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.game-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.game-header h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    color: #00D4FF;
    margin-bottom: 1rem;
}

.game-header p {
    font-size: 1.1rem;
    opacity: 0.85;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid #00D4FF;
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.highlights-grid {
    margin: 4rem 0;
}

.section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #00D4FF;
}

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

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: #00D4FF;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.highlight-card h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.4rem;
    color: #00D4FF;
    margin-bottom: 1rem;
}

.platform-info {
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.platform-info h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    color: #00D4FF;
    margin-bottom: 2rem;
    text-align: center;
}

.info-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.play-page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
}

.play-page-header h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3rem;
    color: #00D4FF;
    margin-bottom: 1rem;
}

.play-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.instructions-panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.instructions-panel h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    color: #00D4FF;
    margin-bottom: 1.5rem;
}

.instructions-content {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.instruction-item {
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 4px solid #00D4FF;
}

.tech-note {
    background: rgba(0, 212, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #00D4FF;
}

.game-play-area {
    margin: 3rem 0;
}

.game-container-large {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid #00D4FF;
}

.game-container-large iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.legal-content-section {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.legal-content-section h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3rem;
    color: #00D4FF;
    margin-bottom: 0.5rem;
}

.update-info {
    opacity: 0.7;
    margin-bottom: 3rem;
    font-style: italic;
}

.term-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.term-section:last-child {
    border-bottom: none;
}

.term-section h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    color: #00D4FF;
    margin-bottom: 1.25rem;
}

.term-section p {
    margin-bottom: 1rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.site-footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid #00D4FF;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Exo 2', sans-serif;
    color: #00D4FF;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

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

.footer-copyright {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 100%);
    padding: 3.5rem;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border: 2px solid #00D4FF;
}

.age-modal-content h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.2rem;
    color: #00D4FF;
    margin-bottom: 1.5rem;
}

.age-modal-content p {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-accept, .btn-reject {
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Exo 2', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, #00D4FF 0%, #5B86E5 100%);
    color: white;
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-reject {
    background: #555;
    color: white;
}

.btn-reject:hover {
    background: #333;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 2px solid #00D4FF;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .notice-container, .grid-layout {
        grid-template-columns: 1fr;
    }

    .legal-content-section {
        padding: 2rem 1.5rem;
    }

    .legal-content-section h1 {
        font-size: 2.2rem;
    }

    .game-frame, .game-container-large {
        aspect-ratio: 16/9;
    }
}
