* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00ffff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.5rem;
    color: #00ffff;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    font-size: 0.9rem;
}

nav a:hover {
    color: #00ffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(26, 26, 46, 0.3) 100%);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Notices Section */
.notices {
    padding: 3rem 0;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.notice-card {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.notice-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.about h2 {
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Game Section */
.game-section {
    padding: 3rem 0;
}

.game-section h2 {
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-section > .container > p {
    text-align: center;
    margin-bottom: 2rem;
}

.game-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border: 3px solid #00ffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.game-container iframe {
    width: 100%;
    height: 600px;
    display: block;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background: rgba(0, 255, 255, 0.02);
}

.features h2 {
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 1.5rem;
}

.feature h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Responsibility Section */
.responsibility {
    padding: 3rem 0;
}

.responsibility h2 {
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.responsibility p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    border-top: 2px solid #00ffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #00ffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Age Gate */
.age-gate {
    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-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
    border: 3px solid #00ffff;
    border-radius: 15px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.age-gate-content h2 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.age-gate-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-gate-buttons button {
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #00ffff;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.age-gate-buttons button:hover {
    background: #00ffff;
    color: #000;
}

.age-gate-buttons button.decline {
    border-color: #ff0040;
    color: #ff0040;
    background: rgba(255, 0, 64, 0.1);
}

.age-gate-buttons button.decline:hover {
    background: #ff0040;
    color: #fff;
}

/* Play Page Styles */
.play-header {
    padding: 3rem 0;
    text-align: center;
    background: rgba(0, 255, 255, 0.05);
}

.play-header h1 {
    color: #00ffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.game-play {
    padding: 3rem 0;
}

.game-info {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.game-info h2 {
    color: #00ffff;
    margin-bottom: 1rem;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border: 3px solid #00ffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.play-reminder {
    padding: 2rem 0;
}

.reminder-box {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.reminder-box h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-page h1 {
    color: #00ffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.update-date {
    text-align: center;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: #00ffff;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p, .legal-page ul {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-page ul {
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        display: none;
        border-top: 2px solid #00ffff;
    }

    nav.active {
        display: flex;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-container iframe,
    .game-frame iframe {
        height: 400px;
    }

    .age-gate-content {
        padding: 2rem;
        margin: 1rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
