:root {
  --bg: #f7f7f8;
  --card: #ffffff;
  --text: #171717;
  --sub: #666;
  --line: #ececec;
  --red: #ff1f1f;
  --red-dark: #d90000;
  --pink: #ff6b6b;
  --purple: #6c3cff;
  --blue: #278dff;
  --green: #31a24c;
  --gold: #f3a61c;
  --shadow: 0 18px 48px rgba(255, 44, 44, 0.08);
  --radius: 20px;
  --container: 1240px;
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .nav-wrap {
    min-height: 64px;
    padding: 10px 0;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand-text span {
    display: none;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .cta-btn {
    display: none;
  }

  .hero {
    padding: 18px 0 8px;
    background:
      radial-gradient(circle at top right, rgba(255, 58, 58, 0.10), transparent 28%),
      linear-gradient(180deg, #fffdfd 0%, #fff4f4 52%, #ffffff 100%);
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 12px 0 8px;
    max-width: 100%;
  }

  .hero-badge {
    display: block;
    max-width: 100%;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.45;
    border-radius: 12px;
  }

  .hero h1 {
    max-width: 4.2em;
    font-size: clamp(32px, 14vw, 54px);
    line-height: 0.9;
    letter-spacing: -1px;
  }

  .hero p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .community-copy h2 {
    white-space: normal;
    font-size: 24px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.06), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff7f7 48%, #fff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0e3e3;
}

.nav-wrap {
  position: relative;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-text strong {
  font-size: 28px;
  line-height: 1;
}

.brand-text span {
  font-size: 13px;
  color: #fff;
  background: linear-gradient(90deg, #5b3df5, #8748ff);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  position: relative;
}

.nav a.active,
.nav a:hover {
  color: var(--red);
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
}

.cta-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: .2s ease;
}

.cta-btn,
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 40, 40, 0.24);
}

.cta-btn:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-secondary {
  background: #fff;
  color: #222;
  border: 1px solid #d8d8d8;
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 28px 0 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 30%, rgba(255,255,255,0.2) 55%, rgba(255,255,255,0) 72%),
    url("./素材/背景.webp") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.84) 34%, rgba(255,255,255,0.34) 58%, rgba(255,255,255,0) 76%),
    linear-gradient(112deg, rgba(255,0,0,0.06), transparent 35%),
    radial-gradient(circle at 78% 28%, rgba(255,0,0,0.08), transparent 20%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  min-height: 560px;
}

.hero-copy {
  padding: 28px 28px 22px;
  max-width: 700px;
  position: relative;
  z-index: 1;
  border-radius: 28px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #ff3030, #ff5757);
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.2px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(255, 59, 59, 0.18);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.95;
  font-weight: 1000;
  color: #ea1b1b;
  letter-spacing: -2px;
  text-shadow: 0 8px 22px rgba(255, 60, 60, 0.10);
}

.hero p {
  max-width: 34em;
  margin: 0;
  font-size: 20px;
  line-height: 1.85;
  color: #242424;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 28px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #f0dede;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.06);
  overflow: hidden;
}

.feature-pill {
  min-height: 92px;
  min-width: 0;
  padding: 16px 14px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-pill + .feature-pill {
  border-left: 1px solid #f1dddd;
}

.feature-icon-image {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.feature-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-copy strong {
  font-size: 14px;
  line-height: 1.15;
  color: #1e1e1e;
}

.feature-copy span {
  font-size: 11px;
  line-height: 1.15;
  color: #555;
  font-weight: 700;
}

.feature-copy strong,
.feature-copy span {
  white-space: nowrap;
}

.hero-visual {
  display: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 0, 0.2);
}

.ring-1 {
  width: 360px;
  height: 360px;
  top: 42px;
  left: 140px;
}

.ring-2 {
  width: 430px;
  height: 430px;
  top: 6px;
  left: 104px;
  border-style: dashed;
}

.ring-3 {
  width: 500px;
  height: 500px;
  top: -24px;
  left: 68px;
  opacity: .45;
}

.center-badge {
  position: absolute;
  left: 220px;
  top: 110px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff5c5c, #ff1616 62%, #cf0000);
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 60px rgba(255, 30, 30, 0.28);
  border: 8px solid rgba(255,255,255,.6);
}

.center-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 1000;
}

.center-title {
  font-size: 28px;
  font-weight: 900;
}

.figure {
  position: absolute;
  bottom: 20px;
  width: 180px;
  height: 320px;
}

.figure-head {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f2f2f, #111);
  margin: 0 auto;
  border: 4px solid #ff3a3a;
}

