/*
Theme Name: Moban 8-2-50
Description: Chủ đề WordPress tùy chỉnh cho cổng thông tin game Bầu Cua Tôm Cá (Hoo Hey How) – phong cách App Shell nền tối: hàng stories tròn, luồng thẻ xếp chồng, nút hành động nổi FAB và điểm nhấn gradient.
Version: 1.0
Author: Moban82
Text Domain: moban82
*/

/* Google Fonts (Be Vietnam Pro) are enqueued in functions.php — no @import here. */

/* ============================================================
   1. Design tokens — dark app shell, gradient accents
   ============================================================ */
:root {
  --bg: #0b0f19;
  --bg-soft: #101624;
  --card: #161d2f;
  --card-soft: #1d2639;
  --ink: #f2f5fb;
  --muted: #97a2b8;
  --line: rgba(151, 162, 184, 0.18);
  --grad-a: #ffb13d;
  --grad-b: #ff3d68;
  --gradient: linear-gradient(120deg, var(--grad-a), var(--grad-b));
  --grad-soft: rgba(255, 177, 61, 0.14);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  --font-display: 'Be Vietnam Pro', -apple-system, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', 'Be Vietnam Pro', sans-serif;
  --tab-h: 68px;
  --wrap: 1080px;
}

/* ============================================================
   2. Reset & base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 55% 32% at 12% -4%, rgba(255, 177, 61, 0.14), transparent 62%),
    radial-gradient(ellipse 50% 34% at 92% 2%, rgba(255, 61, 104, 0.16), transparent 64%);
  background-attachment: fixed;
  /* Reserve room for the fixed bottom tab bar + device safe area. */
  padding-bottom: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px) + 16px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--grad-a);
  text-decoration: none;
}

a:hover {
  color: var(--ink);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.55em;
}

h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
h3 { font-size: 1.08rem; }

p {
  margin: 0 0 1.1em;
}

.wrap {
  width: min(var(--wrap), 92%);
  margin-inline: auto;
}

.app-main {
  width: min(var(--wrap), 94%);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.sheet-open {
  overflow: hidden;
}

/* ============================================================
   3. App bar + menu sheet
   ============================================================ */
.app-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.app-bar__inner {
  width: min(var(--wrap), 94%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
}

.app-bar__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}

.app-bar__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 0 0 2px var(--grad-a), 0 6px 18px rgba(255, 61, 104, 0.35);
}

.app-bar__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.02rem;
  line-height: 1.15;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.app-bar__tag {
  display: block;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
}

.app-bar__menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4.5px;
  width: 46px;
  height: 46px;
  padding: 13px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 15px;
  cursor: pointer;
}

.app-bar__menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-a);
}

/* Sheet */
.app-sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.app-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 6, 12, 0.6);
  cursor: pointer;
}

.app-sheet__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86%);
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
  animation: sheet-in 0.28s ease;
}

@keyframes sheet-in {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.app-sheet__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grad-a);
  margin: 0 0 0.8rem;
}

.app-sheet__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-sheet__list a {
  display: block;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--ink);
}

.app-sheet__list a:hover {
  background: var(--grad-soft);
  color: var(--grad-a);
}

/* ============================================================
   4. Bottom tab bar
   ============================================================ */
.tab-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: rgba(13, 18, 30, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.tab-bar__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.tab-bar__tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 11px 4px 9px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: color 0.2s ease;
}

.tab-bar__tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 34px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--gradient);
  transition: transform 0.25s ease;
}

.tab-bar__tab:hover {
  color: var(--ink);
}

.tab-bar__tab.is-active {
  color: var(--grad-a);
}

.tab-bar__tab.is-active::before {
  transform: translateX(-50%) scaleX(1);
}

/* ============================================================
   5. Floating action button
   ============================================================ */
.fab {
  position: fixed;
  right: 18px;
  bottom: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px) + 18px);
  z-index: 65;
}

.fab .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: 0 14px 34px rgba(255, 61, 104, 0.45), 0 0 0 1px rgba(255, 177, 61, 0.4);
  animation: fab-pulse 2.8s ease-in-out infinite;
}

