@font-face {
  font-family: "EventSerif";
  src: url("../fonts/font1.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #160c09;
  --night: #120404;
  --oxblood: #8f1717;
  --red: #e02222;
  --red-bright: #ff3333;
  --red-deep: #701010;
  --red-soft: rgba(224, 34, 34, 0.34);
  --jade: #3c8f82;
  --gold: #f4ca75;
  --gold-2: #a87531;
  --cream: #fff0c8;
  --muted: #c7a87b;
  --line: rgba(244, 202, 117, 0.28);
  --panel: rgba(28, 13, 9, 0.84);
  --panel-2: rgba(55, 18, 13, 0.88);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--night);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(70, 5, 5, 0.22), #180505 44%, #240807),
    url("../img/bg2.jpg") center top / 1920px auto repeat-y;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(36, 5, 5, 0.94), rgba(86, 10, 10, 0.46));
  border-bottom: 1px solid rgba(244, 202, 117, 0.16);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(47, 6, 6, 0.94);
}

.brand {
  width: 128px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(9px, 1.25vw, 22px);
  color: #ffe6b2;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.94rem;
}

.top-nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.top-nav a:hover::after,
.top-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.top-nav .nav-download {
  color: #fff4c8;
  font-weight: 950;
}

.top-nav .nav-pill {
  padding: 9px 14px;
  color: #2a1006;
  background: linear-gradient(180deg, #ffeaa4, #c88a2e);
  border: 1px solid rgba(255, 239, 179, 0.76);
}

.top-nav .nav-pill.ghost {
  color: var(--gold);
  background: rgba(122, 16, 16, 0.82);
}

.top-nav .nav-pill::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(152, 18, 18, 0.84);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 7vw, 120px) 88px;
  background:
    linear-gradient(90deg, rgba(42, 5, 5, 0.82), rgba(122, 10, 10, 0.34) 54%, rgba(42, 5, 5, 0.78)),
    url("../img/bg1.jpg") center top / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28vh;
  background: linear-gradient(180deg, transparent, var(--night));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}

