/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Orbitron', sans-serif;
  background: #000;
  color: #fff;
  scroll-behavior: smooth;
  line-height: 1.6;
  font-size: 16px;
}

/* Header */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid #333;
  z-index: 1000;
}

.logo img { height: 36px; }

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 1rem;
}
nav a:hover { color: #0ff; }

/* Sections */
.section {
  padding: 100px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Hero */
.hero h1 { font-size: 2.8rem; margin-bottom: 12px; }
.hero p { font-size: 1.3rem; margin-bottom: 20px; color: #ccc; }

/* Button */
.btn-5 {
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: transparent;
  color: #fff;
  border: 2px solid #0ff;
  cursor: pointer;
  transition: 0.3s;
}
.btn-5:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 8px #0ff, 0 0 20px #0ff;
}

/* Headings */
.section h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  border-bottom: 2px solid #0ff;
  display: inline-block;
  padding-bottom: 4px;
}

/* Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.game-card {
  background: #111;
  border: 1px solid #333;
  padding: 12px;
  transition: transform 0.3s;
}
.game-card img { width: 100%; border-radius: 6px; }
.game-card p { margin-top: 10px; font-size: 1rem; }
.game-card:hover { transform: scale(1.04); }

/* Contact */
#contact .contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.2rem;
  align-items: center;
}

.contact-links a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-links a img {
  width: 24px;
  height: 24px;
}

.contact-links a:hover { color: #0ff; }
.contact-links a:hover img { filter: drop-shadow(0 0 6px #0ff); }
