:root {
  --bg-color: #050505;
  --text-color: #ffffff;
  --text-muted: #a0a0a0;
  --accent-cyan: #00f2ff;
  --accent-purple: #8a2be2;
  --accent-gradient: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 900;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* --- Layout --- */

section {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Navigation --- */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-family: 'Rubik Glitch', cursive;
  font-weight: 400;
  font-size: 2rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.5));
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: 30px;
}

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

/* --- Hero Section --- */

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.05), transparent 70%);
  z-index: -1;
}

.hero-logo {
  width: 200px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.3));
  animation: float 6s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.5rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* --- Games Section --- */

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.game-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.game-card:hover .game-image {
  transform: scale(1.05);
}

.game-info {
  padding: 30px;
}

.game-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.game-info p {
  color: var(--text-muted);
}

/* --- Animations --- */

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}