.hero-glow {
  position: absolute;
  inset: 12% auto auto 50%;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(244, 202, 117, 0.28);
  border-radius: 50%;
  transform: translateX(-6%);
  box-shadow: inset 0 0 80px rgba(244, 202, 117, 0.14), 0 0 90px rgba(255, 51, 51, 0.34);
  animation: slowSpin 30s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: EventSerif, "Times New Roman", serif;
  line-height: 1.05;
  color: #ffe4a1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: #ffe9c0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.hero-meta span {
  padding: 10px 16px;
  color: #ffe9bd;
  background: rgba(156, 18, 18, 0.76);
  border: 1px solid var(--line);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.gold-btn,
.download-cta,
.outline-btn,
.tab-list button,
.pet-tabs button {
  min-height: 48px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gold-btn {
  min-width: 178px;
  padding: 13px 24px;
  color: #2a1006;
  font-weight: 900;
  background: linear-gradient(180deg, #fff0a7, #d69838 58%, #8d4c19);
  border: 1px solid #ffeab2;
  box-shadow: 0 12px 26px rgba(110, 39, 13, 0.42);
}

.download-cta {
  position: relative;
  min-width: 212px;
  padding: 15px 28px;
  color: #2a1006;
  font-weight: 950;
  text-align: center;
  background: linear-gradient(180deg, #fff8bb, #e4ad42 56%, #a85b18);
  border: 1px solid #fff0b9;
  box-shadow: 0 0 0 6px rgba(244, 202, 117, 0.14), 0 18px 34px rgba(0, 0, 0, 0.36);
}

.download-cta::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(244, 202, 117, 0.34);
  pointer-events: none;
}

.outline-btn {
  min-width: 150px;
  padding: 13px 22px;
  color: var(--gold);
  font-weight: 800;
  background: rgba(118, 12, 12, 0.58);
  border: 1px solid var(--line);
}

.gold-btn:hover,
.download-cta:hover,
.outline-btn:hover,
.tab-list button:hover,
.pet-tabs button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.reward-table {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(150, 24, 24, 0.9), rgba(58, 8, 8, 0.93));
  box-shadow: var(--shadow);
}

.reward-row {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  gap: 18px;
  min-height: 126px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(244, 202, 117, 0.16);
}

.reward-row:last-child {
  border-bottom: 0;
}

.reward-row.featured {
  background: linear-gradient(90deg, rgba(255, 51, 51, 0.34), rgba(244, 202, 117, 0.12), rgba(224, 34, 34, 0.24));
}

.tier {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffe7ae;
  font-weight: 900;
}

.tier span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #351307;
  background: linear-gradient(180deg, #ffeeb0, #c88a2e);
  border-radius: 50%;
  font-size: 1.35rem;
}

.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
  gap: 14px;
}

.items figure {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px;
  min-height: 96px;
  color: #ffe9bd;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(244, 202, 117, 0.14);
}

.items img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.items figcaption {
  text-align: center;
  font-size: 0.88rem;
}

.reward-row strong {
  color: var(--gold);
  font-size: 1.05rem;
  text-align: right;
}

.action-row {
  justify-content: center;
  margin-top: 30px;
}

.download-section {
  margin-top: -52px;
  padding-top: 0;
  z-index: 3;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr) minmax(320px, 0.9fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(120deg, rgba(164, 22, 22, 0.97), rgba(44, 6, 6, 0.94)),
    url("../img/tb-table.png") center / cover no-repeat;
  border: 1px solid rgba(255, 226, 145, 0.42);
  box-shadow: var(--shadow);
}

.download-copy h2 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.download-copy p:not(.eyebrow) {
  max-width: 640px;
  color: #f1d5a7;
  font-size: 1.16rem;
}

.download-steps {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: download-step;
}

.download-steps li {
  position: relative;
  min-height: 42px;
  padding: 9px 12px 9px 52px;
  color: #ffe6b0;
  font-size: 1.08rem;
  font-weight: 800;
  background: rgba(70, 5, 5, 0.34);
  border: 1px solid rgba(244, 202, 117, 0.16);
}

.download-steps li::before {
  counter-increment: download-step;
  content: counter(download-step);
  position: absolute;
  left: 10px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #2a1006;
  font-weight: 1000;
  background: linear-gradient(180deg, #fff3b2, #cc8e31);
  border-radius: 50%;
  transform: translateY(-50%);
}

.download-visual {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 12px;
  background: rgba(78, 5, 5, 0.34);
  border: 1px solid rgba(244, 202, 117, 0.22);
}

.download-visual img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  background: #260606;
}

.download-visual span {
  color: #ffe5ad;
  font-weight: 900;
  text-align: center;
}

.download-actions {
  display: grid;
  gap: 12px;
}

.mega-download {
  display: grid;
  gap: 3px;
  min-height: 152px;
  align-content: center;
  padding: 24px 22px;
  color: #2b1005;
  text-align: center;
  background: linear-gradient(180deg, #fff5b5, #d79735 60%, #854212);
  border: 1px solid #fff1b6;
  box-shadow: 0 0 0 9px rgba(244, 202, 117, 0.14), 0 24px 44px rgba(0, 0, 0, 0.5);
}

.mega-download span {
  font-family: EventSerif, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.4vw, 4.6rem);
  font-weight: 1000;
  line-height: 1;
}

.mega-download strong {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}

.mega-download small {
  font-weight: 900;
  font-size: 1rem;
}

.download-mini {
  display: grid;
  place-items: center;
  min-height: 52px;
  color: #ffe7b1;
  font-weight: 900;
  background: rgba(120, 13, 13, 0.78);
  border: 1px solid var(--line);
}

.download-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.download-stats span {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  color: #d8bb88;
  background: rgba(80, 6, 6, 0.34);
  border: 1px solid rgba(244, 202, 117, 0.16);
}

.download-stats strong {
  color: var(--gold);
  font-size: 1.18rem;
}

.event-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 16px;
}

.event-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 320px;
  overflow: hidden;
  padding: 20px;
  background: #340808;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transform: scale(1.02);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(120, 12, 12, 0.08), rgba(28, 4, 4, 0.9));
}

.event-card > *:not(img) {
  position: relative;
  z-index: 1;
}

