@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --red: #c0008f;
  --red-hot: #f020b7;
  --red-deep: #820060;

  /* RGB channels: dùng cho border, glow, shadow và gradient có opacity */
  --red-rgb: 192 0 143;
  --red-hot-rgb: 240 32 183;
  --red-deep-rgb: 130 0 96;

  --bg: #0a0a0c;
  --bg-2: #101014;
  --panel: #15151b;
  --panel-2: #1c1c24;

  --ink: #f2f2f5;
  --muted: #9a9aa6;
  --faint: #6c6c78;

  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.16);

  --gold: #f5c542;
  --silver: #cbd0da;
  --bronze: #cc8a57;

  --maxw: 1180px;
  --r: 18px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

body {
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.banner h1,
.banner h2,
.banner h3 {
  font-weight: 700;
}

.dark,
.dark p,
.dark td {
  color: #fff;
  line-height: 1.6;
}

.box-text a:not(.button),
.box-text h1,
.box-text h2,
.box-text h3,
.box-text h4,
.box-text h5,
.box-text h6,
.box-text p {
  margin: 0;
}

.icon-box-img img,
.icon-box-img svg {
  padding: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
  white-space: nowrap;
}

.thanks .share .btn {
	margin: 0;
    height: 50px;
}

.btn-chev {
  position: relative;
  border-radius: 0;
  border: none;
  background: linear-gradient(
    180deg,
    var(--red-hot),
    var(--red) 55%,
    var(--red-deep)
  );
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 17px 40px;
  clip-path: polygon(
    0 50%,
    18px 0,
    calc(100% - 18px) 0,
    100% 50%,
    calc(100% - 18px) 100%,
    18px 100%
  );
  filter: drop-shadow(0 0 24px rgb(var(--red-hot-rgb) / 0.55));
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}

.hero {
  background: var(--bg);
  padding-top: 110px;
  padding-bottom: 92px;
  position: relative;
}

.streak-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.streak-bg::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(
      120% 70% at 50% 0%,
      rgb(var(--red-deep-rgb) / 28%),
      transparent 55%
    ),
    radial-gradient(
      80% 60% at 50% 110%,
      rgb(var(--red-rgb) / 0.18),
      transparent 60%
    );
}

.streak-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0 38px,
    rgb(var(--red-hot-rgb) / 0.05) 38px 39px
  );
}

.hero .img {
  max-width: 90vw;
  margin: 0 auto;
}

.hero .img .img-inner {
  overflow: unset;
}

.hero .img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid var(--line-2);
  box-shadow:
    0 40px 90px -34px rgb(var(--red-rgb) / 0.6),
    0 0 0 1px rgba(0, 0, 0, 0.4);
}

.hero .b-text p {
  margin-top: 22px;
  font-size: clamp(1.1rem, 2.3vw, 1.42rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0;
  text-align: center;
}

.hero .b-text p strong {
  color: #fff;
  background: var(--red);
  padding: 1px 9px;
  border-radius: 7px;
  box-shadow: 0 0 16px rgb(var(--red-rgb) / 0.5);
  white-space: nowrap;
}

.hero .b-text p em {
  color: var(--red-hot);
  font-style: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
}

.countdown {
  margin: 38px auto 0;
  display: block;
  width: fit-content;
}

.cd-grid {
  display: flex;
  gap: 12px;
}

.cd-cell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 6px;
  min-width: 74px;
  text-align: center;
  box-shadow: inset 0 0 24px rgb(var(--red-rgb) / 0.08);
}

.cd-cell .num {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #fff;
  text-shadow: 0 0 18px rgb(var(--red-rgb) / 0.45);
}

.cd-cell .unit {
  display: block;
  margin-top: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}

.countdown-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.countdown-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-hot);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgb(var(--red-hot-rgb) / 0.6);
  }
  50% {
    box-shadow: 0 0 0 7px rgb(var(--red-hot-rgb) / 0);
  }
}

.csection {
  padding: 96px 0;
  position: relative;
}

.title h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-hot);
  justify-content: center;
}

