body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 300%;
  height: 300%;
  background-image: url('data:image/svg+xml;utf8,  <svg xmlns="http://www.w3.org/2000/svg" width="100" height="86.6" viewBox="0 0 100 86.6">    <path d="M50 0 L100 25 V61.6 L50 86.6 L0 61.6 V25 Z" fill="none" stroke=\"white\" stroke-width=\"3.5\"/>  </svg>');
  background-repeat: repeat;
  background-size: 60px 52px;
  opacity: 0.12;
  animation: scrollBackground 120s linear infinite;
  z-index: -1;
}

@keyframes scrollBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-400px, -400px); }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

.fade-in.delay {
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

header {
  background-color: #000000;
  padding: 3em 2em;
  text-align: center;
  border-bottom: 1px solid #333;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

header h1 {
  font-size: 3em;
  margin: 0 0 0.5em;
  color: #ff4500;
}

header p {
  font-size: 1.2em;
  color: #cccccc;
}

section {
  padding: 3em 2em;
}

.games h2, .contact h2 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 2em;
  color: #ff704d;
  text-shadow: 0 0 5px rgba(255, 112, 77, 0.3);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

.game-card {
  background: #111111;
  padding: 1.5em;
  border: 1px solid #333;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 112, 77, 0.05);
}

.game-card:hover {
  transform: scale(1.05);
  background: #1d1d1d;
  box-shadow: 0 0 15px rgba(255, 112, 77, 0.2);
}

a {
  color: #ff704d;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffa07a;
}

.contact p {
  text-align: center;
  font-size: 1.1em;
}

footer {
  background-color: #000000;
  text-align: center;
  padding: 2em 1em;
  font-size: 0.9em;
  color: #888;
  border-top: 1px solid #222;
  box-shadow: inset 0 1px 5px rgba(255, 255, 255, 0.05);
}

.upcoming h2, .socials h2 {
  text-align: center;
  color: #ff704d;
  font-size: 2em;
  text-shadow: 0 0 5px rgba(255, 112, 77, 0.4);
}

.coming-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 140px;
  width: 250px;
  margin: 0 auto;
  font-size: 1.2em;
  background: #1a1a1a;
  border-radius: 10px;
  border: 1px dashed #ff4500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 112, 77, 0.3);
}

.question-mark {
  font-size: 3em;
  opacity: 0.4;
  color: #ffffff;
  margin-bottom: 8px;
}

.coming-text {
  font-size: 1em;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
}

.game-card {
  background: #111111;
  padding: 1.5em;
  border: 1px solid #333;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: scale(1.05);
  background: #1d1d1d;
  box-shadow: 0 0 15px rgba(255, 112, 77, 0.3);
}
