:root {
  --bg: #090c10;
  --bg-elevated: #12161d;
  --bg-elevated-2: #181d26;
  --border: #232a35;
  --text: #eef2f6;
  --text-muted: #8d9aa8;
  --accent: #49d5e8;
  --accent-ink: #04262b;
  --danger: #ff6a6a;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --maxw: 760px;
  --ease-hover: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-hover: 0.5s;
}

/* Hide all scrollbars globally across all browsers */
html, body, *, *::before, *::after {
  box-sizing: border-box;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Manrope', system-ui, sans-serif;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.icon {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--brand { fill: currentColor; stroke: none; }

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

/* Topbar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 20px;
  gap: 12px;
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 15px;
  white-space: nowrap;
}
.topbar__official {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 999px;
  transition: border-color var(--duration-hover) var(--ease-soft), color var(--duration-hover) var(--ease-soft), background var(--duration-hover) var(--ease-soft), transform var(--duration-hover) var(--ease-soft);
  white-space: nowrap;
}
.topbar__official:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(73, 213, 232, 0.05);
  transform: scale(1.02);
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 32px 20px 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 24px;
  transition: all .3s var(--ease-soft);
}

/* Hero with Linktree-Style Background Image */
.hero--has-bg {
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero--has-bg .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 12, 16, 0.45) 0%, rgba(9, 12, 16, 0.82) 70%, var(--bg) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
}

.hero__avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 3px solid var(--accent);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: 0 0 24px rgba(73, 213, 232, 0.25);
  transition: transform 0.6s var(--ease-soft), box-shadow 0.6s var(--ease-soft);
}
.hero__avatar:hover {
  transform: scale(1.025);
  box-shadow: 0 0 32px rgba(73, 213, 232, 0.4);
}
.hero__avatar img { width: 100%; height: 100%; object-fit: cover; }

.hero h1 {
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.hero__tagline {
  margin: 10px auto 0;
  max-width: 460px;
  color: var(--text-muted);
  font-size: clamp(13px, 3.8vw, 14.5px);
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.socials a {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  transition: transform var(--duration-hover) var(--ease-soft), border-color var(--duration-hover) var(--ease-soft), color var(--duration-hover) var(--ease-soft), background var(--duration-hover) var(--ease-soft);
  backdrop-filter: blur(8px);
}
.socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-elevated-2);
  transform: scale(1.03);
}
.socials a:active {
  transform: scale(0.98);
}
.socials .icon { width: 20px; height: 20px; }

/* Section heading */
.section { margin-top: 36px; }
.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}
.section__head h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-muted);
  font-weight: 700;
}
.section__hint {
  font-size: 12px;
  color: var(--text-muted);
  opacity: .85;
}

/* Stories Wrapper & Custom Horizontal Scroll */
.stories-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.stories {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 4px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  width: 100%;
}
.stories.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto !important;
}
.stories::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Custom Scroll Navigation Buttons */
.stories-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-soft), transform 0.5s var(--ease-soft), background 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft);
  backdrop-filter: blur(8px);
}
.stories-scroll-btn.is-visible {
  opacity: 0.92;
  pointer-events: auto;
}
.stories-scroll-btn:hover {
  opacity: 1;
  background: var(--bg-elevated);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-60%) scale(1.03);
}
.stories-scroll-btn:active {
  transform: translateY(-60%) scale(0.97);
}
.stories-scroll-btn--left {
  left: -12px;
}
.stories-scroll-btn--right {
  right: -12px;
}

@media (max-width: 600px) {
  .stories-scroll-btn {
    display: none !important;
  }
}

.story {
  flex: none;
  width: 92px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--text);
  transition: transform 0.5s var(--ease-soft);
}
.story:hover {
  transform: scale(1.025);
}
.story:active {
  transform: scale(0.97);
}
.story__ring {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  padding: 3px;
  background: var(--bg-elevated);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 12px rgba(73, 213, 232, 0.15);
}
.story__ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.story__badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}
.story__badge .icon { width: 11px; height: 11px; fill: currentColor; stroke: none; }
.story__label {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stories-empty {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13.5px;
}
.stories-empty a { color: var(--accent); font-weight: 600; }

/* Link Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-hover) var(--ease-soft), background var(--duration-hover) var(--ease-soft), transform var(--duration-hover) var(--ease-soft), box-shadow var(--duration-hover) var(--ease-soft);
  position: relative;
  overflow: hidden;
  min-height: 64px;
}
.card:hover {
  border-color: var(--accent);
  background: var(--bg-elevated-2);
  transform: scale(1.008);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.card:active {
  transform: scale(0.988);
}

.card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--accent);
}

/* Media Thumbnail for Link Cards */
.card__thumb {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated-2);
  flex: none;
  position: relative;
}
.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-soft);
}
.card:hover .card__thumb img {
  transform: scale(1.03);
}

.card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card__title {
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 2px;
  color: var(--text);
  line-height: 1.3;
}
.card__desc {
  font-size: 12.5px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}
.card__go {
  color: var(--text-muted);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.4s var(--ease-soft), transform 0.5s var(--ease-soft);
}
.card:hover .card__go {
  color: var(--accent);
  transform: scale(1.04);
}
.card__go .icon { width: 18px; height: 18px; }

