/* ===== Dark Neon Base ===== */
:root {
  --htev-bg: #06090f;
  --htev-bg2: #070b14;
  --htev-card: #0b1220;
  --htev-border: rgba(255, 255, 255, 0.08);
  --htev-text: rgba(255, 255, 255, 0.92);
  --htev-muted: rgba(255, 255, 255, 0.68);
  --htev-neon: #27f3a6;
  --htev-neon2: #19c98a;
  --htev-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.htev-page {
  background: transparent;
  color: var(--htev-text);
}

.htev-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.htev-muted {
  color: var(--htev-muted);
}

/* ===== Buttons ===== */
.htev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--htev-border);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  user-select: none;
}

.htev-btn--primary {
  background: linear-gradient(
    90deg,
    rgba(39, 243, 166, 0.95),
    rgba(25, 201, 138, 0.95)
  );
  color: #06110c;
  border-color: rgba(39, 243, 166, 0.55);
  box-shadow: 0 10px 30px rgba(39, 243, 166, 0.15);
}
.htev-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(39, 243, 166, 0.22);
}

.htev-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--htev-text);
}
.htev-btn--ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(39, 243, 166, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

/* ===== Hero (base) ===== */
.htev-hero {
  position: relative;
  background: radial-gradient(
      1200px 600px at 20% 40%,
      rgba(39, 243, 166, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 85% 30%,
      rgba(39, 243, 166, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(8, 12, 22, 0.95), rgba(6, 9, 15, 0.96));
  border: 1px solid var(--htev-border);
  border-radius: 24px;
  overflow: hidden;
  margin: 18px auto 0;
  box-shadow: var(--htev-shadow);
}

.htev-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  padding: 44px 0;
  align-items: center;
}

@media (max-width: 980px) {
  .htev-hero__inner {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }
}

.htev-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

.htev-hero__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(39, 243, 166, 0.18),
    transparent 60%
  );
  filter: blur(22px);
  z-index: 1;
  pointer-events: none;
}

