/* ─── STATUS HERO ────────────────────────────── */
.status-hero {
  padding: 9rem 3rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(211, 0, 0, 0.07) 0%, transparent 70%);
}

.status-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 4px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 20px;
}

.status-hero__title span {
  color: var(--red);
  text-shadow: 0 0 30px var(--red-glow);
}

.status-hero__sub {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 40px;
}

/* ─── STATUS CARDS ───────────────────────────── */
.status-panel {
  padding: 3rem;
  position: relative;
}

.status-panel__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.status-panel__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.status-card {
  background: var(--black-card);
  border: var(--border-white);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.status-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(211, 0, 0, 0.3);
}

.status-card__stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red-metal);
  box-shadow: 0 0 12px var(--red);
}

.status-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(211, 0, 0, 0.1);
  border: var(--border-red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.status-card__label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 0.5rem;
}

.status-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--red);
  line-height: 1.2;
}

.status-card--online .status-card__value {
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
  font-size: 3.5rem;
}

.online-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #00e676;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
  box-shadow: 0 0 8px #00e676;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.online-text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00e676;
}

.status-card__copy-row {
  margin-top: 1rem;
}

/* ─── WARS ───────────────────────────────────── */
.wars {
  padding: 5rem 3rem;
  background: var(--black-mid);
  position: relative;
}

.wars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.wars__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.war-card {
  background: var(--black-card);
  border: var(--border-white);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.war-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(211, 0, 0, 0.3);
}

.war-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.war-card__img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--black-light), rgba(211, 0, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.war-card__body {
  padding: 1.5rem;
}

.war-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.war-card__status.happening {
  background: rgba(0, 0, 0, 0.774);
  color: var(--red);
  border: 1px solid rgb(255, 10, 10);
  animation: statusPulse 2s infinite;
}

.war-card__status.soon {
  background: rgba(0, 0, 0, 0.774);
  color: #ffa500;
  border: 1px solid rgba(255, 165, 0, 0.3);
}

.war-card__status.ended {
  background: rgba(0, 0, 0, 0.774);
  color: var(--orange);
  border: var(--border-white);
}

@keyframes statusPulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 10px rgba(211, 0, 0, 0.3); }
}

.war-card__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.war-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.war-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.war-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-muted);
  font-size: 0.9rem;
}

.war-card__meta-item span:first-child {
  color: var(--red);
  font-size: 0.9rem;
  width: 16px;
}

/* ─── WHY PLAY ───────────────────────────────── */
.why-play {
  padding: 5rem 3rem;
  background: var(--black);
}

.why-play__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-play__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.reason-card {
  background: var(--black-card);
  border: var(--border-white);
  border-radius: 4px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red-metal);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px var(--red);
}

.reason-card:hover::before {
  transform: scaleY(1);
}

.reason-card:hover {
  transform: translateX(4px);
  border-color: rgba(211, 0, 0, 0.2);
}

.reason-card__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.reason-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.reason-card__desc {
  color: var(--white-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── RESPONSIVE STATUS ──────────────────────── */
@media (max-width: 900px) {
  .status-panel__cards {
    grid-template-columns: 1fr;
  }
  .wars__grid {
    grid-template-columns: 1fr;
  }
  .why-play__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .status-hero { padding: 8rem 1.5rem 3rem; }
  .status-panel { padding: 2rem 1.5rem; }
  .wars { padding: 3rem 1.5rem; }
  .why-play { padding: 3rem 1.5rem; }
  .why-play__grid { grid-template-columns: 1fr; }
}

/* ─── WAR SCHEDULE TAGS ──────────────────────── */
.war-card__schedules {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: var(--border-white);
}

.war-card__schedules-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 0.6rem;
}

.war-card__schedule-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.war-card__tag {
  font-family: monospace;
  font-size: 0.85rem;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.war-card__tag.active {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  font-weight: bold;
}

/* 📱 TABLET */
@media (max-width: 768px) {
  .status-hero__title {
    font-size: 2.5rem;
    letter-spacing: 2px;
    line-height: 1.1;
    text-align: center;
  }
}

/* 📱 MOBILE */
@media (max-width: 480px) {
  .status-hero__title {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-align: center;
    margin-top: 10px;
    padding: 0 10px;
  }

  .status-hero__title span {
    text-shadow: 0 0 15px var(--red-glow);
  }
}

/* 📱 MOBILE */
@media (max-width: 480px) {
  .section-title {
    font-size: 2.1rem;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    padding: 0 10px; /* evita colar nas bordas */
  }

  .section-title span {
    text-shadow: 0 0 20px var(--red-glow); /* reduz glow pra não estourar */
  }
}