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

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

.main-header {
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1126 100%);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #00d9ff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    font-size: 2.5rem;
    color: #00d9ff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px #00d9ff);
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px #00d9ff);
    }
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00d9ff;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d9ff;
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: #00d9ff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    width: 30px;
    height: 3px;
    background: #00d9ff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: rgba(10, 14, 39, 0.98);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
    border-bottom: 3px solid #00d9ff;
}

.mobile-menu.show {
    display: flex;
}

.mobile-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link.active {
    color: #00d9ff;
    border-left-color: #00d9ff;
    background: rgba(0, 217, 255, 0.1);
}

.desktop-only {
    display: flex;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 20px;
    margin: 2rem 0;
}

.hero-content {
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00d9ff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.tag {
    background: rgba(0, 217, 255, 0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid #00d9ff;
    font-size: 1.1rem;
}

.about-section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00d9ff;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1126 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.about-box:hover {
    border-color: #00d9ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.box-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #00d9ff;
    margin-bottom: 1rem;
}

.notice-section {
    padding: 3rem 0;
}

.notice-container {
    background: linear-gradient(135deg, rgba(255, 0, 100, 0.1) 0%, rgba(255, 0, 0, 0.1) 100%);
    border: 3px solid #ff0066;
    border-radius: 15px;
    padding: 2.5rem;
}

.notice-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #ff0066;
    margin-bottom: 2rem;
}

.notice-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notice-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff0066;
}

.game-showcase {
    padding: 4rem 0;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.game-frame-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    padding: 1rem;
    border-radius: 15px;
    border: 3px solid #00d9ff;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.game-frame {
    width: 100%;
    height: 650px;
    border-radius: 10px;
}

.game-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 10px;
}

.features-showcase {
    padding: 4rem 0;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-item {
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1126 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #00d9ff;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00d9ff;
    margin-bottom: 0.8rem;
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 20px;
    margin: 2rem 0;
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00d9ff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #00d9ff;
    color: #0a0e27;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 3px solid #00d9ff;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.cta-button:hover {
    background: transparent;
    color: #00d9ff;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.8);
}

.page-hero {
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #00d9ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.play-section {
    padding: 2rem 0 4rem;
}

.play-instructions {
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1126 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #00d9ff;
}

.play-instructions h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00d9ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.play-instructions ul {
    margin-left: 2rem;
}

.play-instructions li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.game-frame-full {
    background: #000;
    padding: 1rem;
    border-radius: 15px;
    border: 3px solid #00d9ff;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.game-frame-full iframe {
    width: 100%;
    height: 750px;
    border-radius: 10px;
}

.play-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 10px;
}

.legal-section {
    padding: 2rem 0 4rem;
}

.legal-document {
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1126 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.legal-document h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #00d9ff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-document h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00d9ff;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-document p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.legal-document ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.8rem;
}

.legal-highlight,
.warning-box {
    background: rgba(0, 217, 255, 0.15);
    border: 3px solid #00d9ff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.main-footer {
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1126 100%);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid #00d9ff;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00d9ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

.footer-list a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.3);
    opacity: 0.7;
    max-width: 1400px;
    margin: 0 auto;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

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

.age-gate-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1126 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 550px;
    margin: 20px;
    text-align: center;
    border: 3px solid #00d9ff;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.5);
}

.age-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #00d9ff;
    margin-bottom: 1.5rem;
}

.age-gate-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
}

.age-btn {
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: #00d9ff;
    color: #0a0e27;
    border: 3px solid #00d9ff;
}

.age-btn.yes:hover {
    background: transparent;
    color: #00d9ff;
    transform: scale(1.05);
}

.age-btn.no {
    background: transparent;
    color: #ff0066;
    border: 3px solid #ff0066;
}

.age-btn.no:hover {
    background: #ff0066;
    color: #fff;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .age-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .desktop-only {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .brand-name {
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .features-list {
        grid-template-columns: repeat(4, 1fr);
    }
}
