:root {
  --bg: #020819;
  --text: #f5fbff;
  --muted: rgba(219, 232, 255, 0.74);
  --line: rgba(255, 255, 255, 0.16);
  --accent: #6fdcff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 20%, rgba(42, 122, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(2, 8, 28, 0.04) 0%, rgba(3, 9, 31, 0.48) 58%, rgba(1, 5, 18, 0.9) 100%);
}

body::after {
  z-index: 2;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

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

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.is-browser-blocked body > :not(.browser-gate) {
  display: none !important;
}

#petalCanvas {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.58;
}

.background-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 1;
  filter: saturate(1.18) contrast(1.08) brightness(0.72);
}

.shell {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 34px;
}

.hero {
  position: relative;
  min-height: 318px;
  margin: 0 -20px 16px;
  padding: 78px 42px 36px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  background: #03081b;
  box-shadow: inset 0 -1px 0 rgba(103, 180, 255, 0.26), 0 22px 64px rgba(0, 0, 0, 0.34);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 40%, rgba(41, 139, 255, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(3, 8, 27, 0.98) 0%, rgba(3, 8, 27, 0.9) 38%, rgba(3, 8, 27, 0.18) 64%, rgba(3, 8, 27, 0.02) 100%);
  pointer-events: none;
}

.hero__art {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: block;
  width: min(76%, 560px);
  height: auto;
  object-fit: contain;
  object-position: right bottom;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 56%;
}

.hero__eyebrow {
  width: fit-content;
  margin: 0 0 12px;
  padding: 8px 14px;
  border: 1px solid rgba(124, 194, 255, 0.34);
  border-radius: 999px;
  background: rgba(49, 94, 167, 0.28);
  color: #dff8ff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(126, 232, 255, 0.2);
}

.hero h1 {
  margin: 0 0 12px;
  color: #d8fbff;
  font-size: 52px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(126, 232, 255, 0.82), 0 0 28px rgba(79, 123, 255, 0.66), 0 8px 22px rgba(0, 0, 0, 0.64);
}

.hero p {
  margin: 0;
  color: rgba(246, 250, 255, 0.9);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 800;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  height: 54px;
  margin: 0 0 24px;
  padding: 0 22px 0 14px;
  border: 1px solid rgba(93, 169, 255, 0.26);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 49, 111, 0.82), rgba(17, 40, 92, 0.54));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.support-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  margin: 0 0 12px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(126, 232, 255, 0.32);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(25, 45, 126, 0.82), rgba(71, 42, 142, 0.52));
  color: #e8fbff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.support-button__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 232, 255, 0.42), rgba(82, 65, 220, 0.26));
  box-shadow: 0 0 22px rgba(126, 232, 255, 0.44);
  overflow: hidden;
}

.support-button__icon img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.notice span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4eff, #55d6ff);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(45, 128, 255, 0.56);
}

.notice__track {
  min-width: 0;
  overflow: hidden;
}

.notice__track p {
  display: inline-flex;
  align-items: center;
  gap: 52px;
  min-width: max-content;
  margin: 0;
  color: #7ee8ff;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  animation: notice-marquee 8s linear infinite;
  will-change: transform;
}

.notice__track p::after {
  content: attr(data-marquee);
  flex: 0 0 auto;
}

@keyframes notice-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 26px));
  }
}

.zone-section {
  margin-top: 4px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 16px;
}

.section-heading--center {
  justify-content: center;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  color: #9cf3ff;
  font-size: 24px;
  line-height: 1.15;
  text-shadow: 0 0 18px rgba(126, 232, 255, 0.62);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section-heading--center h2 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 26px;
}

.section-heading--center h2::before,
.section-heading--center h2::after {
  content: "*";
  color: #2c86ff;
  font-size: 20px;
  text-shadow: 0 0 14px rgba(44, 134, 255, 0.88);
}

.zone-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.zone-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 390px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #071026;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.zone-card::before,
.zone-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.zone-card::before {
  z-index: 0;
  background: transparent;
}

.zone-card::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 6, 23, 0.78) 0%, rgba(3, 6, 23, 0.44) 42%, rgba(3, 6, 23, 0) 78%, rgba(3, 6, 23, 0) 100%),
    linear-gradient(180deg, rgba(3, 6, 23, 0.04) 0%, rgba(3, 6, 23, 0) 42%, rgba(3, 6, 23, 0.08) 100%);
}

.zone-card--manhua {
  border-color: rgba(255, 91, 214, 0.32);
}

.zone-card--anime {
  border-color: rgba(145, 91, 255, 0.34);
}

.zone-card--novel {
  border-color: rgba(255, 132, 42, 0.34);
}

.zone-card--download {
  border-color: rgba(35, 224, 205, 0.34);
}

.zone-card__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
  filter: saturate(1.14) contrast(1.08) brightness(1.12);
  pointer-events: none;
}

