* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid #ff00ff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.logo-glow {
    font-size: 2rem;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    }
    50% {
        text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff;
    }
}

.logo-text {
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 0, 255, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.tagline {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    background: rgba(255, 0, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #ff00ff;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.info-section {
    margin: 3rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.4);
}

.info-card.highlight {
    background: rgba(255, 0, 255, 0.1);
    border: 2px solid #ff00ff;
}

.info-card h2 {
    color: #ff00ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.notice-list {
    list-style: none;
    padding-left: 0;
}

.notice-list li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.notice-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
}

.game-showcase {
    margin: 4rem 0;
    text-align: center;
}

.game-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.game-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.game-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.game-notice {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid #00ffff;
}

.extra-content {
    margin: 4rem 0;
}

.content-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.column h3 {
    color: #ff00ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.column p {
    margin-bottom: 1rem;
}

.stats-section {
    margin: 4rem 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box {
    background: rgba(255, 0, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff00ff;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff00ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.play-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.play-hero h1 {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.game-play-section {
    margin: 3rem 0;
}

.game-instructions {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.game-instructions h2 {
    color: #ff00ff;
    margin-bottom: 1rem;
}

.game-instructions p {
    margin: 0.5rem 0;
}

.game-container-full {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.game-tips {
    margin-top: 2rem;
    background: rgba(0, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffff;
}

.game-tips h3 {
    color: #00ffff;
    margin-bottom: 1rem;
}

.game-tips ul {
    list-style: none;
    padding-left: 0;
}

.game-tips li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.game-tips li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #ff00ff;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.legal-section h2 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin: 0.5rem 0;
}

.highlight-disclaimer {
    background: rgba(255, 0, 255, 0.15);
    border: 2px solid #ff00ff;
}

footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid #ff00ff;
    margin-top: 4rem;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #ff00ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ffff;
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    color: #888;
}

.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, #1a0033, #330066);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #ff00ff;
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.5);
}

.age-gate-content h2 {
    color: #ff00ff;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.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-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
}

.yes-btn {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    color: #000;
}

.yes-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

.no-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #666;
}

.no-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 0, 255, 0.3);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .feature-badges {
        flex-direction: column;
        align-items: center;
    }

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .legal-content {
        padding: 2rem 1rem;
    }
}
