body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #000;
  color: white;
  overflow-x: hidden;
}

/* Floating Background */
.floating-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.floating-bg span {
  position: absolute;
  bottom: -150px;
  width: 40px;
  height: 40px;
  background: rgba(0,120,255,0.2);
  border-radius: 50%;
  animation: float 15s linear infinite;
}

.floating-bg span:nth-child(1){ left: 10%; animation-duration: 12s; }
.floating-bg span:nth-child(2){ left: 30%; animation-duration: 18s; }
.floating-bg span:nth-child(3){ left: 50%; animation-duration: 16s; }
.floating-bg span:nth-child(4){ left: 70%; animation-duration: 20s; }
.floating-bg span:nth-child(5){ left: 90%; animation-duration: 14s; }

@keyframes float {
  from { transform: translateY(0); opacity: 0.7; }
  to { transform: translateY(-120vh); opacity: 0; }
}

/* Navigation */
.top-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 20px;
  font-weight: 600;
  font-size: 1.2rem;
}

.top-nav a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.top-nav a:hover,
.top-nav a.active {
  color: #0078ff;
}

/* Pages */
.page {
  display: none;
  padding: 40px 20px;
}

.page.active {
  display: block;
}

/* Hero */
.hero {
  text-align: center;
  margin-top: 80px;
}

.hero h2 {
  font-size: 2.5rem;
}

.hero p {
  color: #bbb;
  margin-top: 10px;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Games */
.genre-section {
  margin-bottom: 50px;
}

.genre-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.game-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s;
}

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

.game-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.game-card h3 {
  padding: 10px;
  font-size: 0.9rem;
}

/* Movies */
.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.movie-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s;
}

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

.movie-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.movie-card h3 {
  padding: 10px;
  font-size: 1rem;
}
