:root {
  --primary-gold: #f4d03f;
  --bg-dark: #0f0f0f;
  --card-bg: rgba(30, 30, 30, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  background-color: var(--bg-dark);
  /* Animated Mesh Gradient Background */
  background: radial-gradient(circle at 50% 10%, #2a2a2a, #0f0f0f 80%);
  color: #fff;
  min-height: 100vh;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, .brand-font {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

/* --- Header --- */
header {
  padding: 3rem 1rem 1rem 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.brand-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(244, 208, 63, 0.3);
  margin-bottom: 0.5rem;
}

.brand-accent {
  color: var(--primary-gold);
}

.brand-subtitle {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Main Section --- */
.game-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  gap: 3rem;
  flex-wrap: wrap;
  z-index: 2;
}

/* --- Game Cards (Glassmorphism) --- */
.game-card {
  width: 300px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-decoration: none;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 
              0 0 15px rgba(244, 208, 63, 0.2);
  border-color: var(--primary-gold);
}

.card-img-wrapper {
  width: 100%;
  height: 180px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.game-card:hover .card-img-wrapper img {
  opacity: 1;
  transform: scale(1.1);
  transition: transform 6s ease;
}

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.card-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.card-action {
  font-size: 0.9rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--primary-gold);
  border-radius: 50px;
  transition: background 0.2s ease;
}

.game-card:hover .card-action {
  background: var(--primary-gold);
  color: #000;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #222;
  font-size: 0.85rem;
  color: #666;
}

/* --- Responsive Tweaks --- */
@media (max-width: 768px) {
  .brand-title { font-size: 2.5rem; }
  .game-section { gap: 2rem; }
}