@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: Assistant, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

.portfolio-container {
  max-width: 1920px;
}

.game-section {
  background: linear-gradient(to bottom, #b2deef, #fff);
  display: flex;
  justify-content: center; /* ✅ center horizontally */
  align-items: center; /* ✅ center vertically */
  min-height: 110vh; /* Optional: ensure enough height */
  background-repeat: no-repeat;
}
.main-container {
  width: 80%;
  position: relative;
  margin-bottom: 10px;
}
.image {
  width: 100%; /* container full width */
  margin: 0 auto; /* center horizontally */
  display: flex; /* center image inside */
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.image img {
  width: 100%; /* scale image to container */
  max-width: 100%; /* never overflow */
  height: auto; /* maintain aspect ratio */
  border: 4px solid #000; /* optional border */
  border-radius: 12px; /* rounded corners */
  object-fit: contain; /* make sure it's not cropped */
}
.game-title {
  font-size: 32px;
  margin-bottom: 15px;
  color: #000000;
}

.game-meta {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000000;
}

.game-description {
  font-size: 20px;

  margin: 20px 0;
  line-height: 1.6;
}

.store-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.store-badge {
  height: 50px;
  transition: transform 0.2s ease;
}

.store-badge:hover {
  transform: scale(1.05);
}

.store-badge.youtube {
  height: 50px;
}

@media (max-width: 600px) {
  .game-title {
    font-size: 22px;
  }
  .store-buttons .store-badge {
    display: block;
    margin-bottom: 10px;
  }
}
.announcement-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto;
  padding: 30px;
  border-radius: 20px;
  background: radial-gradient(circle at center, #0a0a0a, #111);
  box-shadow: 0 0 8px rgba(252, 230, 56, 0.487);
  width: fit-content;
  animation: pulseGlow 3s infinite ease-in-out;
}

.announcement-text {
  /* font-family: "Orbitron", sans-serif; */
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 8px rgba(252, 230, 56, 0.487);
  animation: pulseText 2.5s infinite ease-in-out;
  text-transform: capitalize;
}
.announcement-text p {
  color: rgba(252, 230, 56, 0.487);
}

/* Background pulse */
/* @keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(0, 255, 213, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 213, 0.6);
  }
} */

/* Text scale pulse */
@keyframes pulseText {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

footer {
  background: #353030;
  color: #fff;
  padding: 1rem;
  margin-top: 0.2rem;
}
.footer-div {
  text-align: center;
}
