/* --- Thème sombre propre et lisible --- */
:root {
  --bg: #0d0f14;
  --text: #e8e8e8;
  --btn-bg: #1f6feb;
  --btn-hover: #388bfd;
  --radius: 10px;
  --transition: 0.25s ease;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;

  /* Fond DayZ QC 2026 */
  background-image: url("/assets/background.png");
  background-size: 100% auto;
  background-position: center 40%;
  background-repeat: no-repeat;

  width: 100vw;
  height: 100vh;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

/* --- Logo DayZ QC 2026 --- */
.logo-container {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  width: 800px;
  height: 800px;

  background-image: url("/assets/dayz-qc-2026.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;

  filter: drop-shadow(0 0 12px #000);
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: translateX(-50%) scale(1.05);
}

/* --- Conteneur du bas --- */
.container {
  text-align: center;
  width: 100%;
  padding-bottom: 60px;
}

/* --- Bloc des boutons --- */
.links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;

  background: rgba(0, 0, 0, 0.45);
  padding: 25px 40px;
  border-radius: var(--radius);
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.05);

  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Boutons --- */
.links a {
  width: 200px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* --- Style du bouton Discord --- */
a {
  padding: 8px 28px;
  background: var(--btn-bg);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

a:hover {
  background: var(--btn-hover);
  transform: translateY(-3px);
}