.htev-hero__bgword {
  position: absolute;
  top: 26px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-weight: 1000;
  letter-spacing: 10px;
  font-size: clamp(72px, 10vw, 160px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(39, 243, 166, 0.22);
  opacity: 0.95;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.htev-hero__figure {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(39, 243, 166, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.htev-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.htev-hero__ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: radial-gradient(
      600px 240px at 35% 35%,
      rgba(39, 243, 166, 0.1),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
}
.htev-hero__phmark {
  font-size: 42px;
}
.htev-hero__phtext {
  color: var(--htev-muted);
  font-weight: 800;
}

.htev-hero__content {
  position: relative;
  padding: 12px 8px;
}

.htev-hero__eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(39, 243, 166, 0.26);
  background: rgba(39, 243, 166, 0.08);
  color: rgba(39, 243, 166, 0.92);
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.htev-hero__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 1000;
  line-height: 1.08;
  margin-bottom: 12px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.htev-hero__desc {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 16px;
}

.htev-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== HERO v2 (Landing match) ===== */
.htev-hero--v2 {
  min-height: 300px;
}

.htev-hero__inner--v2 {
  min-height: 550px;
  grid-template-columns: 1.25fr 0.85fr;
  align-items: end;

  /* kunci "nempel bawah tapi aman": padding-bottom kecil */
  padding-top: 70px;
  padding-bottom: 28px; /* angka utama */
}

/* EVENT background: center + lebih neon menyala */
.htev-hero--v2 .htev-hero__bgword {
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;
  width: 130%;
  text-align: center;

  letter-spacing: 16px;
  font-size: clamp(120px, 14vw, 220px);
  opacity: 0.98 !important;

  /* isi tipis biar "neon" (bukan cuma outline) */
  color: rgba(39, 243, 166, 0.08);

  /* stroke tebal */
  -webkit-text-stroke: 3px rgba(39, 243, 166, 0.78) !important;

  /* glow neon */
  text-shadow: 0 0 10px rgba(39, 243, 166, 0.35),
    0 0 22px rgba(39, 243, 166, 0.22), 0 0 70px rgba(39, 243, 166, 0.14);
}

/* canvas agak redup biar tulisan EVENT lebih kebaca */
.htev-hero--v2 .htev-hero__canvas {
  opacity: 0.75;
}

/* Figure (robot/placeholder) — dibuat "nempel bawah" */
.htev-hero__figure--v2 {
  align-self: end;
  justify-content: center;
  display: flex;
  align-items: end;

  min-height: 500px;
  height: 500px;

  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

/* turunkan gambar sebesar padding-bottom (28px) supaya kelihatan nempel bawah */
.htev-hero__img--v2,
.htev-hero__ph--v2 {
  transform: translateY(28px) !important; /* harus sama dgn padding-bottom */
}

.htev-hero__img--v2 {
  width: auto;
  max-width: 100%;
  height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 18px 60px rgba(0, 0, 0, 0.55));
}

/* placeholder ikut gaya image */
.htev-hero__ph--v2 {
  height: 620px;
  width: min(520px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(39, 243, 166, 0.18);
  background: radial-gradient(
      700px 260px at 35% 35%,
      rgba(39, 243, 166, 0.12),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
}

/* Konten kanan: naik & kecil, supaya nggak ganggu tulisan EVENT */
.htev-hero__content--v2 {
  align-self: end;
  max-width: 340px;
  padding: 0 6px;
}

.htev-hero__title--v2 {
  font-size: clamp(16px, 1.9vw, 22px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
}

.htev-hero__time--v2 {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 12px;
}

.htev-hero__actions--v2 {
  display: flex;
  gap: 10px;
}

/* Mobile */
@media (max-width: 980px) {
  .htev-hero--v2,
  .htev-hero__inner--v2 {
    min-height: 300px;
  }

  .htev-hero__inner--v2 {
    padding-top: 36px;
    padding-bottom: 28px;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .htev-hero__content--v2 {
    transform: translateY(0);
    max-width: 100%;
  }

  .htev-hero__figure--v2 {
    height: 360px;
    min-height: 360px;
  }
  .htev-hero__img--v2 {
    height: 360px;
  }
  .htev-hero__ph--v2 {
    height: 360px;
  }

  /* EVENT di mobile jangan kebesaran */
  .htev-hero--v2 .htev-hero__bgword {
    font-size: clamp(88px, 18vw, 160px);
    letter-spacing: 12px;
  }
}

/* ===== Sections ===== */
.htev-section {
  margin: 20px auto 0;
  padding: 0 0 6px;
}

.htev-section__head {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
}

.htev-h2 {
  font-size: 22px;
  font-weight: 1000;
}

.htev-sub {
  color: var(--htev-muted);
  font-weight: 700;
  font-size: 13px;
}

/* ===== Featured ===== */
.htev-feature {
  max-width: 1180px;
  margin: 12px auto 0;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--htev-border);
  background: radial-gradient(
      900px 420px at 20% 10%,
      rgba(39, 243, 166, 0.1),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .htev-feature {
    grid-template-columns: 1fr;
  }
}

.htev-feature__kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(39, 243, 166, 0.08);
  border: 1px solid rgba(39, 243, 166, 0.26);
  color: rgba(39, 243, 166, 0.92);
  font-weight: 900;
  font-size: 12px;
}

.htev-feature__title {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 1000;
  line-height: 1.1;
}

.htev-feature__info {
  margin-top: 10px;
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.htev-feature__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.htev-feature__right {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(39, 243, 166, 0.18);
  background: rgba(255, 255, 255, 0.03);
  min-height: 240px;
}

.htev-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.htev-feature__ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.htev-feature__phicon {
  font-size: 34px;
}

/* ===== Countdown ===== */
.htev-countdown {
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(39, 243, 166, 0.22);
  background: rgba(39, 243, 166, 0.06);
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.htev-countdown__label {
  font-weight: 900;
  color: rgba(39, 243, 166, 0.92);
}

.htev-countdown__time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 1000;
  font-size: 18px;
}

.htev-cd {
  min-width: 40px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}
.htev-cdsep {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 900;
}
.htev-countdown.is-done {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.htev-countdown.is-done .htev-countdown__label {
  color: rgba(255, 255, 255, 0.86);
}

/* ===== Grids ===== */
.htev-grid2 {
  max-width: 1180px;
  margin: 12px auto 0;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px) {
  .htev-grid2 {
    grid-template-columns: 1fr;
  }
}

/* Card grid */
.htev-card2 {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--htev-border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, border-color 0.15s ease,
    background 0.15s ease;
}
.htev-card2:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 243, 166, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.htev-card2__media {
  position: relative;
  height: 160px;
  background: rgba(0, 0, 0, 0.2);
}
.htev-card2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.htev-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(39, 243, 166, 0.24);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(39, 243, 166, 0.92);
  backdrop-filter: blur(8px);
}

.htev-card2__ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: radial-gradient(
      500px 160px at 30% 30%,
      rgba(39, 243, 166, 0.1),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
}
.htev-card2__phicon {
  font-size: 26px;
}
.htev-card2__phtext {
  color: var(--htev-muted);
  font-weight: 900;
}

.htev-card2__body {
  padding: 12px;
}
.htev-card2__title {
  font-weight: 1000;
  font-size: 16px;
  line-height: 1.2;
}
.htev-card2__meta {
  margin-top: 8px;
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
}

/* ===== Empty ===== */
.htev-empty {
  max-width: 1180px;
  margin: 12px auto 0;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--htev-muted);
  font-weight: 800;
}

/* ===== User list ===== */
.htev-user-list {
  display: grid;
  gap: 12px;
  padding: 0 16px;
  max-width: 1180px;
  margin: 12px auto 0;
}
.htev-user-item {
  border: 1px solid var(--htev-border);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}
.htev-user-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.htev-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 1000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}
.htev-pill--ok {
  border-color: rgba(39, 243, 166, 0.28);
  color: rgba(39, 243, 166, 0.92);
}
.htev-pill--warn {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.85);
}

.htev-benefits {
  margin-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 12px;
}
.htev-benefits-title {
  font-weight: 1000;
  margin-bottom: 8px;
}
.htev-benefits-body {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}
