* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0f0c29 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #00d4ff;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7b2ff7);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #00d4ff;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

main {
    padding: 40px 0;
}

.hero {
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(90deg, #00d4ff, #7b2ff7, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.tagline {
    font-size: 22px;
    color: #b0b0b0;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.feature-card .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #00d4ff;
    margin-bottom: 15px;
}

.important-notices {
    margin: 60px 0;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.notice-box {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.1), rgba(0, 212, 255, 0.1));
    border-left: 4px solid #00d4ff;
    padding: 30px;
    border-radius: 10px;
}

.notice-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #00d4ff;
    margin-bottom: 15px;
}

.game-showcase {
    margin: 60px 0;
    text-align: center;
}

.game-showcase h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #00d4ff;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.game-info p {
    font-size: 18px;
    color: #b0b0b0;
}

.info-blocks {
    margin: 60px 0;
}

.info-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #7b2ff7;
    margin-bottom: 20px;
}

.info-item p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.play-page {
    padding: 40px 0;
}

.play-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: #00d4ff;
    text-align: center;
    margin-bottom: 20px;
}

.play-intro {
    text-align: center;
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.game-frame {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.game-frame iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-details {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.game-details h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #00d4ff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.game-details h3:first-child {
    margin-top: 0;
}

.game-details p {
    line-height: 1.8;
    color: #d0d0d0;
}

.legal-page {
    padding: 40px 0;
}

.legal-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: #00d4ff;
    margin-bottom: 10px;
}

.updated {
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    color: #7b2ff7;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #d0d0d0;
}

footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #00d4ff;
    margin-bottom: 15px;
}

.support-links {
    list-style: none;
}

.support-links li {
    margin: 10px 0;
}

.support-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-links a:hover {
    color: #00d4ff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #00d4ff;
}

.copyright {
    text-align: center;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.age-popup {
    display: flex;
    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-popup.hidden {
    display: none;
}

.age-content {
    background: linear-gradient(135deg, #1a1a3e, #0a0e27);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.age-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.age-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.age-buttons button {
    font-family: 'Orbitron', sans-serif;
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.age-buttons button:first-child {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: white;
}

.age-buttons button:first-child:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
}

.deny-btn {
    background: #333 !important;
    color: #999 !important;
}

.deny-btn:hover {
    background: #444 !important;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        border-left: 2px solid rgba(0, 212, 255, 0.3);
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe,
    .game-frame iframe {
        height: 500px;
    }
    
    .age-content {
        padding: 30px;
        margin: 20px;
    }
    
    .age-content h2 {
        font-size: 24px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-buttons button {
        width: 100%;
    }
    
    .game-details {
        padding: 25px;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .info-wrapper {
        grid-template-columns: 1fr;
    }
}
