/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  font-family: 'Orbitron', sans-serif;
  color: #e0e0e0;
  line-height: 1.6;
}

/* 🌆 Navbar with background image */
.header {
  background: url('header.jpg') no-repeat center center;
  background-size: 100% 100%; /* Keep original image size */
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 4px solid #FF2A68;
  position: relative;
  overflow: hidden; /* Ensures cropped sides don't overflow */
}

.header-img {
  height: 100%;
  object-fit: contain;
}

.header-left,
.header-right {
  height: 100%;
  display: flex;
  align-items: center;
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.float-up-down {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* move up 10px */
  }
}


/* Navigation */
.navbar-center {
  display: flex;
  justify-content: center;
  background-color: #111;
  padding: 1rem 0;
  box-shadow: 0 4px 8px #00ffff88;
}

.nav-buttons {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-buttons a {
  color: #20f7c4;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-buttons a:hover {
  text-shadow: 0 0 8px #20f7c4;
  border-bottom: 2px solid #20f7c4;
}

/* Hero Section */
.content {
  text-align: center;
  padding: 3rem 1rem;
}

.content h1 {
  font-size: 3rem;
  color: #ff007f;
  text-shadow: 0 0 10px #ff007f;
}

.content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #cccccc;
}

/* Showcase */
.showcase {
  padding: 2rem;
  text-align: center;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
}

.game-card {
  border: 1px solid #333;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffff55;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: scale(1.05);
}

.game-card img {
  width: 200px;
  border-radius: 6px;
}

/* Download CTA */
.download-cta {
  text-align: center;
}

.download-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Community */
.community {
  padding: 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-links a {
  color: #00ffff;
  transition: 0.3s;
}

.social-links a:hover {
  text-shadow: 0 0 10px #00ffff;
}

/* Features */
.features {
  padding: 2rem;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 0 12px #ff007f33;
  transition: transform 0.3s;
}

.feature img {
  margin-bottom: 1rem;
}

.feature h3 {
  color: #00ffff;
  margin-bottom: 0.5rem;
}

.steam-link {
  background-image: url('button.png');
  background-size: cover;       /* or 'contain' */
  display: inline-block;        /* Makes it behave like a button */
  padding: 0.75rem 1.5rem;
  text-align: center;           /* Center the text horizontally */
  text-decoration: none;        /* Remove underline */
  color: inherit;               /* Inherit parent text color */
  border: none;
  font-weight: bold;
  cursor: pointer;
  width: 378px;
  height: 82px;
  font-size: 25pt;
}

/* Optional: prevent color change on hover */
.steam-link:hover,
.steam-link:focus,
.steam-link:active {
  color: #20f7c4;
  text-decoration: none;
}

.game-link {
  text-align: center;
  text-decoration: none;
  color: inherit;
}

/* Optional: prevent color change on hover */
.game-link:hover,
.game-link:focus,
.game-link:active {
  color: #20f7c4;
  text-decoration: none;
}

/* Footer */
.footer {
  display: flex;
  justify-content: center;
  background-color: #111;
  padding: 1rem 0;
  box-shadow: 0 -4px 8px #00ffff88;
}

