@import url('https://fonts.googleapis.com/css?family=Orbitron:wght@500;700&display=swap');

:root {
  --primary: #19fff2;
  --secondary: #16181e;
  --accent: #0ff0fc;
  --card-bg: #22242c;
  --text: #eef6fb;
  --shadow: 0 2px 16px rgba(25,255,242,0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Orbitron', Arial, sans-serif;
  background: linear-gradient(135deg, #16181e 60%, #20232b 100%);
  color: var(--text);
  min-height: 100vh;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  padding: 1rem 2rem;
  box-shadow: var(--shadow);
  border-bottom: 2px solid var(--primary);
}

.logo {
  height: 240px;
  width: auto;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 1.5rem;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.2s;
  letter-spacing: 1px;
}

nav a:hover {
  color: var(--accent);
}

main {
  max-width: 1100px;
  margin: 2rem auto 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  color: var(--primary);
  margin-top: 0;
}

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

.game-item, .asset-item {
  background: #181a20;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s;
}

.game-item:hover, .asset-item:hover {
  transform: translateY(-4px) scale(1.03);
  border: 1px solid var(--primary);
}

iframe {
  width: 100%;
  height: 260px;
  border-radius: 6px;
  background: #000;
  margin-bottom: 0.5rem;
}

.asset-item img, .asset-item video {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  color: #888;
  font-size: 1rem;
  letter-spacing: 2px;
  background: var(--card-bg);
  border-top: 2px solid var(--primary);
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 700px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  main {
    padding: 0 0.5rem;
  }
  .games-grid, .assets-grid {
    grid-template-columns: 1fr;
  }
}
