/* Banner Container */
.et-banner {
  font-family: 'arial', sans-serif;
  max-width: 1000px;
  margin: 30px auto;
  padding: 40px 20px 30px 20px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);

  /* Animierter Farbverlauf */
  background: linear-gradient(270deg, #0f2027, #203a43, #2c5364, #0f2027);
  background-size: 800% 800%;
  animation: gradientBG 20s ease infinite;
}

/* Animierter Farbverlauf Keyframes */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Überschrift und Text */
.et-banner h1 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 10px;
  color: #00ffea;
  text-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
  text-transform: none;
}

.et-banner p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #a0f0f5;
  text-transform: none;
}

/* Karten Container */
.et-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 1;
}

/* Einzelne Karte */
.et-card {
  width: 160px;
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
  box-shadow: 0 0 15px #00ffea30 inset;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: float 3s ease-in-out infinite;
}

.et-card img {
  width: 100%;
  height: auto;
  display: block;
}

.et-card span {
  display: block;
  font-weight: bold;
  font-size: 0.9rem;
  color: #fff;
  margin: 8px 0;
}

.et-card a {
  text-decoration: none;
  color: inherit;
}

/* Steam Bild proportional kleiner */
.et-steam-card img {
  width: 50%;      
  margin: 0 auto;  
  display: block;
  padding-top: 10px; 
  padding-bottom: 10px; 
}

/* Hover Effekt */
.et-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,255,234,0.4);
}

/* Schwebe-Animation Keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .et-banner { padding: 30px 15px 20px 15px; }
  .et-banner h1 { font-size: 1.5rem; padding-top: 10px; }
  .et-banner p { font-size: 0.95rem; margin-bottom: 20px; }
  .et-cards { flex-direction: column; align-items: center; }
  .et-card { width: 90%; max-width: 250px; }
  .et-steam-card img { width: 50%; } 
}