.event-card span {
  width: max-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: #351307;
  font-weight: 950;
  background: linear-gradient(180deg, #ffeaaa, #c98b30);
}

.event-card h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
}

.event-card p {
  margin: 10px 0 0;
  color: #e8cca0;
}

.event-card:hover img {
  opacity: 0.88;
  transform: scale(1.08);
}

.main-event {
  min-height: 392px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card {
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 286px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(126, 18, 18, 0.92), rgba(36, 6, 6, 0.94));
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 234, 164, 0.62);
}

.news-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.news-card p {
  margin: 0;
  color: #d9bd90;
}

.news-meta {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.read-more {
  width: max-content;
  margin-top: auto;
  padding: 10px 15px;
  color: #2a1006;
  font-weight: 950;
  background: linear-gradient(180deg, #ffeaa4, #c88a2e);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.ticket-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 178px;
  padding: 18px 12px;
  text-align: center;
  background: linear-gradient(180deg, rgba(128, 18, 18, 0.92), rgba(36, 6, 6, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.ticket-grid img {
  height: 58px;
  object-fit: contain;
  margin-bottom: 10px;
}

.ticket-grid span {
  color: var(--gold);
  font-weight: 900;
}

.ticket-grid strong {
  margin-top: 5px;
  color: #ffe8b6;
  font-size: 0.92rem;
}

.gallery-panel {
  padding: 22px;
  background: rgba(42, 6, 6, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.tab-list {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-list button,
.pet-tabs button {
  padding: 10px 18px;
  color: #ffe5ae;
  font-weight: 900;
  background: rgba(132, 18, 18, 0.78);
  border: 1px solid var(--line);
}

.tab-list button.is-active,
.pet-tabs button.is-active {
  color: #2a1006;
  background: linear-gradient(180deg, #ffeaa4, #c88a2e);
}

.gallery-track {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-track.is-active {
  display: grid;
}

.gallery-track img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center top;
  background: #120807;
  border: 1px solid rgba(244, 202, 117, 0.16);
}

.comeback-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 62px);
  padding: clamp(26px, 5vw, 58px);
  background:
    linear-gradient(120deg, rgba(64, 8, 8, 0.96), rgba(162, 24, 24, 0.72)),
    url("../img/bg1.jpg") center / cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.comeback-card p:not(.eyebrow) {
  color: #f2d8aa;
  font-size: 1.08rem;
}

.comeback-card img {
  width: 100%;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.5));
}

.fashion-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(48, 6, 6, 0.94), rgba(150, 18, 18, 0.76));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.fashion-hero img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 235, 170, 0.76);
  border-radius: 50%;
  background: rgba(184, 22, 22, 0.78);
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(244, 202, 117, 0.12);
}

.play-btn::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 22px;
  border-left: 25px solid var(--gold);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

.fashion-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 18px;
}

.fashion-grid article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background: rgba(50, 6, 6, 0.9);
  border: 1px solid var(--line);
}

.fashion-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.fashion-grid span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 14px;
  color: #351307;
  font-weight: 900;
  background: linear-gradient(180deg, #ffeaaa, #c98b30);
}

.pet-stage {
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 30px 18px 24px;
  background:
    radial-gradient(circle at 50% 24%, rgba(60, 143, 130, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(50, 6, 6, 0.94), rgba(154, 18, 18, 0.76));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pet-stage > img {
  width: min(920px, 100%);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.58));
}

.pet-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  background: rgba(58, 7, 7, 0.9);
  border: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: #ffe5ad;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: #d8bd92;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 42px 20px 58px;
  color: #b9986c;
  text-align: center;
  background: #190505;
  border-top: 1px solid rgba(244, 202, 117, 0.12);
}

.site-footer img {
  width: 104px;
  opacity: 0.9;
}

.article-page {
  min-height: 100vh;
  padding-top: 92px;
}

.article-hero {
  position: relative;
  padding: clamp(72px, 10vw, 118px) clamp(18px, 6vw, 90px) clamp(46px, 8vw, 80px);
  background:
    linear-gradient(90deg, rgba(46, 5, 5, 0.88), rgba(150, 18, 18, 0.42)),
    url("../img/bg1.jpg") center top / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.article-hero .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #d7b987;
  font-weight: 800;
}

