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

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00d9ff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #00d9ff;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #00d9ff;
    transition: all 0.3s;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 0;
}

nav a:hover {
    color: #00d9ff;
}

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

    nav {
        position: fixed;
        top: 73px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 73px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s;
        border-left: 2px solid #00d9ff;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 18px;
    }
}

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

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

.age-modal-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #00d9ff;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.age-modal-content h2 {
    color: #00d9ff;
    margin-bottom: 20px;
    font-size: 28px;
}

.age-modal-content p {
    margin-bottom: 15px;
    font-size: 18px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.age-buttons button {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
}

.age-buttons button:first-child {
    background: #00d9ff;
    color: #0a0e27;
}

.age-buttons button:first-child:hover {
    background: #00b8d4;
    transform: translateY(-2px);
}

.age-buttons button:last-child {
    background: #ff4444;
    color: white;
}

.age-buttons button:last-child:hover {
    background: #cc0000;
}

.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.1) 0%, transparent 100%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00d9ff;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.hero .subtitle {
    font-size: 22px;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

.important-notices {
    padding: 60px 0;
}

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

.notice-card {
    background: rgba(0, 217, 255, 0.05);
    border: 2px solid #00d9ff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.notice-card .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.notice-card h3 {
    color: #00d9ff;
    margin-bottom: 15px;
    font-size: 22px;
}

.notice-card p {
    color: #b0b0b0;
    font-size: 16px;
}

.game-section {
    padding: 60px 0;
}

.game-section h2 {
    text-align: center;
    font-size: 36px;
    color: #00d9ff;
    margin-bottom: 15px;
}

.game-intro {
    text-align: center;
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 40px;
}

.game-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #00d9ff;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

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

.about {
    padding: 60px 0;
    background: rgba(0, 217, 255, 0.03);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about h2 {
    font-size: 36px;
    color: #00d9ff;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    color: #b0b0b0;
    font-size: 17px;
}

.features-list {
    background: rgba(0, 217, 255, 0.05);
    border: 2px solid #00d9ff;
    border-radius: 12px;
    padding: 30px;
}

.features-list h3 {
    color: #00d9ff;
    font-size: 28px;
    margin-bottom: 20px;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    color: #e0e0e0;
    font-size: 18px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.features-list li:last-child {
    border-bottom: none;
}

.stats {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    border: 2px solid #00d9ff;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #b0b0b0;
}

.play-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.play-hero h1 {
    font-size: 48px;
    color: #00d9ff;
    margin-bottom: 15px;
}

.play-hero p {
    font-size: 20px;
    color: #b0b0b0;
}

.game-play-section {
    padding: 40px 0 80px;
}

.game-info {
    margin-bottom: 50px;
}

.game-info h2 {
    font-size: 32px;
    color: #00d9ff;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-item {
    background: rgba(0, 217, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.info-item strong {
    color: #00d9ff;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.info-item p {
    color: #b0b0b0;
    font-size: 16px;
}

.game-container-full {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #00d9ff;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.game-container-full iframe {
    width: 100%;
    height: 100%;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    color: #00d9ff;
    margin-bottom: 10px;
}

.last-updated {
    color: #808080;
    font-size: 16px;
    margin-bottom: 40px;
}

.legal-content {
    background: rgba(0, 217, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.legal-content h2 {
    color: #00d9ff;
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 17px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #b0b0b0;
    font-size: 17px;
}

.legal-content a {
    color: #00d9ff;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid #00d9ff;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #00d9ff;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    color: #808080;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-content {
        padding: 25px;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .age-modal-content {
        margin: 20px;
        padding: 30px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-buttons button {
        width: 100%;
    }
}