.zone-card__head,
.zone-card__copy,
.zone-card__bullets,
.zone-card h3,
.zone-card p,
.zone-card__btn {
  position: relative;
  z-index: 2;
}

.zone-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.zone-card__num {
  color: #39a8ff;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(57, 168, 255, 0.55);
}

.zone-card--manhua .zone-card__num {
  color: #f06ad9;
  text-shadow: 0 0 18px rgba(240, 106, 217, 0.55);
}

.zone-card--novel .zone-card__num {
  color: #ff902f;
  text-shadow: 0 0 18px rgba(255, 144, 47, 0.55);
}

.zone-card--download .zone-card__num {
  color: #12d8bf;
  text-shadow: 0 0 18px rgba(18, 216, 191, 0.55);
}

.zone-card__head h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.62);
}

.zone-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: var(--zone-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.zone-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zone-card__copy {
  width: 56%;
  margin-top: 26px;
}

.zone-card p {
  max-width: 100%;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.zone-card__bullets {
  display: grid;
  gap: 14px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.zone-card__bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.68);
}

.zone-card__bullets li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--zone-accent);
  color: #fff;
  font-size: 10px;
  box-shadow: 0 0 12px rgba(126, 232, 255, 0.35);
}

.zone-card__btn {
  display: inline-grid;
  place-items: center;
  min-width: 112px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--zone-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(255, 94, 196, 0.34);
}

.footer {
  margin-top: 34px;
  color: rgba(151, 177, 255, 0.92);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 0 16px rgba(71, 118, 255, 0.44);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
}

.topbar a,
.topbar strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(126, 194, 255, 0.22);
  border-radius: 999px;
  background: rgba(12, 31, 78, 0.54);
  color: #e7f8ff;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.zone-hero {
  margin-bottom: 22px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 24%, rgba(126, 232, 255, 0.2), transparent 34%),
    var(--zone-hero-bg, linear-gradient(135deg, rgba(22, 71, 172, 0.82), rgba(42, 23, 98, 0.82)));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.zone-hero span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.zone-hero h1 {
  margin: 16px 0 8px;
  font-size: 30px;
  line-height: 1.15;
}

.zone-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.resource-grid {
  display: grid;
  gap: 12px;
}

.resource-group {
  display: grid;
  gap: 10px;
}

.resource-group h3 {
  margin: 10px 0 0;
  color: #9cf3ff;
  font-size: 16px;
  line-height: 1.2;
  text-shadow: 0 0 14px rgba(126, 232, 255, 0.44);
}

.resource-group__items {
  display: grid;
  gap: 12px;
}

.resource-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(126, 194, 255, 0.18);
  border-radius: 16px;
  background: rgba(9, 24, 66, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.resource-card--featured {
  border-color: rgba(126, 232, 255, 0.42);
}

.resource-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3f7cff, #7ee8ff);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  overflow: hidden;
}

.resource-card__icon img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
}

.resource-card strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.resource-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.resource-card__go,
.resource-card__code {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f7cff, #7ee8ff);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.empty {
  padding: 22px;
  border: 1px solid rgba(126, 194, 255, 0.18);
  border-radius: 16px;
  background: rgba(9, 24, 66, 0.72);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.browser-gate {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(2, 6, 22, 0.48), rgba(2, 6, 22, 0.72)),
    url("./browser-gate-bg.webp?v=13") center / cover no-repeat,
    #050917;
}

.is-browser-blocked .browser-gate {
  display: grid;
}

.browser-gate__panel {
  position: relative;
  width: min(72vw, 300px);
  max-height: min(76vh, 660px);
  padding: 24px 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 42px rgba(89, 108, 255, 0.2);
  text-align: center;
  overflow: hidden;
}

.browser-gate__copy {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0 0 18px;
}

.browser-gate__copy::before {
  content: "!";
  display: grid;
  place-items: center;
  width: 50px;
  height: 45px;
  margin: 0 auto 12px;
  clip-path: polygon(50% 0, 100% 92%, 0 92%);
  background: linear-gradient(180deg, #ffd95a, #ffb52b);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(108, 74, 0, 0.26);
  box-shadow: 0 12px 28px rgba(255, 190, 43, 0.28);
}

.browser-gate__copy strong {
  display: block;
  margin-bottom: 7px;
  color: #171827;
  font-size: clamp(23px, 6.4vw, 30px);
  line-height: 1.15;
  font-weight: 900;
}

.browser-gate__copy p {
  margin: 0;
  color: #5f6472;
  font-size: clamp(13px, 3.5vw, 17px);
  line-height: 1.35;
  font-weight: 700;
}

.browser-gate__panel button,
.browser-gate__action {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  display: grid;
  place-items: center;
  min-height: 0;
  width: 100%;
  height: 50px;
  margin: 0 0 16px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #245dff 0%, #8b3ff6 100%);
  color: #fff;
  font-size: clamp(15px, 4.1vw, 19px);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(83, 92, 255, 0.3);
  cursor: pointer;
}

.browser-gate__guide {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  padding: 15px 12px;
  border-radius: 18px;
  background: #f4f6fb;
  color: #4d505b;
  text-align: left;
}

.browser-gate__guide h2 {
  margin: 0 0 12px;
  color: #202231;
  font-size: clamp(14px, 3.8vw, 18px);
  line-height: 1.2;
  text-align: center;
}

.browser-gate__guide ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.browser-gate__guide li {
  position: relative;
  padding-left: 22px;
  color: #4f5361;
  font-size: clamp(10.5px, 2.8vw, 13px);
  line-height: 1.38;
  font-weight: 800;
}

.browser-gate__guide li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  top: 0.08em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #545862;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.browser-gate__ua {
  margin: 10px 0 0;
  color: #8b90a0;
  font-size: 9px;
  line-height: 1.25;
  word-break: break-all;
  text-align: left;
}

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.support-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 25, 0.76);
  backdrop-filter: blur(16px);
}