/* Full Media Banner Card (16:9 aspect ratio with flicker-free hover scale) */
.card--banner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid var(--border);
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
  transition: border-color var(--duration-hover) var(--ease-soft), box-shadow var(--duration-hover) var(--ease-soft);
}
.card--banner:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.card__bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  will-change: transform;
  transition: transform 0.7s var(--ease-soft);
  z-index: 0;
}
.card--banner:hover .card__bg-layer {
  transform: scale(1.025);
}
.card--banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,12,16,0.2) 0%, rgba(9,12,16,0.70) 50%, rgba(9,12,16,0.92) 100%);
  z-index: 1;
  transition: opacity 0.5s var(--ease-soft);
}
.card--banner:hover::before {
  background: linear-gradient(180deg, rgba(9,12,16,0.15) 0%, rgba(9,12,16,0.60) 50%, rgba(9,12,16,0.88) 100%);
}
.card--banner .card__banner-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  padding-right: 12px;
}
.card--banner .card__badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}
.card--banner .card__title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.card--banner .card__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.card--banner .card__btn {
  position: relative;
  z-index: 2;
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.5s var(--ease-soft), background 0.4s var(--ease-soft);
}
.card--banner:hover .card__btn {
  transform: scale(1.02);
  background: #63e3f4;
}

/* Footer */
.footer {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__address {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}
.footer__address .icon { color: var(--accent); margin-top: 2px; flex: none; }
.footer__address strong { color: var(--text); display: block; margin-bottom: 2px; font-size: 13.5px; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.footer__links a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  transition: color 0.4s var(--ease-soft), transform 0.5s var(--ease-soft);
}
.footer__links a:hover {
  color: var(--accent);
  transform: scale(1.02);
}

.footer__credits {
  font-size: 11.5px;
  color: #5c6773;
  line-height: 1.6;
}
.footer__credits a { color: #7c8792; }
.footer__credits a:hover { color: var(--accent); }

/* Story Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 9, .94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
  padding-top: max(16px, env(safe-area-inset-top));
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}
.modal.is-open { display: flex; }
.modal__frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9/16;
  max-height: 85vh;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.modal__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.4s var(--ease-soft);
}
.modal__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s var(--ease-soft);
}
.modal__video.is-loaded { opacity: 1; }

.modal__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(4px);
  z-index: 4;
  transition: opacity 0.4s var(--ease-soft);
}
.modal__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, .25);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: tw-spin .8s linear infinite;
}
@keyframes tw-spin {
  to { transform: rotate(360deg); }
}

.modal__progress {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 4px;
  z-index: 5;
}
.modal__progress span {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .28);
  overflow: hidden;
}
.modal__progress span i {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
}
.modal__progress span.is-done i { width: 100%; }

.modal__close {
  position: absolute;
  top: 22px;
  right: 10px;
  z-index: 6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal__nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  background: transparent;
  border: none;
  z-index: 5;
  cursor: pointer;
}
.modal__nav--prev { left: 0; }
.modal__nav--next { right: 0; }

.modal__hint {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .65);
  z-index: 5;
}

/* Form Modal & Banners */
.modal-form {
  width: 100%;
  max-width: 440px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .6);
}
.modal-form h2 {
  font-size: 18px;
  margin-bottom: 6px;
}
.modal-form p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}
.form-group {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.form-control {
  width: 100%;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.4s var(--ease-soft);
}
.form-control:focus {
  border-color: var(--accent);
}
textarea.form-control {
  resize: vertical;
  min-height: 70px;
}
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.4s var(--ease-soft), transform 0.5s var(--ease-soft);
}
.btn-submit:hover { opacity: .9; transform: scale(1.02); }
.btn-submit:active { transform: scale(0.98); }

.btn-trigger-modal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.4s var(--ease-soft), background 0.4s var(--ease-soft), transform 0.5s var(--ease-soft);
}
.btn-trigger-modal:hover {
  border-color: var(--accent);
  background: var(--bg-elevated);
  transform: scale(1.02);
}

.flash-banner {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  font-size: 13.5px;
  font-weight: 500;
}
.flash-banner--success {
  background: rgba(73, 213, 232, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
}
.flash-banner--danger {
  background: rgba(255, 106, 106, 0.15);
  border: 1px solid var(--danger);
  color: var(--danger);
}

/* ----------------------------------------------------
   Mobile Responsiveness & Small Screen Optimizations
   ---------------------------------------------------- */
@media (max-width: 480px) {
  .wrap {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 48px;
  }
  .topbar {
    padding: 14px 14px;
    gap: 8px;
  }
  .topbar__brand {
    font-size: 14px;
  }
  .topbar__official {
    font-size: 11.5px;
    padding: 6px 12px;
  }
  
  .hero {
    padding: 24px 14px 20px;
  }
  .hero__avatar {
    width: 88px;
    height: 88px;
    margin-bottom: 14px;
  }
  
  .socials {
    gap: 10px;
  }
  .socials a {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .stories {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
    gap: 10px;
  }
  .story {
    width: 82px;
  }
  .story__ring {
    width: 66px;
    height: 66px;
  }
  
  .card {
    padding: 14px 16px;
    gap: 14px;
    min-height: 68px;
  }
  .card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .card__thumb {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  .card__title {
    font-size: 14.5px;
  }
  .card__desc {
    font-size: 12.5px;
  }
  
  .card--banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
  }
  .card--banner .card__banner-content {
    padding-right: 0;
  }
  .card--banner .card__btn {
    align-self: flex-start;
    padding: 8px 16px;
    font-size: 12.5px;
  }

  .footer__address {
    padding: 14px 16px;
    font-size: 12.5px;
  }
}

@media (max-width: 360px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .topbar__official {
    font-size: 11px;
  }
  .hero h1 {
    font-size: 20px;
  }
  .story {
    width: 76px;
  }
  .story__ring {
    width: 60px;
    height: 60px;
  }
}
