
body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #eee;
  margin: 0;
  padding: 0;
}

.image-container,
.video-container,
.game-info {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  text-align: center;
  padding: 0 1rem;
}

.image-container img,
.video-container video {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.promo-text {
  margin-top: 1rem;
  font-size: 2rem;
  color: #e53e3e;
  font-weight: bold;
  font-family: 'Cinzel', serif;
}

.sword-caption {
  max-width: 800px;
  margin: 1rem auto;
  font-style: italic;
  color: #aaa;
  font-size: 0.95rem;
  text-align: center;
}

.game-info {
  text-align: left;
  line-height: 1.6;
}

.game-info h2, .game-info h3 {
  color: #f5b041;
  text-align: center;
}

.game-info ul {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
}

.game-info li {
  margin-bottom: 0.5rem;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #666;
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.4s ease forwards;
}

.slide-up {
  animation: slideUp 1.2s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glow img {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 2px #ff4e50);
  }
  50% {
    filter: drop-shadow(0 0 12px #ff4e50);
  }
  100% {
    filter: drop-shadow(0 0 2px #ff4e50);
  }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .promo-text {
    font-size: 1.5rem;
  }

  .game-info h2, .game-info h3 {
    font-size: 1.2rem;
  }

  .game-info ul {
    font-size: 0.95rem;
  }

  .sword-caption {
    font-size: 0.85rem;
  }
}


.tagline-text {
  font-size: 1.75rem;
  color: #f0f0f0;
  margin: 2rem auto 1rem auto;
  text-align: center;
  font-weight: 500;
}