.support-modal__panel {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  padding: 22px;
  border: 1px solid rgba(126, 232, 255, 0.28);
  border-radius: 22px;
  background: rgba(8, 22, 62, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  text-align: center;
}

.support-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.support-modal h2 {
  margin: 4px 0 6px;
  color: #9cf3ff;
  font-size: 22px;
  text-shadow: 0 0 16px rgba(126, 232, 255, 0.5);
}

.support-modal p {
  margin: 0 0 16px;
  color: rgba(226, 240, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.support-modal__qr {
  display: block;
  width: 100%;
  max-height: min(68vh, 520px);
  border-radius: 16px;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 560px) {
  .shell {
    padding: 0 12px 28px;
  }

  .hero {
    min-height: 226px;
    margin: 0 -12px 14px;
    padding: 58px 20px 24px;
    border-radius: 0 0 22px 22px;
  }

  .hero__art {
    width: 86%;
  }

  .hero__copy {
    max-width: 64%;
  }

  .hero__eyebrow {
    margin-bottom: 8px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: 33px;
    line-height: 1.08;
  }

  .hero p {
    font-size: 11px;
    line-height: 1.48;
  }

  .notice {
    height: 46px;
    margin-bottom: 18px;
    padding-left: 8px;
  }

  .support-button {
    min-height: 44px;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .support-button__icon {
    width: 32px;
    height: 32px;
  }

  .support-button__icon img {
    width: 28px;
    height: 28px;
  }

  .notice span {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .notice__track p {
    font-size: 12px;
  }

  .section-heading--center {
    margin-bottom: 14px;
  }

  .section-heading--center h2 {
    gap: 9px;
    font-size: 20px;
  }

  .zone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .zone-card {
    min-height: 238px;
    padding: 12px 10px 11px;
    border-radius: 14px;
  }

  .zone-card::before {
    background-position: right bottom;
    filter: saturate(1.1) contrast(1.05) brightness(0.96);
  }

  .zone-card::after {
    background:
      linear-gradient(90deg, rgba(3, 6, 23, 0.78) 0%, rgba(3, 6, 23, 0.46) 48%, rgba(3, 6, 23, 0.02) 82%, rgba(3, 6, 23, 0) 100%),
      linear-gradient(180deg, rgba(3, 6, 23, 0.04) 0%, rgba(3, 6, 23, 0) 38%, rgba(3, 6, 23, 0.1) 100%);
  }

  .zone-card__head {
    gap: 6px;
  }

  .zone-card__num {
    font-size: 23px;
  }

  .zone-card__head h3 {
    min-width: 0;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .zone-card__icon {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .zone-card__copy {
    width: 61%;
    margin-top: 34px;
  }

  .zone-card p {
    margin-bottom: 9px;
    font-size: 9.5px;
    line-height: 1.48;
  }

  .zone-card__bullets {
    gap: 5px;
    margin-bottom: 9px;
  }

  .zone-card__bullets li {
    gap: 4px;
    font-size: 8.5px;
  }

  .zone-card__bullets li::before {
    width: 10px;
    height: 10px;
    font-size: 7px;
  }

  .zone-card__btn {
    min-width: 68px;
    height: 25px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .footer {
    margin-top: 24px;
    font-size: 12px;
  }

  .topbar {
    padding: 12px 0;
  }

  .resource-card {
    grid-template-columns: 42px 1fr;
  }

  .resource-card__go,
  .resource-card__code {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 380px) {
  .hero__art {
    width: 96%;
  }

  .hero h1 {
    font-size: 30px;
  }

  .zone-card {
    min-height: 226px;
    padding-inline: 8px;
  }

  .zone-card__copy {
    width: 64%;
    margin-top: 30px;
  }

  .zone-card p {
    font-size: 9px;
  }

  .zone-card__bullets li {
    font-size: 8px;
  }
}