.title h3::before {
  content: "";
  position: relative;
  top: 4px;
  width: 9px;
  height: 13px;
  background-color: var(--red-hot);
  transform: translateY(-50%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 13'%3E%3Cpath fill='white' d='M0 0 L7 6.5 L0 13 L2 13 L9 6.5 L2 0 Z'/%3E%3C/svg%3E")
    center / contain no-repeat;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 13'%3E%3Cpath fill='white' d='M0 0 L7 6.5 L0 13 L2 13 L9 6.5 L2 0 Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.title h2 {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin: 16px 0 0;
  color: var(--ink);
}

.title p {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 14px auto 0;
  max-width: 54ch;
}

.title p strong,
.title p b {
  color: #fff;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.icon-box-img svg,
.icon-box-img svg path {
  fill: transparent;
}

.why-grid .icon-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
}

.why-grid .icon-box .icon-inner {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgb(var(--red-rgb) / 0.14);
  color: var(--red-hot);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgb(var(--red-hot-rgb) / 0.25);
}

.why-grid .icon-box .icon-inner svg,
.why-grid .icon-box .icon-inner path {
  width: 26px;
  height: 26px;
  stroke: var(--red-hot);
}

.why-grid .icon-box h3 {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

.why-grid .icon-box p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.98rem;
}

.why-grid .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgb(var(--red-rgb) / 0.4);
  border-color: rgb(var(--red-hot-rgb) / 0.5);
}

.brief {
  background: linear-gradient(160deg, var(--red), var(--red-deep));
  color: #fff;
  overflow: hidden;
}

.brief::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='45' viewBox='0 0 90 45'%3E%3Cpath d='M0 45 L45 0 L45 11 L11 45 Z M34 45 L79 0 L79 11 L45 45 Z M68 45 L90 23 L90 34 L79 45 Z' fill='%23000000' fill-opacity='0.12'/%3E%3C/svg%3E");
}

.brief::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 50% -10%,
    rgb(var(--red-hot-rgb) / 0.4),
    transparent 60%
  );
}

.brief .title h3 {
  color: #fff;
  justify-content: start;
}

.brief .title h3::before {
  background-color: #fff;
}

.brief .title h2 {
  color: #fff;
}

.brief .title h2 em {
  font-style: normal;
  border-bottom: 5px solid rgba(255, 255, 255, 0.45);
}

.brief .container {
  position: relative;
  z-index: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.step {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 24px;
}

.step h3 {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 900;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
}

.step h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.step p {
  font-size: 0.92rem;
  opacity: 0.9;
  margin: 0;
  margin-top: 8px;
}

.brief-howto {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 36px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 22px 24px;
}

.brief-howto .icon-inner {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  color: #fff;
}

.brief-howto .icon-inner svg {
  width: 24px;
  height: 24px;
}

.brief-howto .icon-box-img + .icon-box-text {
  padding: 0;
}

.brief-howto p b {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.brief-cta {
  margin-top: 42px;
}

.btn-light {
  background: #fff;
  color: var(--red);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.5);
}

.prize-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 22px;
  margin-top: 48px;
  align-items: end;
}

.prize {
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}

.prize h3 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--silver);
}

.prize h4 {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 0.95rem;
}

.prize h4 {
  color: var(--silver);
}

.prize h5 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 14px;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: #fff;
}

.prize h5 em {
  font-size: 0.5em;
  font-weight: 800;
  color: var(--muted);
  font-style: normal;
  margin: 0;
}

.prize p {
  margin-bottom: 0;
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}

.prize.bronze h4 {
  color: var(--bronze);
}

.prize.bronze {
  border-color: rgba(204, 138, 87, 0.4);
}

.prize.first {
  background: radial-gradient(120% 90% at 50% 0, #3a2400, #15120a 70%);
  border: 1px solid rgba(245, 197, 66, 0.5);
  box-shadow:
    0 0 60px -10px rgba(245, 197, 66, 0.3),
    0 30px 60px -30px rgb(var(--red-rgb) / 0.5);
  padding: 40px 32px;
}

.prize.first h3 {
  color: var(--gold);
  font-size: 3.4rem;
  filter: drop-shadow(0 0 22px rgba(245, 197, 66, 0.55));
}

.prize.first h4 {
  color: var(--gold);
}

.prize.first h5 {
  font-size: clamp(2.4rem, 4.4vw, 3.2rem);
  color: #fff;
}

.prize.first p {
  color: #fff;
}

.prize.first h6 {
  display: block;
  margin-top: 16px;
  background: var(--red);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  box-shadow: 0 0 22px rgb(var(--red-rgb) / 0.6);
  width: fit-content;
  color: #fff;
  line-height: 1.6;
  text-transform: none;
  opacity: 1;
}

#prizes .brief-howto {
  margin-top: 24px;
  background: color-mix(in srgb, var(--red) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--red-hot) 30%, transparent);
  border-radius: var(--r);
  padding: 26px 30px;
  gap: 18px;
}

