* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #e0e7ff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #6366f1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fbbf24;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fbbf24;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.main-nav a:hover::after {
    width: 80%;
}

.hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #c7d2fe;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.7);
}

.intro {
    padding: 80px 20px;
    background: rgba(15, 12, 41, 0.5);
}

.intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 30px;
}

.intro p {
    font-size: 1.15rem;
    color: #c7d2fe;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
}

.features {
    padding: 80px 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #fbbf24;
    margin-bottom: 15px;
}

.feature-card p {
    color: #c7d2fe;
    font-size: 1rem;
}

.notices {
    padding: 80px 20px;
    background: rgba(15, 12, 41, 0.7);
}

.notices h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 50px;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.notice-box {
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid;
}

.notice-box.warning {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #ef4444;
}

.notice-box.info {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
}

.notice-box.age {
    background: rgba(251, 191, 36, 0.1);
    border-left-color: #fbbf24;
}

.notice-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e0e7ff;
}

.notice-box p {
    color: #c7d2fe;
    line-height: 1.8;
}

.game-preview {
    padding: 80px 20px;
}

.game-preview h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 40px;
}

.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
    border: 3px solid #6366f1;
}

.game-container iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.game-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.game-info p {
    color: #c7d2fe;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.play-link {
    display: inline-block;
    color: #fbbf24;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.play-link:hover {
    transform: translateX(10px);
}

footer {
    background: rgba(15, 12, 41, 0.95);
    border-top: 2px solid #6366f1;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: #c7d2fe;
    margin-bottom: 15px;
}

.responsible-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.responsible-links a {
    color: #a5b4fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.responsible-links a:hover {
    color: #fbbf24;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #a5b4fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fbbf24;
}

.footer-text {
    color: #e0e7ff;
    font-weight: 600;
}

.footer-disclaimer {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.1rem;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-content {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #6366f1;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
}

.age-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fbbf24;
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-content p {
    color: #e0e7ff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.age-buttons button {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
}

.btn-yes {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
}

.btn-no {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.btn-no:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.5);
}

.play-page {
    padding: 40px 20px 80px;
}

.play-container {
    max-width: 1400px;
    margin: 0 auto;
}

.play-container h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.game-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
    border: 3px solid #6366f1;
    margin-bottom: 30px;
}

.game-frame iframe {
    width: 100%;
    height: 800px;
    display: block;
}

.play-notice {
    text-align: center;
    padding: 25px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 15px;
    border-left: 5px solid #fbbf24;
}

.play-notice p {
    color: #e0e7ff;
    font-size: 1.15rem;
    font-weight: 600;
}

.legal-page {
    padding: 40px 20px 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 12, 41, 0.7);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.legal-container h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 15px;
}

.updated {
    color: #a5b4fc;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: #c7d2fe;
    margin-bottom: 15px;
}

.legal-section p,
.legal-section li {
    color: #c7d2fe;
    line-height: 1.9;
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 25px;
    margin-top: 15px;
}

.legal-section li {
    margin-bottom: 8px;
}

.disclaimer-highlight {
    background: rgba(99, 102, 241, 0.15);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #6366f1;
    margin-bottom: 50px;
}

.disclaimer-highlight h2 {
    color: #fbbf24;
}

.legal-section a {
    color: #fbbf24;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(15, 12, 41, 0.98);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        transition: right 0.4s ease;
        border-left: 2px solid #6366f1;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav a {
        padding: 20px 15px;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    }

    .main-nav a::after {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro h2,
    .features h2,
    .notices h2,
    .game-preview h2 {
        font-size: 2rem;
    }

    .feature-grid,
    .notice-grid {
        grid-template-columns: 1fr;
    }

    .game-container iframe,
    .game-frame iframe {
        height: 500px;
    }

    .play-container h1 {
        font-size: 2rem;
    }

    .legal-container {
        padding: 30px 25px;
    }

    .legal-container h1 {
        font-size: 2.2rem;
    }

    .age-content {
        margin: 20px;
        padding: 40px 30px;
    }

    .age-buttons {
        flex-direction: column;
    }
}
