/*
 Theme Name: Blogus Child
 Template: blogus
 Version: 1.0
*/

/* =========================================
   🎮 SUSTT ARENA MODE IMMERSIVE
========================================= */


/* Conteneur principal */
body.sustt-app-mode .sustt-app-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 32px 60px;
  width: 100%;
  box-sizing: border-box;
}

.sustt-arena-wrapper {
  height: calc(100vh - 60px); /* - admin bar approx */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1400px; /* limite propre */
  margin: 0 auto; /* centre */
  padding: 0 60px; /* respiration latérale */
}

.sustt-arena-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px; /* espace fixe propre entre les deux lignes */
  max-width: 1300px;
  margin: 0 auto;
}

.sustt-card-premium h2,
.sustt-card-premium .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}

.sustt-arena-hero {
  text-align: center;
  margin-bottom: 4px;
}

.arena-title {
  font-size: 30px;
  letter-spacing: 4px;
  font-weight: 900;
  letter-spacing: 6px;
  color: #38bdf8;
  text-shadow:
    0 0 10px rgba(56, 189, 248, 0.8),
    0 0 30px rgba(56, 189, 248, 0.6);
}

.arena-sub {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 3px;
  color: var(--sustt-text-main);
}

.sustt-arena-content {
  animation: fadeArena 1.2s ease forwards;
}

.sustt-arena-footer {
  text-align: center;
}

.arena-back {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  color: #38bdf8;
  opacity: 0.7;
  transition: 0.3s;
}

.arena-back:hover {
  opacity: 1;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.7);
}

@keyframes fadeArena {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   ARENA FADE IN
========================= */

.sustt-arena-wrapper {
  opacity: 0;
  transform: translateY(20px);
  animation: arenaFadeIn 0.9s ease forwards;
  height: calc(100vh - 32px);
}

@keyframes arenaFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