#prizes .brief-howto p b {
  color: var(--red-hot);
  text-decoration: none;
}

#benefits .streak-bg {
  opacity: 0.4;
}

.ben-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.ben:nth-child(1),
.ben:nth-child(2) {
  grid-column: span 3;
}

.ben:nth-child(3),
.ben:nth-child(4),
.ben:nth-child(5) {
  grid-column: span 2;
}

.ben {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.ben.feature {
  background: radial-gradient(
    120% 120% at 0% 0%,
    rgb(var(--red-rgb) / 0.22),
    #15151b 60%
  );
  border-color: color-mix(in srgb, var(--red-hot) 40%, transparent);
}

.ben .icon-box-img {
  margin-bottom: 0;
}

.ben .icon-inner {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgb(var(--red-rgb) / 0.14);
  color: var(--red-hot);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgb(var(--red-hot-rgb) / 0.25);
}

.ben .icon-inner svg {
  width: 26px;
  height: 26px;
}

.ben h3 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

.ben p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.98rem;
}

.ben p em {
  font-weight: 900;
  color: #fff;
  font-size: 1.3rem;
}

.ben p b {
  color: var(--red-hot);
}

.btn-primary {
  background: var(--red);
  color: #fff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 12px 30px -8px rgb(var(--red-rgb) / 0.7);
}

.ben-action {
  margin-top: 34px;
  text-align: center;
}

.btn-primary:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgb(var(--red-hot-rgb) / 0.75);
}

.ben:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgb(var(--red-rgb) / 0.4);
  border-color: rgb(var(--red-hot-rgb) / 0.5);
}

#format .streak-bg {
  opacity: 0.35;
}

.tl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 48px;
  position: relative;
}

.tl-card {
  position: relative;
  z-index: 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
}

.tl-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgb(var(--red-rgb) / 0.5);
  width: fit-content;
}

.tl-card h4 {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
}

.tl-card h5 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-hot);
  font-weight: 800;
  margin: 10px 0 12px;
}

.tl-card h5::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background-color: var(--red-hot);

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18M8 3v4M16 3v4' stroke-linecap='round'/%3E%3C/svg%3E")
    center / contain no-repeat;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18M8 3v4M16 3v4' stroke-linecap='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.tl-card p {
  color: var(--muted);
  margin: 0;
}

#criteria .title h3 {
  justify-content: left;
}

#criteria .title p {
  margin-left: 0;
  text-align: left;
}

.crit-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 46px;
}

.about-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-hot);
  justify-content: left;
  margin: 0;
}

.about-card h3::before {
  content: "";
  position: relative;
  top: 4px;
  width: 9px;
  height: 13px;
  background-color: var(--red-hot);
  transform: translateY(-50%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 13'%3E%3Cpath fill='white' d='M0 0 L7 6.5 L0 13 L2 13 L9 6.5 L2 0 Z'/%3E%3C/svg%3E")
    center / contain no-repeat;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 13'%3E%3Cpath fill='white' d='M0 0 L7 6.5 L0 13 L2 13 L9 6.5 L2 0 Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.about-card h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin: 12px 0 12px;
  letter-spacing: -0.01em;
}

.about-card p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 0;
}

.about-card p:last-of-type {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 8px;
  margin-bottom: 0;
}

.crit-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-card {
  background: radial-gradient(
    120% 90% at 100% 0,
    rgba(192, 0, 143, 0.22),
    var(--panel) 70%
  );
  border: 1px solid rgba(240, 32, 183, 0.22);
  border-radius: var(--r);
  padding: 30px;
  box-shadow:
    inset 0 0 40px rgba(192, 0, 143, 0.06),
    0 24px 60px -40px rgba(240, 32, 183, 0.45);
}

.about-card .btn {
  margin-top: 18px;
  padding: 11px 20px;
  font-size: 0.92rem;
}

.crit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.crit-row:first-child {
  border-top: 1px solid var(--line);
}
.crit-name {
  font-weight: 600;
  color: var(--ink);
}
.crit-bar {
  position: relative;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  margin-top: 8px;
  overflow: hidden;
}
.crit-bar i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-hot));
  border-radius: 99px;
  width: 0;
  transition: width 1.1s var(--ease);
  box-shadow: 0 0 14px rgba(255, 31, 61, 0.5);
}
.crit-w {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--red-hot);
  font-variant-numeric: tabular-nums;
  min-width: 62px;
  text-align: right;
}

