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

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

.crt {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0,255,0,0.03) 2px, rgba(0,255,0,0.03) 4px);
  pointer-events: none;
  z-index: 9999;
  animation: scan 4s linear infinite;
}

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

header {
  position: fixed;
  top: 0; width: 100%;
  background: rgba(0,0,0,0.95);
  border-bottom: 4px solid #0f0;
  z-index: 1000;
}

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

.logo { font-size: 28px; color: #0f0; text-shadow: 0 0 10px #0f0; }
.neon { color: #f0f; text-shadow: 0 0 15px #f0f; }

ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

ul a {
  color: #0f0;
  text-decoration: none;
}

ul a:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #110033, #001122);
}

.game-screen {
  border: 8px solid #0f0;
  padding: 60px 80px;
  background: #000;
  text-align: center;
  box-shadow: 0 0 60px #0f0;
}

.glitch {
  font-size: 4.5rem;
  color: #0f0;
  animation: glitch 2s infinite;
}

@keyframes glitch {
  0% { text-shadow: 3px 0 #f0f, -3px 0 #0ff; }
  20% { text-shadow: -3px 0 #f0f, 3px 0 #0ff; }
}

.tagline { margin: 30px 0; font-size: 1.2rem; color: #ff0; }

.pixel-button {
  background: #000;
  color: #0f0;
  border: 4px solid #0f0;
  padding: 20px 40px;
  font-family: 'Press Start 2P', cursive;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  margin: 30px 0;
}

.pixel-button:hover {
  background: #0f0;
  color: #000;
  transform: scale(1.1);
}

.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.dark { background: #111; }

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 60px;
  color: #ff0;
  text-shadow: 0 0 15px #ff0;
}

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

.card {
  border: 4px solid #0f0;
  padding: 30px;
  background: rgba(0,20,10,0.8);
}

.card:hover { transform: translateY(-15px); }

.card-header {
  color: #f0f;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

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

.gallery-item {
  background: #111;
  border: 4px solid #ff0;
  padding: 40px 20px;
  text-align: center;
  color: #ff0;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact input, .contact textarea {
  padding: 20px;
  background: #000;
  border: 4px solid #0f0;
  color: #0f0;
  font-family: 'Press Start 2P', cursive;
}

footer {
  text-align: center;
  padding: 40px;
  background: #000;
  border-top: 4px solid #0f0;
  font-size: 0.8rem;
}