.fab .cta-btn::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #241000;
  transform: rotate(45deg);
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(255, 61, 104, 0.4), 0 0 0 1px rgba(255, 177, 61, 0.4); }
  50% { box-shadow: 0 14px 44px rgba(255, 61, 104, 0.6), 0 0 0 6px rgba(255, 177, 61, 0.12); }
}

/* ============================================================
   6. Stories row
   ============================================================ */
.stories {
  padding: 1.2rem 0 0.2rem;
}

.stories__row {
  display: flex;
  gap: 1.05rem;
  margin: 0;
  padding: 0.2rem 0.2rem 0.6rem;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.stories__row::-webkit-scrollbar {
  display: none;
}

.stories__item {
  flex: none;
}

.stories__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 74px;
  color: var(--muted);
}

.stories__ring {
  display: block;
  padding: 3px;
  border-radius: 50%;
  background: var(--gradient);
  transition: transform 0.25s ease;
}

.stories__link:hover .stories__ring {
  transform: scale(1.07);
}

.stories__ring img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--bg);
}

.stories__name {
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.stories__link:hover .stories__name {
  color: var(--ink);
}

/* ============================================================
   7. Hero + stacked cards
   ============================================================ */
.stack-hero {
  padding: 1.6rem 0 0.5rem;
}

.stack-hero__title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 0.6rem;
}

.stack-hero__title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stack-hero__lead {
  max-width: 58ch;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.stack {
  position: relative;
  display: grid;
  gap: 1rem;
}

.stack__card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Deck effect on desktop: later cards peek up behind the first one. */
@media (min-width: 900px) {
  .stack {
    grid-template-columns: 1fr;
    padding-top: 3.2rem;
  }

  .stack__card {
    grid-column: 1;
    grid-row: 1;
  }

  .stack__card--1 {
    transform: rotate(-1.6deg) translateY(0);
    z-index: 3;
  }

  .stack__card--2 {
    transform: rotate(1.8deg) translateY(-1.7rem) scale(0.975);
    z-index: 2;
    opacity: 0.96;
  }

  .stack__card--3 {
    transform: rotate(-0.6deg) translateY(-3.2rem) scale(0.95);
    z-index: 1;
    opacity: 0.9;
  }

  .stack__card:hover {
    transform: rotate(0) translateY(-0.4rem) scale(1);
    z-index: 5;
    opacity: 1;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  }
}

.stack__card img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.stack__body {
  padding: 1rem 1.2rem 1.25rem;
}

.stack__title {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
}

.stack__title::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--gradient);
  margin-right: 0.5rem;
}

.stack__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================================================
   8. Blocks, feed, tips
   ============================================================ */
.app-block {
  padding: 1.8rem 0 0.4rem;
}

.app-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.app-block__head h2 {
  margin: 0;
}

.app-block__hint {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.app-feed {
  display: grid;
  gap: 0.9rem;
}

.app-feed__card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.8rem;
  color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.app-feed__card:hover {
  transform: translateY(-3px);
  background: var(--card-soft);
  border-color: rgba(255, 177, 61, 0.45);
  color: var(--ink);
}

.app-feed__card > img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.app-feed__body {
  display: block;
  min-width: 0;
}

.app-feed__tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2b1200;
  background: var(--gradient);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.4rem;
}

.app-feed__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.app-feed__title a {
  color: var(--ink);
}

.app-feed__title a:hover {
  color: var(--grad-a);
}

.app-feed__text {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.app-feed__meta {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Archive feed variant: media on top */
.app-feed--archive {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .app-feed--archive {
    grid-template-columns: repeat(2, 1fr);
  }
}

.app-feed--archive .app-feed__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.app-feed--archive .app-feed__item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 177, 61, 0.45);
}

.app-feed__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.app-feed--archive .app-feed__body {
  padding: 1rem 1.2rem 1.25rem;
}

.app-feed--archive .app-feed__title {
  font-size: 1.15rem;
}

/* Tips swipe row */
.tips-swipe {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(72%, 300px);
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.2rem 0.2rem 1rem;
  scrollbar-width: none;
}

.tips-swipe::-webkit-scrollbar {
  display: none;
}

.tips-swipe__card {
  scroll-snap-align: start;
  background: linear-gradient(150deg, var(--card-soft), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem 1.2rem;
}

.tips-swipe__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--grad-a);
}