.aud {
  background: radial-gradient(
    120% 90% at 80% 10%,
    rgba(192, 0, 143, 0.24),
    #0c0c10 65%
  );
  border: 1px solid rgba(240, 32, 183, 0.22);
  border-radius: 24px;
  padding: 54px;
  position: relative;
  overflow: hidden;
}

.aud .title h3 {
  justify-content: start;
}

.aud .title h2 {
  margin-bottom: 26px;
}

.aud ul {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}
.aud li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 0;
}
.aud li svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--red-hot);
  margin-top: 3px;
}
.aud .punch {
  margin-top: 26px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}
.aud .punch b {
  color: #fff;
  background: var(--red);
  padding: 2px 10px;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(228, 0, 43, 0.5);
}

.aud::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--red-hot) 40%, transparent),
    transparent 70%
  );
}

.aud-in {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.faq {
  max-width: 820px;
  margin: 48px auto 0;
}

.faq .accordion-item:first-child .accordion-title {
  border-top: 0;
}

.faq .accordion-item {
  border-bottom: 1px solid var(--line);
}

.faq .accordion-item .accordion-title {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
}

.faq .accordion .toggle {
  margin: 0;
  left: unset;
  right: 0;
  top: 21px;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--red-hot);
  color: var(--red-hot);
  display: grid;
  place-items: center;
  font-weight: 900;
  transition: 0.3s var(--ease);
  min-height: unset;
  font-size: 14px;
  opacity: 1;
  transform-origin: unset;
}

.faq .accordion .accordion-inner {
  padding: 0;
  padding-bottom: 12px;
}

.faq .accordion .accordion-inner * {
  margin-bottom: 0;
}

.faq .accordion-title.active {
  color: var(--fs-color-primary);
  opacity: 1;
}

.faq .accordion-title.active {
  color: #fff;
}

.faq .accordion-title.active .toggle {
  background-color: var(--red-hot);
  color: #fff;
}

.form-sec {
  background: radial-gradient(
    120% 70% at 50% 0,
    color-mix(in srgb, var(--red) 16%, #0a0a0c),
    #0a0a0c 60%
  );
  overflow: hidden;
}

.form-cd {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 8px;
}

.form-cd .cd-cell {
  min-width: 64px;
  padding: 11px 4px;
}

.form-cd .cd-cell .num {
  font-size: 1.5rem;
}

.form-sec .wrap {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  margin-top: 36px;
  box-shadow: 0 0 70px -20px rgba(192, 0, 143, 0.4);
}
.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  margin: 0;
}
.field label .req {
  color: var(--red-hot);
}
.field .hint {
  font-size: 0.8rem;
  color: var(--faint);
  font-weight: 500;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  background: var(--bg-2);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
  margin: 0;
  height: 50px;
}
.field input::placeholder {
  color: var(--faint);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9AA6' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field option {
  background: var(--bg-2);
  color: var(--ink);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--red-hot);
  box-shadow: 0 0 0 4px rgba(255, 31, 61, 0.18);
}
.field.err input,
.field.err select {
  border-color: var(--red-hot);
}
.field .msg {
  font-size: 0.8rem;
  color: var(--red-hot);
  font-weight: 600;
  display: none;
}
.field.err .msg {
  display: block;
}

.radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-opt {
  flex: 1;
  min-width: 160px;
  position: relative;
}
.radio-opt input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.radio-opt span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  font-weight: 700;
  color: var(--ink);
  transition: 0.2s;
}
.radio-opt span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--faint);
  transition: 0.2s;
}
.radio-opt input:checked + span {
  border-color: var(--red-hot);
  background: rgba(228, 0, 43, 0.12);
}
.radio-opt input:checked + span::before {
  border-color: var(--red-hot);
  background: var(--red-hot);
  box-shadow: inset 0 0 0 3px var(--bg-2);
}
.radio-opt input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(255, 31, 61, 0.22);
}

