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

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #00f7ff33;
}

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

.logo {
    color: #00f7ff;
    text-shadow: 0 0 15px #00f7ff;
    font-size: 1.8rem;
}

.nav-links a {
    color: #e0e0e0;
    margin-left: 2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00f7ff;
    text-shadow: 0 0 8px #00f7ff;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a0033, #000011);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(0, 247, 255, 0.04) 25px, rgba(0, 247, 255, 0.04) 50px);
    animation: matrix 25s linear infinite;
}

.neon-title {
    font-size: 5rem;
    color: #00f7ff;
    text-shadow: 0 0 20px #00f7ff, 0 0 40px #00f7ff, 0 0 60px #ff00aa;
    margin-bottom: 1rem;
}

.tagline { font-size: 1.8rem; margin-bottom: 0.5rem; }
.status { color: #ff00aa; font-size: 1.4rem; }

.section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.release-card {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #00f7ff33;
    transition: transform 0.3s, box-shadow 0.3s;
}

.release-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 247, 255, 0.25);
}

.embed-container {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .neon-title { font-size: 3.2rem; }
    .nav-links { flex-direction: column; gap: 1rem; }
}