.figure-body {
  width: 100%;
  height: 230px;
  margin-top: -10px;
  border-radius: 28px;
  background: linear-gradient(180deg, #111, #2a0d0d 62%, #ff1e1e);
  border: 3px solid rgba(255,255,255,0.2);
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.figure-left {
  left: 80px;
  transform: rotate(-8deg);
}

.figure-right {
  right: 40px;
  transform: rotate(8deg);
}

.tag {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2d2d, #d30000);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255,0,0,.18);
}

.tag-1 { top: 80px; right: 80px; }
.tag-2 { top: 180px; right: 30px; }
.tag-3 { bottom: 60px; right: 20px; }

.arrow {
  position: absolute;
  width: 120px;
  height: 10px;
  background: linear-gradient(90deg, #ff4d4d, #ff1010);
  border-radius: 99px;
}

.arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -7px;
  width: 22px;
  height: 22px;
  border-top: 8px solid #ff1010;
  border-right: 8px solid #ff1010;
  transform: rotate(45deg);
}

.arrow-1 { top: 30px; right: 20px; transform: rotate(-25deg); }
.arrow-2 { bottom: 90px; left: 120px; transform: rotate(8deg); }

.panel-section {
  padding: 8px 0 10px;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.48fr;
  gap: 16px;
  align-items: stretch;
}

.feature-main-column {
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto;
  align-content: start;
}

.panel {
  padding: 18px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 1000;
  color: #262626;
}

.title-mark {
  color: #ff3a3a;
  font-size: 18px;
  line-height: 1;
}

.path-step,
.rule-item,
.feature-row {
  border: 1px solid #f2e3e3;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #fffafa);
}

.feature-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-row {
  min-height: 156px;
  padding: 16px 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  box-shadow: none;
}

.feature-row h3 {
  margin: 0;
  color: #ff2a2a;
  font-size: 16px;
  line-height: 1.2;
}

.feature-row p {
  max-width: 10em;
  margin: 0;
  color: #666;
  line-height: 1.4;
  font-size: 11px;
  font-weight: 700;
}

.panel-icon-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.step-icon-image {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  object-fit: contain;
}

.mini-icon-image {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
  flex: 0 0 auto;
  background: #fff0f0;
}

.path-lead {
  margin: 4px 0 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #5b5b5b;
}

.path-row {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.path-step {
  min-width: 0;
  min-height: 156px;
  padding: 14px 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(255, 48, 48, 0.04);
}

.path-step strong {
  font-size: 15px;
  margin-bottom: 5px;
  text-align: center;
  line-height: 1.2;
  word-break: keep-all;
}
.path-step span {
  color: #666;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  word-break: break-word;
}
.path-step.green strong { color: #4d9c2b; }
.path-step.blue strong { color: #2a77d5; }
.path-step.purple strong { color: #7a40ec; }
.path-step.red strong { color: #ff2222; }
.path-arrow { text-align: center; font-size: 22px; font-weight: 900; color: #b2b2b2; }

.rule-compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rule-item {
  padding: 12px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 82px;
}

.rule-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  line-height: 1.18;
  word-break: keep-all;
}
.rule-item p {
  margin: 0;
  color: #666;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 600;
  word-break: keep-all;
}

.community-section {
  padding: 16px 0;
}

.community-card {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  min-width: 0;
  background: linear-gradient(180deg, #fff, #fff8f8);
  border: 1px solid #f0dddd;
  border-radius: 24px;
}

.community-copy {
  min-width: 0;
}

.community-copy h2 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.15;
  white-space: nowrap;
}

.community-links {
  min-width: 0;
}

.social {
  min-width: 0;
}

.social span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.community-copy p {
  margin: 0;
  color: #666;
  font-size: 16px;
  font-weight: 700;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.social,
.qr-box {
  min-height: 92px;
  border-radius: 18px;
  color: #fff;
  padding: 16px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social span {
  margin-top: 6px;
  font-size: 13px;
  opacity: .95;
  font-weight: 700;
}

.social.black { background: linear-gradient(135deg, #111, #2b2b2b); }
.social.blue { background: linear-gradient(135deg, #2c9dff, #1879ff); }
.social.purple { background: linear-gradient(135deg, #7a49ff, #a73fff); }

.qr-box {
  background: #fff;
  color: #ff2626;
  border: 1px dashed #ffb3b3;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.qr-placeholder {
  width: 52px;
  height: 52px;
  background:
    linear-gradient(90deg, #111 25%, transparent 25%) 0 0/10px 10px,
    linear-gradient(#111 25%, transparent 25%) 0 0/10px 10px,
    linear-gradient(90deg, transparent 75%, #111 75%) 0 0/10px 10px,
    linear-gradient(transparent 75%, #111 75%) 0 0/10px 10px;
  border: 4px solid #111;
}

.stats-bar {
  padding: 6px 0 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff2424, #d80000);
  color: #fff;
  box-shadow: 0 24px 50px rgba(255, 32, 32, 0.22);
}

.stat-item {
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.stat-item strong {
  display: block;
  font-size: 28px;
  font-weight: 1000;
  line-height: 1.05;
}

.stat-item span {
  font-size: 14px;
  opacity: .96;
  font-weight: 700;
}

.faq-section {
  padding: 0 0 42px;
}

.faq-card {
  padding: 22px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq-list details:first-child {
  border-top: 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  margin: 10px 0 0;
  color: #666;
  line-height: 1.8;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .hero-grid,
  .feature-layout,
  .community-card {
    grid-template-columns: 1fr;
  }

  .feature-main-column {
    grid-template-columns: 1fr;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: 500px;
  }
}

@media (max-width: 860px) {
  .topbar {
    position: sticky;
  }

  .nav-wrap {
    height: auto;
    min-height: 72px;
    gap: 10px;
    padding: 12px 0;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    min-width: 0;
    gap: 6px;
  }

  .brand-text strong {
    font-size: 20px;
    white-space: nowrap;
  }

  .brand-text span {
    font-size: 10px;
    padding: 4px 10px;
  }

  .nav-actions {
    gap: 8px;
    flex: 0 0 auto;
  }

  .cta-btn {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 14px;
    white-space: nowrap;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: rgba(255,255,255,0.98);
    border: 1px solid #f0dede;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(0,0,0,.08);
    backdrop-filter: blur(10px);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .nav a.active::after,
  .nav a:hover::after {
    display: none;
  }

  .nav a.active {
    background: rgba(255, 31, 31, 0.08);
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex: 0 0 auto;
  }

  .hero {
    background: linear-gradient(180deg, #fffdfd 0%, #fff4f4 54%, #ffffff 100%);
  }

  .hero::before {
    background: radial-gradient(circle at top right, rgba(255, 58, 58, 0.08), transparent 28%);
  }

  .hero-copy {
    max-width: 100%;
    padding: 18px 18px 16px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.86);
    box-shadow: 0 16px 36px rgba(160, 28, 28, 0.06);
    backdrop-filter: blur(10px);
  }

  .hero-badge {
    max-width: min(100%, 520px);
    font-size: 13px;
    line-height: 1.5;
  }

  .hero h1 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(28px, 8.8vw, 42px);
    line-height: 1;
    letter-spacing: -1.2px;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
  }

  .path-row {
    grid-template-columns: 1fr;
  }

  .path-arrow {
    transform: rotate(90deg);
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-pill {
    min-width: 0;
    min-height: 118px;
    padding: 16px 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .feature-pill + .feature-pill {
    border-left: 0;
  }

  .feature-copy {
    min-width: 0;
    align-items: center;
    gap: 2px;
  }

  .feature-copy strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .feature-copy span {
    font-size: 11px;
    white-space: nowrap;
  }

  .rule-compact,
  .feature-stack,
  .community-links,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .community-card {
    min-width: 0;
    padding: 18px;
  }

  .community-copy,
  .community-links,
  .social {
    min-width: 0;
  }

  .community-copy h2 {
    font-size: 24px;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .community-copy p {
    font-size: 15px;
    line-height: 1.6;
  }

  .social {
    width: 100%;
    padding: 18px;
  }

  .social span {
    font-size: 12px;
    line-height: 1.45;
  }

  .rule-item,
  .feature-row,
  .path-step {
    min-height: auto;
  }

  .path-step strong {
    white-space: normal;
  }

  .center-badge {
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
    width: 170px;
    height: 170px;
  }

  .figure-left {
    left: 20px;
    width: 130px;
    height: 250px;
  }

  .figure-right {
    right: 20px;
    width: 130px;
    height: 250px;
  }

  .figure-head {
    width: 72px;
    height: 72px;
  }

  .figure-body {
    height: 180px;
  }

  .ring-1 { width: 270px; height: 270px; left: 50%; transform: translateX(-50%); }
  .ring-2 { width: 330px; height: 330px; left: 50%; transform: translateX(-50%); }
  .ring-3 { width: 390px; height: 390px; left: 50%; transform: translateX(-50%); }

  .tag {
    font-size: 12px;
    padding: 8px 12px;
  }

  .tag-1 { top: 60px; right: 16px; }
  .tag-2 { top: 140px; right: 0; }
  .tag-3 { bottom: 36px; right: 0; }
}