.toggle-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.toggle-row button {
  flex: 1;
  padding: 10px;
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  background: var(--bg-2);
  font-weight: 700;
  color: var(--muted);
  transition: 0.2s;
}
.toggle-row button.active {
  border-color: var(--red-hot);
  background: rgba(228, 0, 43, 0.12);
  color: var(--red-hot);
}
.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 2px dashed var(--line-2);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  color: var(--muted);
  transition:
    border-color 0.2s,
    background 0.2s;
  cursor: pointer;
}
.dropzone:hover {
  border-color: var(--red-hot);
  background: rgba(228, 0, 43, 0.06);
}
.dropzone .dz-ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(228, 0, 43, 0.14);
  border: 1px solid rgba(255, 31, 61, 0.3);
  color: var(--red-hot);
  margin-bottom: 8px;
}
.dropzone .dz-ic svg {
  width: 26px;
  height: 26px;
  display: block;
  margin: 0;
}
.dropzone .dz-title {
  color: var(--ink);
  font-weight: 600;
}
.dropzone .dz-title b {
  color: #fff;
}
.dropzone .hint {
  color: var(--faint);
}
.dropzone .fname {
  margin-top: 8px;
  font-weight: 700;
  color: var(--red-hot);
}
.field.err .dropzone {
  border-color: var(--red-hot);
  background: rgba(228, 0, 43, 0.06);
}
/* upload progress */
.up-progress {
  display: none;
  margin-top: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 16px 18px;
}
.up-progress.show {
  display: block;
  animation: pop 0.35s var(--ease);
}
.up-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 700;
}
.up-row .up-name {
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70%;
}
.up-row .up-pct {
  color: var(--red-hot);
  font-variant-numeric: tabular-nums;
}
.up-bar {
  position: relative;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 10px 0 8px;
}
.up-bar i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), var(--red-hot));
  transition: width 0.25s var(--ease);
  box-shadow: 0 0 14px rgba(255, 31, 61, 0.5);
}
.up-progress.done .up-bar i {
  background: linear-gradient(90deg, #1f9d57, var(--green, #34d399));
}
.up-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
}
.up-status .stk {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  place-items: center;
  background: #1f9d57;
  color: #fff;
}
.up-status .stk svg {
  width: 13px;
  height: 13px;
}
.up-progress.done .up-status {
  color: #34d399;
}
.up-progress.done .up-status .stk {
  display: grid;
  animation: pop 0.4s var(--ease);
}
.up-progress.error {
  border-color: var(--red-hot);
}
.up-progress.error .up-status {
  color: var(--red-hot);
}
.up-demo-note {
  margin-top: 8px;
  font-size: 0.76rem;
  color: var(--faint);
  line-height: 1.5;
}

.thanks {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.thanks.show {
  display: block;
  animation: pop 0.5s var(--ease);
}
@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.thanks .tk-ic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 30px rgba(228, 0, 43, 0.6);
}
.thanks .tk-ic svg {
  width: 38px;
  height: 38px;
}
.thanks h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}
.thanks p {
  color: var(--muted);
  margin-top: 10px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.thanks .share {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.field .btn-primary {
  height: 62px;
  margin: 0;
}

.header-bg-color {
  background-color: transparent;
}

.stuck .header-bg-color {
  background: transparent;
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-main .nav > li > a.btn {
  padding: 15px 26px;
  font-size: 1rem;
  text-transform: none;
}

.header-main .nav-left {
  justify-content: center;
}

.header-main .nav-left > li {
  margin: 0 11px;
}

.header-main .nav-left > li > a {
  font-weight: 600;
  font-size: 0.92rem;
  color: #ffffff;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
  text-transform: none;
  padding: 0;
}

.header-main .nav-left > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--red-hot);
  transition: width 0.25s var(--ease);
}

.header-main .nav-left > li > a:hover::after {
  width: 100%;
}

.footer {
  background: #070708;
  color: #fff;
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.foot-col a,
.foot-col p {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.foot-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-hot);
  font-weight: 800;
  margin-bottom: 16px;
}

.foot-ip {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--faint);
  max-width: 80ch;
  line-height: 1.6;
  margin-bottom: 0;
}

.foot-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--faint);
}

.foot-bottom p {
  margin: 0;
}

.absolute-footer.dark {
  display: none;
}

.foot-social {
  display: flex;
  gap: 12px;
}

.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.2s;
}

.foot-social svg {
  width: 18px;
  height: 18px;
}

.foot-social a:hover {
  background: var(--red);
  border-color: var(--red);
}

@media only screen and (max-width: 48em) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-in {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .csection {
    padding: 64px 0;
  }

  .ben-grid,
  .why-grid {
    display: flex;
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .ben-grid,
  .why-grid {
    scrollbar-width: none;
  }

  .ben,
  .why-grid .icon-box {
    flex: 0 0 100%;
    scroll-snap-align: center;
    grid-column: auto !important;
    min-width: 0;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .steps .step {
    padding: 18px 14px;
  }

  .prize-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .prize.first {
    order: -1;
  }

  .tl {
    grid-template-columns: 1fr;
  }

  .crit-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aud {
    padding: 34px 24px;
  }

  .fgrid {
    grid-template-columns: 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
  }
}
