* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #1a0033 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ffd700;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s;
}

.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);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: #ffd700;
}

.hero {
    text-align: center;
    padding: 4rem 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.notice-box {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 900px;
}

.notice-box h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.notice-box ul {
    list-style: none;
    padding: 0;
}

.notice-box li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 1.1rem;
}

.notice-box li:last-child {
    border-bottom: none;
}

.game-container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    border: 2px solid #ffd700;
}

.game-container h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.5rem;
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1400px;
    padding: 0 20px;
}

.info-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.info-card p {
    color: #cccccc;
    font-size: 1.1rem;
}

.content-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.content-section h1 {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
}

footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem 20px;
    margin-top: 5rem;
    border-top: 2px solid #ffd700;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.age-popup {
    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-popup.active {
    display: flex;
}

.age-popup-content {
    background: linear-gradient(135deg, #1a0033, #330066);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #ffd700;
}

.age-popup-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.age-popup-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}

.age-btn:hover {
    transform: scale(1.05);
}

.age-btn.yes {
    background: #ffd700;
    color: #1a0033;
}

.age-btn.no {
    background: #ff4444;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        transition: left 0.3s;
        padding: 2rem 0;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    nav a {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 500px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
