* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.age-gate {
    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-gate.active {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0e27 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5), 0 0 80px rgba(255, 0, 255, 0.3);
}

.age-gate-content h2 {
    color: #00ffff;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.age-gate-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: linear-gradient(135deg, #00ffff 0%, #00cccc 100%);
    color: #0a0e27;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.age-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.9);
}

.age-btn.no {
    background: linear-gradient(135deg, #ff00ff 0%, #cc00cc 100%);
    color: #0a0e27;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

.age-btn.no:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.9);
}

header {
    background: rgba(10, 14, 39, 0.95);
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    position: relative;
}

nav a:hover {
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #00ffff;
    margin: 4px 0;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.notice-banner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid #00ffff;
    font-weight: 700;
    color: #00ffff;
    font-size: 1.1rem;
}

.notice-icon {
    font-size: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.info-card h2 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.info-card p {
    color: #c0c0c0;
    line-height: 1.8;
}

.game-section {
    margin: 4rem 0;
}

.game-section h2 {
    text-align: center;
    color: #ff00ff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

.game-intro {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border: 3px solid #ff00ff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.4);
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.important-notices {
    margin: 4rem 0;
}

.important-notices h2 {
    text-align: center;
    color: #00ffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.notice-box {
    background: rgba(255, 0, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff00ff;
}

.notice-box h3 {
    color: #ff00ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.notice-box p {
    color: #c0c0c0;
    line-height: 1.8;
}

.extra-content {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.content-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.column h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.column p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.community-section {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border-radius: 20px;
}

.community-section h2 {
    color: #ff00ff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

.community-section > p {
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.play-hero {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.play-hero h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.play-hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
}

.play-instructions {
    margin-bottom: 3rem;
}

.play-instructions h2 {
    text-align: center;
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.instruction-card {
    background: rgba(0, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    text-align: center;
}

.instruction-card h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.instruction-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

.game-play-section {
    margin: 3rem 0;
}

.game-container-full {
    width: 100%;
    aspect-ratio: 16/9;
    border: 3px solid #ff00ff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.4);
}

.game-container-full iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.play-reminder {
    margin-top: 3rem;
}

.reminder-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff00ff;
    text-align: center;
}

.reminder-box h3 {
    color: #ff00ff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.reminder-box p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-hero {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border-radius: 20px;
}

.legal-hero h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.legal-date {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: rgba(0, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.legal-section h2 {
    color: #00ffff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-section h3 {
    color: #ff00ff;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.legal-section p {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-section ul {
    color: #c0c0c0;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #00ffff;
}

.disclaimer-highlight {
    border: 2px solid #ff00ff;
    background: rgba(255, 0, 255, 0.08);
}

footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 2px solid #00ffff;
    margin-top: 4rem;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ff00ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ffff;
    padding-left: 0.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #ff00ff;
    padding-left: 0.5rem;
}

.footer-note {
    color: #808080;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid #00ffff;
        box-shadow: -5px 0 30px rgba(0, 255, 255, 0.3);
    }

    nav.active {
        right: 0;
    }

    nav a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .content-columns {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 2rem;
    }

    .age-gate-content {
        padding: 2rem;
        margin: 1rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .notice-banner {
        flex-direction: column;
        gap: 0.5rem;
    }

    main {
        padding: 1rem;
    }

    .legal-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .play-hero h1 {
        font-size: 2rem;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}