.article-hero .crumbs a {
  color: var(--gold);
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
}

.article-hero p {
  max-width: 760px;
  color: #ffe6b8;
  font-size: 1.14rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(22px, 4vw, 42px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 82px) 0;
}

.article-body,
.article-sidebar-card {
  background: linear-gradient(180deg, rgba(112, 16, 16, 0.92), rgba(36, 6, 6, 0.94));
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.article-body {
  padding: clamp(24px, 5vw, 46px);
}

.article-body h2 {
  margin-top: 30px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: #e2c79b;
  font-size: 1.06rem;
}

.article-body img {
  margin: 24px 0;
  border: 1px solid rgba(244, 202, 117, 0.2);
}

.article-body .note {
  padding: 16px 18px;
  color: #ffe8b8;
  background: rgba(255, 51, 51, 0.24);
  border-left: 4px solid var(--gold);
}

.article-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
}

.article-sidebar-card {
  padding: 20px;
}

.article-sidebar-card h3 {
  font-size: 1.5rem;
}

.article-sidebar-card a {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 850;
}

.back-link {
  display: inline-grid;
  margin-top: 22px;
}

.side-nav {
  position: fixed;
  right: 18px;
  top: 132px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  align-content: center;
  gap: 7px;
  overflow-y: auto;
  padding: 2px 0;
  transform: none;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.side-nav::-webkit-scrollbar {
  display: none;
}

.side-nav a {
  display: grid;
  place-items: center;
  width: 88px;
  min-height: 42px;
  padding: 8px 6px;
  color: #ffe7b3;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(126, 16, 16, 0.84);
  border: 1px solid rgba(244, 202, 117, 0.2);
}

.side-nav a.is-active {
  color: #321205;
  background: linear-gradient(180deg, #ffe9a5, #c68a30);
}

.floating-download {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  min-width: 190px;
  padding: 14px 18px 13px;
  color: #2a1006;
  text-align: center;
  background: linear-gradient(180deg, #fff8bd, #edbb47 54%, #9f5517);
  border: 2px solid #fff1ad;
  box-shadow: 0 0 0 8px rgba(244, 202, 117, 0.14), 0 18px 34px rgba(0, 0, 0, 0.45);
}

.floating-download span {
  font-size: 1.45rem;
  font-weight: 1000;
  line-height: 1;
}

.floating-download small {
  margin-top: 4px;
  font-weight: 900;
}

body.is-download-visible .floating-download {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.modal.is-open {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, 90vh);
  overflow: auto;
  padding: clamp(26px, 5vw, 44px);
  color: #f4ddb3;
  background:
    linear-gradient(180deg, rgba(142, 20, 20, 0.98), rgba(42, 6, 6, 0.98)),
    url("../img/pop03.png") center / cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.modal-card.large {
  width: min(840px, 100%);
}

.modal-card h3 {
  margin-bottom: 16px;
}

.modal-card p,
.modal-card li {
  color: #ecd3a6;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.modal-guide {
  width: min(360px, 100%);
  margin: 0 0 16px;
  border: 1px solid rgba(244, 202, 117, 0.28);
  background: rgba(0, 0, 0, 0.24);
}

.modal-steps {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.account-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.account-form label {
  display: grid;
  gap: 7px;
  color: #ffe5ad;
  font-weight: 850;
}

.account-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #fff2cd;
  background: rgba(72, 6, 6, 0.32);
  border: 1px solid rgba(244, 202, 117, 0.28);
  outline: none;
}

.account-form input:focus {
  border-color: rgba(255, 235, 170, 0.78);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--line);
  cursor: pointer;
}

.video-card {
  width: min(960px, 100%);
  padding: 14px;
}

.video-card video {
  width: 100%;
  max-height: 75vh;
  background: #000;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowSpin {
  from {
    transform: translateX(-6%) rotate(0deg);
  }
  to {
    transform: translateX(-6%) rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .top-nav {
    position: fixed;
    top: 82px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(48, 6, 6, 0.97);
    border: 1px solid var(--line);
  }

  .top-nav.is-open {
    display: flex;
  }

  .top-nav a {
    padding: 12px 10px;
  }

  .top-nav .nav-pill {
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .side-nav {
    display: none;
  }

  .ticket-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reward-row {
    grid-template-columns: 1fr;
  }

  .reward-row strong {
    text-align: left;
  }

  .comeback-card {
    grid-template-columns: 1fr;
  }

  .download-panel,
  .event-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .download-visual {
    max-width: 460px;
    justify-self: center;
  }

  .download-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .event-card,
  .main-event {
    min-height: 280px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand {
    width: 96px;
  }

  .hero {
    min-height: 780px;
    padding: 112px 18px 70px;
  }

  .hero-meta span,
  .gold-btn,
  .download-cta,
  .outline-btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions,
  .action-row {
    width: 100%;
  }

  .section {
    width: min(100% - 26px, 1180px);
    padding: 68px 0;
  }

  .ticket-grid,
  .gallery-track,
  .fashion-grid,
  .download-stats {
    grid-template-columns: 1fr;
  }

  .download-section {
    margin-top: -24px;
  }

  .download-panel {
    padding: 20px;
  }

  .floating-download {
    left: 13px;
    right: 13px;
    bottom: 12px;
    min-width: 0;
    padding: 12px;
  }

  .floating-download span {
    font-size: 1.28rem;
  }

  .gallery-panel {
    padding: 14px;
  }

  .gallery-track img {
    height: 210px;
  }

  .tab-list {
    flex-direction: column;
  }

  .items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fashion-hero,
  .fashion-hero img {
    min-height: 320px;
  }
}

/* Full bright-red pass: reduce the remaining black areas across the game site. */
:root {
  --night: #b90707;
  --oxblood: #c90b0b;
  --red: #f01c1c;
  --red-bright: #ff3a2f;
  --red-deep: #8f0606;
  --panel: rgba(190, 12, 12, 0.9);
  --panel-2: rgba(224, 24, 24, 0.9);
  --line: rgba(255, 221, 120, 0.38);
}

body {
  background: #bd0909;
}

body::before {
  background:
    radial-gradient(circle at 52% 10%, rgba(255, 72, 58, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255, 39, 39, 0.42), #d40c0c 38%, #a80707 100%),
    url("../img/bg2.jpg") center top / 1920px auto repeat-y;
  background-blend-mode: screen, normal, multiply;
}

.site-header,
.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(219, 13, 13, 0.98), rgba(145, 5, 5, 0.96));
}

.top-nav .nav-pill.ghost,
.menu-toggle,
.outline-btn,
.download-mini,
.tab-list button,
.pet-tabs button,
.side-nav a {
  background: linear-gradient(180deg, rgba(218, 22, 22, 0.96), rgba(138, 8, 8, 0.94));
}

.hero {
  background:
    linear-gradient(90deg, rgba(188, 8, 8, 0.72), rgba(255, 36, 36, 0.34) 54%, rgba(178, 8, 8, 0.64)),
    url("../img/bg1.jpg") center top / cover no-repeat;
}

.hero::after {
  background: linear-gradient(180deg, transparent, #bd0909);
}

.hero-video {
  opacity: 0.3;
  mix-blend-mode: screen;
}

.hero-meta span {
  background: rgba(220, 21, 21, 0.84);
}

.download-panel,
.reward-table,
.gallery-panel,
.comeback-card,
.fashion-hero,
.pet-stage,
.faq-list details,
.article-body,
.article-sidebar-card,
.modal-card,
.news-card,
.ticket-grid article {
  background:
    linear-gradient(180deg, rgba(232, 26, 26, 0.93), rgba(152, 6, 6, 0.94)) !important;
}

.download-panel {
  box-shadow: 0 24px 70px rgba(132, 4, 4, 0.38), 0 0 0 1px rgba(255, 222, 132, 0.12);
}

.reward-row.featured,
.article-body .note {
  background: rgba(255, 66, 54, 0.32) !important;
}

.items figure,
.download-steps li,
.download-visual,
.download-stats span,
.account-form input {
  background: rgba(190, 10, 10, 0.54);
}

.event-card {
  background: #d41111;
}

.event-card::after {
  background: linear-gradient(180deg, rgba(255, 44, 44, 0.08), rgba(154, 5, 5, 0.72));
}

.fashion-grid article {
  background: rgba(188, 10, 10, 0.9);
}

.site-footer {
  background: linear-gradient(180deg, #c70b0b, #930606);
}

.article-hero {
  background:
    linear-gradient(90deg, rgba(198, 8, 8, 0.82), rgba(255, 45, 45, 0.38)),
    url("../img/bg1.jpg") center top / cover no-repeat;
}

.modal {
  background: rgba(120, 4, 4, 0.74);
}

.modal-close {
  background: rgba(184, 8, 8, 0.72);
}

@media (max-width: 1120px) {
  .top-nav {
    background: linear-gradient(180deg, rgba(210, 12, 12, 0.98), rgba(126, 5, 5, 0.98));
  }
}

/* Balanced red pass: 50/50 bright red and warm brown-red. */
:root {
  --night: #3a0908;
  --oxblood: #7f1712;
  --red: #c71717;
  --red-bright: #ed2a23;
  --red-deep: #4f0b08;
  --panel: rgba(102, 18, 12, 0.9);
  --panel-2: rgba(158, 28, 20, 0.88);
  --line: rgba(255, 221, 132, 0.34);
}

body {
  background: #3a0908;
}

body::before {
  background:
    radial-gradient(circle at 52% 8%, rgba(238, 42, 35, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(122, 18, 12, 0.3), #4f0b08 42%, #2a0706 100%),
    url("../img/bg2.jpg") center top / 1920px auto repeat-y;
  background-blend-mode: screen, normal, multiply;
}

.site-header,
.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(100, 12, 9, 0.98), rgba(48, 8, 7, 0.96));
}

.top-nav .nav-pill.ghost,
.menu-toggle,
.outline-btn,
.download-mini,
.tab-list button,
.pet-tabs button,
.side-nav a {
  background: linear-gradient(180deg, rgba(177, 30, 22, 0.92), rgba(88, 14, 10, 0.94));
}

.hero {
  background:
    linear-gradient(90deg, rgba(58, 8, 7, 0.82), rgba(198, 28, 22, 0.24) 54%, rgba(52, 8, 7, 0.76)),
    url("../img/bg1.jpg") center top / cover no-repeat;
}

.hero::after {
  background: linear-gradient(180deg, transparent, #3a0908);
}

.hero-video {
  opacity: 0.38;
  mix-blend-mode: normal;
}

.hero-meta span {
  background: rgba(166, 28, 20, 0.78);
}

.download-panel,
.reward-table,
.gallery-panel,
.comeback-card,
.fashion-hero,
.pet-stage,
.faq-list details,
.article-body,
.article-sidebar-card,
.modal-card,
.news-card,
.ticket-grid article {
  background:
    linear-gradient(180deg, rgba(132, 22, 15, 0.92), rgba(54, 9, 7, 0.94)) !important;
}

.download-panel {
  box-shadow: 0 24px 70px rgba(38, 5, 4, 0.42), 0 0 0 1px rgba(255, 222, 132, 0.1);
}

.reward-row.featured,
.article-body .note {
  background: rgba(218, 43, 32, 0.25) !important;
}

.items figure,
.download-steps li,
.download-visual,
.download-stats span,
.account-form input {
  background: rgba(78, 12, 9, 0.54);
}

.event-card {
  background: #5c0e0a;
}

.event-card::after {
  background: linear-gradient(180deg, rgba(201, 31, 25, 0.08), rgba(39, 7, 6, 0.84));
}

.fashion-grid article {
  background: rgba(72, 10, 8, 0.9);
}

.site-footer {
  background: linear-gradient(180deg, #4f0b08, #250605);
}

.article-hero {
  background:
    linear-gradient(90deg, rgba(62, 8, 7, 0.86), rgba(198, 30, 24, 0.24)),
    url("../img/bg1.jpg") center top / cover no-repeat;
}

.modal {
  background: rgba(38, 5, 4, 0.76);
}

.modal-close {
  background: rgba(126, 18, 13, 0.72);
}

@media (max-width: 1120px) {
  .top-nav {
    background: linear-gradient(180deg, rgba(118, 14, 10, 0.98), rgba(48, 8, 7, 0.98));
  }
}

/* Softer corners and sect-inspired class showcase. */
:root {
  --radius-xs: 7px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
}

.top-nav .nav-pill,
.menu-toggle,
.hero-meta span,
.gold-btn,
.download-cta,
.outline-btn,
.download-mini,
.tab-list button,
.pet-tabs button,
.side-nav a,
.floating-download,
.read-more,
.event-card span,
.fashion-grid span,
.modal-close,
.account-form input {
  border-radius: var(--radius-sm);
}

.download-cta::before,
.download-panel,
.reward-table,
.items figure,
.download-steps li,
.download-visual,
.download-visual img,
.mega-download,
.download-stats span,
.event-card,
.news-card,
.ticket-grid article,
.gallery-panel,
.gallery-track img,
.comeback-card,
.fashion-hero,
.fashion-grid article,
.pet-stage,
.faq-list details,
.article-body,
.article-sidebar-card,
.article-body img,
.modal-card,
.modal-guide,
.video-card video {
  border-radius: var(--radius-md);
}

.mega-download,
.floating-download,
.modal-card,
.reward-table,
.event-card,
.news-card,
.gallery-panel,
.download-panel,
.class-panel {
  overflow: hidden;
}

.class-section {
  width: min(1240px, calc(100% - 36px));
}

.class-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 28px;
}

.class-tab {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  width: 94px;
  min-height: 106px;
  padding: 10px 8px 8px;
  color: #ffe4ae;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.class-tab span {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #ffecc4;
  font-family: EventSerif, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 1000;
  z-index: 1;
}

.class-tab::before {
  content: "";
  position: absolute;
  top: 10px;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 238, 177, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(151, 28, 20, 0.98), rgba(61, 10, 8, 0.98));
  border: 1px solid rgba(255, 226, 145, 0.5);
  box-shadow: inset 0 0 18px rgba(255, 220, 122, 0.12), 0 12px 26px rgba(0, 0, 0, 0.28);
  transform: rotate(45deg);
  transition: transform 0.22s ease, filter 0.22s ease, background 0.22s ease;
}

.class-tab strong {
  position: relative;
  z-index: 1;
  min-height: 30px;
  color: #e9c789;
  font-size: 0.86rem;
  line-height: 1.15;
  text-align: center;
}

.class-tab:hover::before,
.class-tab.is-active::before {
  filter: brightness(1.1);
  background:
    linear-gradient(135deg, rgba(255, 250, 205, 0.42), transparent 42%),
    linear-gradient(180deg, #e8b85b, #b43a21 52%, #5a100a);
  transform: rotate(45deg) scale(1.06);
}

.class-tab.is-active strong {
  color: #ffeab2;
}

.class-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr) minmax(280px, 0.78fr);
  align-items: stretch;
  gap: clamp(20px, 3.2vw, 36px);
  min-height: 520px;
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 22% 25%, rgba(244, 202, 117, 0.16), transparent 32%),
    linear-gradient(120deg, rgba(118, 20, 14, 0.94), rgba(42, 8, 7, 0.96));
  border: 1px solid rgba(255, 226, 145, 0.36);
  box-shadow: var(--shadow);
}

.class-visual {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 440px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 232, 170, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(104, 18, 12, 0.72), rgba(18, 4, 4, 0.5));
  border: 1px solid rgba(255, 226, 145, 0.2);
  overflow: hidden;
}

.class-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 226, 145, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 48px rgba(255, 226, 145, 0.14);
}

.class-visual img {
  position: relative;
  width: 132%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.52));
}

.class-copy {
  display: grid;
  align-content: center;
}

.class-kicker {
  width: max-content;
  margin: 0 0 10px;
  padding: 7px 12px;
  color: #351307;
  font-weight: 950;
  background: linear-gradient(180deg, #ffedaa, #c98b30);
  border-radius: var(--radius-sm);
}

.class-copy h3 {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
}

.class-copy > strong {
  display: block;
  margin-top: 8px;
  color: #ffe8b6;
  font-size: 1.2rem;
}

.class-copy > p:not(.class-kicker) {
  margin: 18px 0 0;
  color: #dfc194;
  font-size: 1.08rem;
}

.class-info {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.class-info div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  padding: 11px 13px;
  background: rgba(74, 12, 9, 0.48);
  border: 1px solid rgba(244, 202, 117, 0.16);
  border-radius: var(--radius-sm);
}

.class-info dt {
  color: var(--gold);
  font-weight: 900;
}

.class-info dd {
  margin: 0;
  color: #ffe6b2;
}

.class-stats {
  display: grid;
  align-content: center;
  gap: 15px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(32, 6, 5, 0.42);
  border: 1px solid rgba(244, 202, 117, 0.18);
}

.class-bar {
  display: grid;
  gap: 7px;
}

.class-bar label {
  display: flex;
  justify-content: space-between;
  color: #f2d49f;
  font-weight: 900;
  font-size: 0.96rem;
}

.class-meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 238, 180, 0.12);
  border: 1px solid rgba(244, 202, 117, 0.12);
}

