* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #0a0000;
  color: #e0e0e0;
  border: 5px solid #8b0000;
  min-height: 100vh;
}

/* HERO */
header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.bg-gif {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: -1;
}

header::before {
  content: none;
}


.vader {
  margin-bottom: 1.5rem;
  animation: breathe 3s ease-in-out infinite;
}

.vader img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  border: 3px solid #8b0000;
  box-shadow: 0 0 40px #8b0000aa;
}

@keyframes breathe {
  0%, 100% { filter: drop-shadow(0 0 20px #8b0000); }
  50%       { filter: drop-shadow(0 0 50px #cc0000); }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #cc0000;
  text-shadow: 0 0 20px #8b0000;
}

.hero p {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 2rem;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #8b0000;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 15px #8b000066;
}

.btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 0 30px #cc000099;
}

/* ABOUT */
.about {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: center;
  padding: 0 2rem;
}

.about h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.about p {
  color: #aaa;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* GAMES */
.games {
  max-width: 900px;
  margin: 1.5rem auto 0;
  text-align: center;
  padding: 0 2rem;
}

.games h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #fff;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.game-card {
  background: transparent;
  border: 2px solid #8b0000;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  border-color: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 0 20px #8b000066;
}

.game-icon {
  font-size: 2rem;
}

.game-card span {
  font-size: 0.95rem;
  color: #ccc;
  font-weight: 500;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1.5rem 2rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

footer p {
  color: #555;
  font-size: 0.9rem;
}