.tips-swipe__text {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   9. CTA panel & button
   ============================================================ */
.cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  color: #241000;
  background: var(--gradient);
  border-radius: 999px;
  padding: 0.9rem 2.4rem;
  box-shadow: 0 12px 30px rgba(255, 177, 61, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover,
.cta-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 61, 104, 0.45);
  color: #241000;
}

.cta-btn--block {
  display: block;
  width: max-content;
  margin-inline: auto;
}

.app-cta {
  position: relative;
  margin: 1.8rem 0 1rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, var(--grad-soft), transparent 70%), var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.4rem 1.2rem;
  overflow: hidden;
}

.app-cta h2 {
  margin-bottom: 0.3rem;
}

.app-cta p {
  color: var(--muted);
  max-width: 46ch;
  margin-inline: auto;
}

/* ============================================================
   10. Breadcrumbs
   ============================================================ */
.breadcrumbs {
  padding: 1rem 0 0;
  font-size: 0.8rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0.5rem 0.9rem;
  list-style: none;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
}

.breadcrumbs li + li::before {
  content: '›';
  margin-right: 0.4rem;
  color: var(--grad-a);
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--grad-a);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* ============================================================
   11. Archive header & single article
   ============================================================ */
.app-archive-head {
  padding: 1.6rem 0 0.8rem;
}

.app-archive-head__kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2b1200;
  background: var(--gradient);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin: 0 0 0.7rem;
}

.app-archive-head__title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin: 0;
}

.app-archive-head__desc {
  max-width: 62ch;
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.app-article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.4rem 2rem;
  margin-top: 1.2rem;
}

@media (min-width: 900px) {
  .app-article { padding: 2.4rem 3rem 2.6rem; }
}

.app-article__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b1200;
  background: var(--gradient);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.8rem;
}

.app-article__title {
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.app-article__meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.app-article__figure {
  margin: 0 0 1.4rem;
}

.app-article__figure img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.app-article__content {
  font-size: 1.02rem;
}

.app-article__content img {
  border-radius: var(--radius-md);
}

.app-article__content h2,
.app-article__content h3 {
  margin-top: 1.7em;
}

.app-article__content blockquote {
  margin: 1.6em 0;
  padding: 1rem 1.3rem;
  border-left: 4px solid var(--grad-b);
  background: var(--card-soft);
  border-radius: var(--radius-md);
  font-style: italic;
}

/* ============================================================
   12. Fallback grid (index.php), pagination, empty state
   ============================================================ */
.page-head {
  padding: 1.8rem 0 0.6rem;
}

.section-title {
  margin: 0;
}

.post-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  padding: 1.2rem 0 2rem;
}

@media (min-width: 640px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .post-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.post-card:hover {
  border-color: rgba(255, 177, 61, 0.45);
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card__body {
  padding: 1rem 1.1rem 1.2rem;
}

.post-card__title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.post-card__excerpt {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.post-card__meta {
  font-size: 0.74rem;
  color: var(--grad-a);
  font-weight: 700;
}

.empty-state {
  text-align: center;
  padding: 3.5rem 1.2rem;
  margin: 1.4rem 0 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  color: var(--muted);
}

.empty-state h2 {
  color: var(--ink);
}

.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1rem 0 2.4rem;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.8rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.page-numbers.current {
  background: var(--gradient);
  border-color: transparent;
  color: #241000;
}

.page-numbers:hover {
  border-color: rgba(255, 177, 61, 0.5);
  color: var(--grad-a);
}

.page-numbers.current:hover {
  color: #241000;
}

/* ============================================================
   13. Footer
   ============================================================ */
.site-footer {
  margin-top: 1.6rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 2.4rem 1rem 1.6rem;
  text-align: center;
}

.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.site-footer__nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.site-footer__nav a:hover {
  color: var(--grad-a);
}

.site-footer__badge {
  margin: 1.3rem 0;
}

.site-footer__disclaimer {
  max-width: 720px;
  margin: 1rem auto 0;
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--muted);
}

.site-footer__disclaimer p {
  margin: 0.3em 0;
}

.site-footer__copy {
  margin-top: 1.2rem;
  font-size: 0.76rem;
  color: var(--muted);
}

/* ============================================================
   14. Motion & a11y
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 3px solid var(--grad-a);
  outline-offset: 2px;
  border-radius: 4px;
}
