/* ═══ Online Players Bar ═══ */
.online-section {
  text-align: center;
  padding: 5rem 0 3rem;
  position: relative;
}
.online-bar-container {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(10, 42, 38, 0.6);
  border: 1px solid rgba(94, 234, 212, 0.12);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
.online-bar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.online-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #5eead4;
  line-height: 1;
  text-shadow: 0 0 25px rgba(94, 234, 212, 0.4);
  transition: all 0.6s ease;
}
.online-slash {
  font-size: 1.5rem;
  color: rgba(156, 201, 196, 0.4);
  font-weight: 300;
}
.online-max {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9cc9c4;
  opacity: 0.7;
}
.online-bar-track {
  width: 100%;
  height: 12px;
  background: rgba(94, 234, 212, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.online-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6, #5eead4);
  transition: width 1s ease;
  max-width: 100%;
  position: relative;
}
.online-bar-fill.overflow {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
.online-bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  animation: barShimmer 2s ease-in-out infinite;
}
@keyframes barShimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
.online-status {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: #9cc9c4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5eead4;
  box-shadow: 0 0 10px #5eead4;
  animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ═══ Online Stats Row ═══ */
.online-stats-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.online-stat-card {
  background: rgba(10, 42, 38, 0.5);
  border: 1px solid rgba(94, 234, 212, 0.08);
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  text-align: center;
  min-width: 110px;
}
.online-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #5eead4;
  line-height: 1.2;
}
.online-stat-label {
  font-size: 0.78rem;
  color: #9cc9c4;
  opacity: 0.8;
}
.online-stat-sub {
  display: block;
  font-size: 0.65rem;
  color: #6ba8a2;
  opacity: 0.6;
  margin-top: 0.15rem;
}
.online-reserve-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #fbbf24;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.online-reserve-note i {
  font-size: 0.75rem;
}
.reserve-link {
  color: #5eead4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.reserve-link:hover {
  color: #fff;
  text-decoration: underline;
}
.reserve-link i {
  font-size: 0.7rem;
  margin-right: 0.2rem;
}

:root {
  --hz-home-hero-lift: 0px;
  --hz-home-scroll-raise: 0px;
}

.hero-new {
  transition: transform 0.25s ease;
}

body.hz-home-news-active .hero-new {
  transform: translateY(calc(-1 * var(--hz-home-hero-lift)));
}

body.hz-home-news-active .scroll-indicator-home {
  bottom: calc(2rem + var(--hz-home-scroll-raise));
}

/* ═══ Support Section ═══ */
.support-section {
  padding: 0.75rem 0 1.9rem;
}
.support-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(
    140deg,
    rgba(28, 19, 36, 0.84) 0%,
    rgba(22, 28, 46, 0.82) 46%,
    rgba(9, 40, 42, 0.8) 100%
  );
  border: 1px solid rgba(255, 158, 209, 0.25);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  box-shadow:
    0 15px 38px rgba(8, 4, 14, 0.32),
    inset 0 0 0 1px rgba(255, 176, 220, 0.09);
}
.support-card > * {
  position: relative;
  z-index: 2;
}
.support-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -92px;
  width: 280px;
  height: 280px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.68),
    rgba(255, 170, 215, 0.42) 42%,
    rgba(255, 96, 174, 0.16) 66%,
    transparent 80%
  );
  filter: blur(8px);
  opacity: 0.72;
  pointer-events: none;
  animation: supportFloatOrbA 16s ease-in-out infinite;
}
.support-card::after {
  content: "";
  position: absolute;
  bottom: -92px;
  left: -66px;
  width: 220px;
  height: 220px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 36% 34%,
    rgba(255, 255, 255, 0.58),
    rgba(255, 145, 203, 0.34) 45%,
    rgba(255, 89, 166, 0.15) 68%,
    transparent 82%
  );
  filter: blur(10px);
  opacity: 0.64;
  pointer-events: none;
  animation: supportFloatOrbB 20s ease-in-out infinite;
}
.support-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.58rem;
  text-align: center;
}
.support-heart-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  color: #ffd1e8;
  background: transparent;
  box-shadow: none;
  animation: supportHeartPulse 2.2s ease-in-out infinite;
}
.support-heart-orb i {
  font-size: 1.26rem;
  line-height: 1;
}
.support-card h3 {
  margin: 0;
  color: #ffe9f5;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.support-copy {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
  color: #f0e7fb;
  font-size: 0.9rem;
  line-height: 1.9;
  text-shadow: 0 0 18px rgba(255, 92, 171, 0.14);
}
.support-copy p {
  margin: 0 0 0.5rem;
}
.support-copy p:last-child {
  margin-bottom: 0;
}
.support-copy-mini {
  color: #c6fff5;
  opacity: 0.92;
}
.support-copy a {
  color: #79f1e2;
  font-weight: 700;
  text-decoration: none;
}
.support-copy a:hover {
  text-decoration: underline;
}
.support-actions {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}
.support-donate-link,
.support-shop-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.62rem 0.8rem;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  height: 48px;
  white-space: nowrap;
}
.support-donate-link {
  color: #fff3fb;
  background: linear-gradient(135deg, #ff4e9b, #b35dff 60%, #5eead4);
  border: 1px solid rgba(255, 156, 210, 0.7);
  box-shadow: 0 10px 20px rgba(247, 69, 154, 0.32);
}
.support-donate-link:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
  box-shadow: 0 12px 24px rgba(247, 69, 154, 0.4);
}
.support-shop-link {
  color: #f2ecff;
  background: linear-gradient(
    135deg,
    rgba(255, 86, 160, 0.12),
    rgba(126, 252, 219, 0.08)
  );
  border: 1px solid rgba(164, 231, 226, 0.36);
}
.support-shop-link:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(171, 247, 238, 0.65);
  background: linear-gradient(
    135deg,
    rgba(255, 86, 160, 0.18),
    rgba(126, 252, 219, 0.14)
  );
}
.support-donate-link i,
.support-shop-link i {
  font-size: 0.95rem;
}