.class-meter span {
  display: block;
  height: 100%;
  width: var(--value, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, #b72c1e, #f0b95b, #fff0a5);
  box-shadow: 0 0 16px rgba(244, 202, 117, 0.22);
}

@media (max-width: 1120px) {
  .class-panel {
    grid-template-columns: 1fr;
  }

  .class-visual {
    min-height: 360px;
  }

  .class-visual img {
    max-height: none;
  }
}

@media (max-width: 720px) {
  .class-section {
    width: min(100% - 26px, 1180px);
  }

  .class-tabs {
    gap: 8px;
  }

  .class-tab {
    width: 78px;
    min-height: 96px;
  }

  .class-tab span,
  .class-tab::before {
    width: 50px;
    height: 50px;
  }

  .class-tab strong {
    font-size: 0.78rem;
  }

  .class-panel {
    min-height: 0;
    padding: 18px;
  }

  .class-visual {
    min-height: 280px;
  }

  .class-visual img {
    width: 125%;
    max-height: none;
  }

  .class-info div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* Hero clarity pass: avoid double-exposed video over the main image. */
.hero {
  background:
    linear-gradient(90deg, rgba(42, 7, 6, 0.58), rgba(118, 18, 13, 0.1) 52%, rgba(48, 7, 6, 0.34)),
    url("../img/bg1.jpg") center top / cover no-repeat;
}

.hero-video {
  display: none;
  opacity: 0;
}

.hero-glow {
  opacity: 0.34;
}

.hero::after {
  height: 18vh;
  background: linear-gradient(180deg, transparent, rgba(58, 9, 8, 0.9));
}

/* Image-only hero slider. */
.hero-slider {
  display: block;
  min-height: 100vh;
  padding: 0;
  background: #2a0706;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.04);
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(58, 8, 7, 0.12), transparent 22%, transparent 72%, rgba(58, 9, 8, 0.7)),
    linear-gradient(90deg, rgba(38, 5, 4, 0.2), transparent 28%, transparent 72%, rgba(38, 5, 4, 0.22));
  pointer-events: none;
}

.hero-slider::after {
  z-index: 3;
  height: 16vh;
  background: linear-gradient(180deg, transparent, rgba(58, 9, 8, 0.9));
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 6vh, 58px);
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-slider-dots button {
  width: 44px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(255, 235, 170, 0.54);
  border-radius: 999px;
  background: rgba(100, 14, 10, 0.65);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, filter 0.22s ease;
}

.hero-slider-dots button.is-active {
  width: 64px;
  background: linear-gradient(90deg, #ffeaa4, #c88a2e);
  filter: drop-shadow(0 0 12px rgba(244, 202, 117, 0.28));
}

@media (max-width: 720px) {
  .hero-slider {
    min-height: 640px;
  }

  .hero-slide img {
    object-position: center top;
  }

  .hero-slider-dots {
    bottom: 84px;
  }

  .hero-slider-dots button {
    width: 30px;
  }

  .hero-slider-dots button.is-active {
    width: 44px;
  }
}
