* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', cursive;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Starfield Background */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #121212 0%, #1a0b3d 50%, #121212 100%);
}

.starfield::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #08f7fe, transparent),
        radial-gradient(1px 1px at 40px 70px, #ff007c, transparent),
        radial-gradient(1px 1px at 90px 40px, #f5d300, transparent),
        radial-gradient(1px 1px at 130px 80px, #08f7fe, transparent),
        radial-gradient(1px 1px at 160px 30px, #ff007c, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 3s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff007c;
    transition: transform 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo .neon-text {
    font-size: 16px;
    color: #ff007c;
    text-shadow: 0 0 10px #ff007c, 0 0 20px #ff007c, 0 0 30px #ff007c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #08f7fe;
    text-shadow: 0 0 5px #08f7fe;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ff007c;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1000px;
}

.arcade-machine {
    margin-bottom: 32px;
    position: relative;
}

.screen {
    background: linear-gradient(135deg, #1a0b3d, #240046);
    border: 4px solid #ff007c;
    border-radius: 8px;
    padding: 48px 32px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 124, 0.5);
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(8, 247, 254, 0.1) 2px,
        rgba(8, 247, 254, 0.1) 4px
    );
    pointer-events: none;
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-title {
    font-size: clamp(16px, 4vw, 24px);
    color: #08f7fe;
    margin: 0 0 24px 0;
    text-shadow: 0 0 10px #08f7fe;
    animation: pulse 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: clamp(8px, 2vw, 12px);
    color: #f5d300;
    margin-bottom: 32px;
    text-shadow: 0 0 5px #f5d300;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 16px;
    color: #ff007c;
    text-shadow: 0 0 10px #ff007c;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 6px;
    color: #08f7fe;
    text-shadow: 0 0 5px #08f7fe;
}

@keyframes pulse {
    0% { text-shadow: 0 0 10px #08f7fe; }
    100% { text-shadow: 0 0 20px #08f7fe, 0 0 30px #08f7fe; }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s ease-in-out infinite alternate;
    color: #ff007c;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s ease-in-out infinite alternate;
    color: #f5d300;
    z-index: -2;
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, 2px); }
    80% { transform: translate(-2px, -2px); }
    100% { transform: translate(0); }
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    border: 2px solid;
    color: #ffffff;
    padding: 16px 32px;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background: transparent;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff007c, #ff4081);
    border-color: #ff007c;
}

.cta-button.secondary {
    background: linear-gradient(45deg, #08f7fe, #40e0d0);
    border-color: #08f7fe;
    color: #121212;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 124, 0.4);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

.city-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #1a0b3d, transparent);
    z-index: -1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(20px, 5vw, 32px);
    margin-bottom: 16px;
    color: #08f7fe;
    text-shadow: 0 0 15px #08f7fe;
}

.section-subtitle {
    font-size: clamp(8px, 2vw, 12px);
    color: #f5d300;
    text-shadow: 0 0 5px #f5d300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.neon-text {
    color: #ff007c;
    text-shadow: 0 0 10px #ff007c, 0 0 20px #ff007c, 0 0 30px #ff007c;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(26, 11, 61, 0.2));
}

.games-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 2px solid #08f7fe;
    color: #08f7fe;
    padding: 12px 24px;
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: #08f7fe;
    color: #121212;
    box-shadow: 0 0 15px rgba(8, 247, 254, 0.4);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 16px;
}

.game-card {
    background: linear-gradient(135deg, #1a0b3d, #240046);
    border: 2px solid #08f7fe;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: #ff007c;
    box-shadow: 0 16px 40px rgba(255, 0, 124, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(8, 247, 254, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.game-card:hover .card-glow {
    opacity: 1;
}

.game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff007c;
    color: #ffffff;
    padding: 4px 8px;
    font-size: 6px;
    border-radius: 4px;
    text-shadow: none;
}

.game-badge.popular {
    background: #f5d300;
    color: #121212;
}

.game-badge.hot {
    background: #ff4500;
}

.game-badge.featured {
    background: linear-gradient(45deg, #ff007c, #08f7fe);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 16px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.game-card:hover .game-image {
    filter: brightness(1);
}

.game-title {
    font-size: 10px;
    color: #08f7fe;
    margin-bottom: 12px;
    text-shadow: 0 0 5px #08f7fe;
}

.game-description {
    font-size: 7px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 16px;
}

.game-features {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(8, 247, 254, 0.2);
    color: #08f7fe;
    padding: 4px 8px;
    font-size: 6px;
    border-radius: 4px;
    border: 1px solid #08f7fe;
}

.play-button {
    background: linear-gradient(45deg, #f5d300, #ffd700);
    border: 2px solid #f5d300;
    color: #121212;
    padding: 12px 24px;
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.play-button:hover {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245, 211, 0, 0.4);
}

.games-footer {
    text-align: center;
    margin-top: 48px;
}

.games-note {
    font-size: 8px;
    color: #888888;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(26, 11, 61, 0.1);
}

.about-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-heading {
    font-size: 14px;
    color: #ff007c;
    margin-bottom: 24px;
    text-shadow: 0 0 10px #ff007c;
}

.pixel-text {
    font-size: 10px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 24px;
}

.about-highlights {
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.highlight-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 8px;
    color: #08f7fe;
    margin-bottom: 8px;
    text-shadow: 0 0 5px #08f7fe;
}

.highlight-content p {
    font-size: 7px;
    color: #cccccc;
    line-height: 1.6;
}

.neon-frame {
    background: linear-gradient(135deg, #1a0b3d, #240046);
    border: 2px solid #f5d300;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 0 20px rgba(245, 211, 0, 0.2);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-box {
    text-align: center;
    padding: 16px;
    background: rgba(8, 247, 254, 0.1);
    border: 1px solid #08f7fe;
    border-radius: 4px;
}

.stat-value {
    display: block;
    font-size: 16px;
    color: #08f7fe;
    text-shadow: 0 0 10px #08f7fe;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 6px;
    color: #ffffff;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(36, 0, 70, 0.2));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 0 16px;
}

.feature-card {
    background: linear-gradient(135deg, #1a0b3d, #240046);
    border: 2px solid #f5d300;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 211, 0, 0.2);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 10px;
    color: #f5d300;
    margin-bottom: 16px;
    text-shadow: 0 0 5px #f5d300;
}

.feature-desc {
    font-size: 8px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    font-size: 7px;
    color: #cccccc;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.feature-list li::before {
    content: '▶';
    color: #08f7fe;
    position: absolute;
    left: 0;
    text-shadow: 0 0 5px #08f7fe;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: rgba(255, 0, 124, 0.05);
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.community-stat {
    text-align: center;
}

.community-stat .stat-number {
    display: block;
    font-size: 24px;
    color: #ff007c;
    text-shadow: 0 0 15px #ff007c;
    margin-bottom: 8px;
}

.community-stat .stat-label {
    font-size: 8px;
    color: #08f7fe;
    text-shadow: 0 0 5px #08f7fe;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.community-feature {
    background: linear-gradient(135deg, #1a0b3d, #240046);
    border: 2px solid #08f7fe;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.community-feature h4 {
    font-size: 10px;
    color: #08f7fe;
    margin-bottom: 12px;
    text-shadow: 0 0 5px #08f7fe;
}

.community-feature p {
    font-size: 8px;
    color: #cccccc;
    line-height: 1.6;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.1), rgba(18, 18, 18, 0.9));
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.news-card {
    background: linear-gradient(135deg, #1a0b3d, #240046);
    border: 2px solid #f5d300;
    border-radius: 8px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 211, 0, 0.2);
}

.news-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff007c;
    color: #ffffff;
    padding: 4px 8px;
    font-size: 6px;
    border-radius: 4px;
}

.news-badge.update {
    background: #08f7fe;
    color: #121212;
}

.news-badge.event {
    background: #f5d300;
    color: #121212;
}

.news-title {
    font-size: 10px;
    color: #f5d300;
    margin-bottom: 12px;
    text-shadow: 0 0 5px #f5d300;
}

.news-excerpt {
    font-size: 8px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-date {
    font-size: 6px;
    color: #888888;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: rgba(255, 0, 124, 0.1);
    border-top: 1px solid #ff007c;
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-title {
    font-size: 12px;
    color: #ff007c;
    margin-bottom: 24px;
    text-shadow: 0 0 10px #ff007c;
}

.disclaimer-text {
    font-size: 8px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 24px;
}

.disclaimer-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(8, 247, 254, 0.2);
    color: #08f7fe;
    padding: 8px 16px;
    font-size: 6px;
    border: 1px solid #08f7fe;
    border-radius: 4px;
    text-shadow: 0 0 5px #08f7fe;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 2px solid #08f7fe;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.footer-logo {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 8px;
    color: #08f7fe;
    margin-bottom: 16px;
    text-shadow: 0 0 5px #08f7fe;
}

.footer-copyright {
    font-size: 7px;
    color: #888888;
}

.footer-heading {
    font-size: 10px;
    color: #f5d300;
    margin-bottom: 16px;
    text-shadow: 0 0 5px #f5d300;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    color: #08f7fe;
    text-decoration: none;
    font-size: 8px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff007c;
    text-shadow: 0 0 5px #ff007c;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-divider {
    color: #666666;
    font-size: 8px;
}

.footer-powered {
    font-size: 7px;
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .screen {
        padding: 24px 16px;
    }
    
    .hero-title {
        font-size: 12px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 10px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .games-categories {
        flex-direction: column;
        align-items: center;
    }
}