@keyframes supportFloatOrbA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  35% {
    transform: translate3d(-18px, 14px, 0) scale(1.06);
  }
  68% {
    transform: translate3d(-36px, -8px, 0) scale(0.96);
  }
  100% {
    transform: translate3d(-14px, -20px, 0) scale(1.02);
  }
}

@keyframes supportFloatOrbB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  30% {
    transform: translate3d(22px, -10px, 0) scale(0.95);
  }
  65% {
    transform: translate3d(34px, 16px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(12px, 24px, 0) scale(0.98);
  }
}

@keyframes supportHeartPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(255, 78, 155, 0.32));
  }
  50% {
    transform: scale(1.16);
    filter: drop-shadow(0 0 10px rgba(255, 78, 155, 0.44));
  }
}

/* ═══ About / Info Sections ═══ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.info-card {
  background: rgba(10, 42, 38, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(94, 234, 212, 0.08);
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.35s ease;
}
.info-card:hover {
  border-color: rgba(94, 234, 212, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(94, 234, 212, 0.08);
}
.info-card-icon {
  font-size: 2rem;
  color: #5eead4;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}
.info-card h3 {
  color: #e5f1ef;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.info-card p {
  color: #9cc9c4;
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

.section-title {
  text-align: center;
  margin: 3.5rem 0 1.5rem;
}
.section-title h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e5f1ef;
  margin: 0 0 0.4rem;
}
.section-title p {
  color: #9cc9c4;
  font-size: 0.9rem;
  margin: 0;
}
.section-title .title-line {
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, #5eead4, transparent);
  margin: 0.6rem auto 0;
}

/* ═══ How To Play Steps ═══ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.step-card {
  background: rgba(10, 42, 38, 0.4);
  border: 1px solid rgba(94, 234, 212, 0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5eead4, #14b8a6);
  color: #071e1b;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.step-card h4 {
  color: #e5f1ef;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.step-card p {
  color: #9cc9c4;
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

/* ═══ Wipe Info ═══ */
.wipe-banner {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.08),
    rgba(10, 42, 38, 0.5)
  );
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  text-align: center;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.wipe-banner--inline {
  max-width: 900px;
  margin: 1rem auto 0.4rem;
}
.wipe-banner i {
  font-size: 1.8rem;
  color: #f87171;
}
.wipe-banner-text h4 {
  color: #f87171;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}
.wipe-banner-text p {
  color: #9cc9c4;
  font-size: 0.82rem;
  margin: 0;
}
.wipe-sub {
  margin-top: 0.75rem !important;
  font-size: 0.75rem !important;
  opacity: 0.6;
}
.wipe-sub a {
  color: #5eead4;
  text-decoration: none;
}
.wipe-sub a:hover {
  text-decoration: underline;
}
.wipe-countdown {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.wipe-cd-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-radius: 0.6rem;
  padding: 0.6rem 0.9rem;
  min-width: 60px;
  text-align: center;
}
.wipe-cd-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #f87171;
  font-family: monospace;
  line-height: 1.2;
}
.wipe-cd-unit {
  display: block;
  font-size: 0.65rem;
  color: #9cc9c4;
  opacity: 0.7;
  margin-top: 0.15rem;
}
.wipe-cd-label {
  color: #f87171;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ═══ Video Section Styles ═══ */
.video-section {
  text-align: center;
  padding: 2rem 0 1.5rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.video-container {
  max-width: none;
  margin: 0;
  background: rgba(10, 42, 38, 0.55);
  border: 1px solid rgba(94, 234, 212, 0.08);
  border-radius: 0.85rem;
  padding: 1rem;
}
.video-title {
  margin: 0 0 0.6rem;
  color: #e5f1ef;
  font-size: 1.05rem;
  font-weight: 800;
}
.video-player {
  width: 100%;
  height: auto;
  max-height: 480px;
  border-radius: 0.5rem;
  background: #000;
  display: block;
}
.video-container iframe {
  width: 100% !important;
  min-height: 280px;
  border: 0;
  border-radius: 0.6rem;
  display: block;
}

@media (max-width: 980px) {
  .support-card {
    padding: 1rem;
  }
  .support-actions {
    grid-template-columns: 1fr;
  }
  .wipe-banner--inline {
    margin-top: 0.85rem;
  }
  .wipe-banner {
    padding: 1.1rem;
  }
  body.hz-home-news-active .hero-new {
    transform: translateY(calc(-1 * min(var(--hz-home-hero-lift), 48px)));
  }
  body.hz-home-news-active .scroll-indicator-home {
    bottom: calc(1.5rem + min(var(--hz-home-scroll-raise), 26px));
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
}
