:root {
  --bg: #090909;
  --bg-secondary: #12100f;
  --surface: #181716;
  --surface-strong: #22201d;
  --surface-soft: #2a2723;
  --text: #f6f0e4;
  --muted: #c2b6a2;
  --muted-strong: #ddd1bc;
  --border: rgba(212, 171, 103, 0.18);
  --border-strong: rgba(212, 171, 103, 0.34);
  --accent: #d4ab67;
  --accent-strong: #f0c57a;
  --accent-soft: rgba(212, 171, 103, 0.12);
  --success: #67d49a;
  --danger: #ff9a6f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.28);
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 300px;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 171, 103, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(212, 171, 103, 0.08), transparent 22%),
    linear-gradient(180deg, #060606 0%, #0b0a09 42%, #12100e 100%);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 85%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: #ffd788;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-shell {
  position: relative;
  padding: 18px 16px 48px;
}

.site-header,
.site-main,
.site-footer {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.96), rgba(13, 12, 11, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(212, 171, 103, 0), rgba(212, 171, 103, 0.95), rgba(212, 171, 103, 0));
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px 14px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-brand img {
  width: min(220px, 100%);
  filter: drop-shadow(0 10px 18px rgba(212, 171, 103, 0.15));
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--text);
  background: linear-gradient(180deg, rgba(34, 31, 28, 0.98), rgba(22, 20, 18, 0.98));
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: #17120c;
  border-color: rgba(240, 197, 122, 0.38);
  background: linear-gradient(180deg, #f1c981 0%, #d4ab67 100%);
  box-shadow: 0 16px 30px rgba(212, 171, 103, 0.28);
}

.button--danger {
  color: #f6f0e4;
  background: linear-gradient(180deg, rgba(42, 37, 33, 0.98), rgba(24, 22, 20, 0.98));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.button--danger:hover,
.button--danger:focus-visible {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(56, 47, 40, 0.98), rgba(29, 26, 23, 0.98));
}

.site-nav {
  padding: 0 22px 20px;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(29, 27, 24, 0.95), rgba(18, 17, 15, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  color: #fff7ea;
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(39, 34, 29, 0.98), rgba(24, 22, 19, 0.98));
  transform: translateY(-1px);
}

.site-nav__list a[aria-current="page"] {
  border-color: rgba(240, 197, 122, 0.4);
  color: #17120c;
  background: linear-gradient(180deg, #f1c981 0%, #d4ab67 100%);
}

.page-card {
  position: relative;
  padding: 42px 40px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(212, 171, 103, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(25, 23, 20, 0.98), rgba(15, 14, 13, 0.98));
  box-shadow: var(--shadow);
}

.page-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 132px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(212, 171, 103, 0));
}

.page-title {
  margin: 0 0 22px;
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content > :last-child {
  margin-bottom: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 42px 0 16px;
  line-height: 1.18;
  text-wrap: pretty;
  color: #fff8ec;
}

.article-content h2 {
  position: relative;
  padding-left: 16px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.article-content h2::before {
  content: "";
  position: absolute;
  top: 0.12em;
  left: 0;
  width: 4px;
  height: 1.15em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-strong), rgba(212, 171, 103, 0.35));
}

.article-content h3 {
  font-size: clamp(1.28rem, 2.4vw, 1.68rem);
  color: var(--muted-strong);
}

.article-content p,
.article-content ul,
.article-content ol {
  margin: 0 0 18px;
  color: var(--muted);
}

.article-content p {
  max-width: none;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
}

.article-content li + li {
  margin-top: 8px;
}

.article-content p:has(> a > img),
.article-content p:has(> img) {
  margin: 28px 0 34px;
  max-width: none;
}

.article-content img {
  width: 100%;
  border: 1px solid rgba(212, 171, 103, 0.16);
  border-radius: 24px;
  background: #111;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}

.article-content a > img {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.article-content a:hover > img,
.article-content a:focus-visible > img {
  border-color: rgba(212, 171, 103, 0.34);
  transform: translateY(-2px);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.42);
}

.article-content table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background: linear-gradient(180deg, rgba(28, 26, 23, 0.94), rgba(18, 17, 15, 0.96));
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 22px 0 30px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.table-wrap > table {
  min-width: max(100%, 760px);
}

.article-content th,
.article-content td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  min-width: 150px;
}

.article-content th {
  color: #fff8ec;
  background: rgba(212, 171, 103, 0.1);
}

.article-content th:first-child,
.article-content td:first-child {
  min-width: 180px;
}

.article-content tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.014);
}

.article-content tr:last-child td {
  border-bottom: 0;
}

.author-card-scroll {
  width: 100%;
  max-width: 100%;
  margin-top: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max(100%, 760px);
  margin: 0;
  padding: 18px 22px;
  border: 1px solid rgba(212, 171, 103, 0.2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.96), rgba(12, 11, 10, 0.98));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.author-card__photo {
  flex: 0 0 72px;
}

.author-card__photo img {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(212, 171, 103, 0.28);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.author-card__body {
  flex: 1 0 0;
  min-width: 520px;
}

.author-card__name {
  margin: 0;
  color: #fff8ec;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
}

.author-card__role {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.author-card__dates {
  margin-top: 12px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.45;
}

.author-card__dates span {
  display: block;
}

.author-card__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.author-card__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(212, 171, 103, 0.18);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.author-card__socials a:hover,
.author-card__socials a:focus-visible {
  color: #17120c;
  border-color: rgba(240, 197, 122, 0.4);
  background: linear-gradient(180deg, #f1c981 0%, #d4ab67 100%);
  transform: translateY(-1px);
}

.author-card__socials svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.contents {
  margin: 30px 0 38px;
  padding: 22px;
  border: 1px solid rgba(212, 171, 103, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(212, 171, 103, 0.08), rgba(255, 255, 255, 0.02));
}

.contents__toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contents__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contents__label {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff7ea;
}

.contents__switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contents__indicator {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(212, 171, 103, 0.55);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.contents__toggle:checked + .contents__header .contents__indicator {
  background: var(--accent);
  box-shadow: inset 0 0 0 4px #12172a;
}

.contents__body {
  display: none;
  padding-top: 18px;
}

.contents__toggle:checked ~ .contents__body {
  display: block;
}

.contents__body ul {
  margin: 0;
  padding-left: 20px;
}

.contents__body li + li {
  margin-top: 8px;
}

.review-box {
  margin: 24px 0 32px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(26, 24, 22, 0.96), rgba(18, 17, 15, 0.98));
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-column {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.review-column--plus {
  border: 1px solid rgba(103, 212, 154, 0.22);
}

.review-column--minus {
  border: 1px solid rgba(255, 154, 111, 0.22);
}

.review-heading {
  margin: 0 0 14px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff7ea;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-item {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.review-item::before {
  flex: 0 0 auto;
  font-weight: 700;
}

.review-item--plus::before {
  content: "+";
  color: var(--success);
}

.review-item--minus::before {
  content: "-";
  color: var(--danger);
}

.faq {
  margin-top: 32px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(24, 23, 21, 0.96), rgba(17, 16, 14, 0.98));
}

.faq__title {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(212, 171, 103, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item.active {
  border-color: rgba(212, 171, 103, 0.3);
  background: rgba(212, 171, 103, 0.06);
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 16px 56px 16px 18px;
  border: 0;
  border-radius: 0;
  color: var(--text);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #17120c;
  background: linear-gradient(180deg, #f1c981 0%, #d4ab67 100%);
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-question[aria-expanded="true"] {
  background: rgba(212, 171, 103, 0.05);
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-answer > :last-child {
  margin-bottom: 0;
}

body.popup-open {
  overflow: hidden;
}

.casino-popup {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  background:
    radial-gradient(circle at top, rgba(212, 171, 103, 0.22), transparent 28%),
    rgba(10, 9, 8, 0.96);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1100;
}

.casino-popup.show {
  visibility: visible;
  opacity: 1;
}

.roulette-wheel {
  position: relative;
  width: 120px;
  height: 120px;
  animation: spin 3s linear infinite;
}

.wheel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 247, 234, 0.9);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #d4ab67 0deg 45deg,
    #1a1714 45deg 90deg,
    #ff9a6f 90deg 135deg,
    #100f0e 135deg 180deg,
    #d4ab67 180deg 225deg,
    #1a1714 225deg 270deg,
    #ff9a6f 270deg 315deg,
    #100f0e 315deg 360deg
  );
  box-shadow: 0 0 32px rgba(212, 171, 103, 0.22);
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
}

.ball {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #141210;
  animation: ballBounce 0.6s ease-in-out infinite alternate;
}

.redirect-notice {
  max-width: 420px;
  text-align: center;
}

.notice-title {
  margin: 0;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.progress-container {
  width: min(100%, 320px);
  text-align: center;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d4ab67, #ff9a6f, #d4ab67);
  background-size: 200% 100%;
  transition: width 0.1s linear;
  animation: progressShine 1.8s linear infinite;
}

.progress-text {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.site-footer {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.94), rgba(12, 11, 10, 0.96));
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    top: 8px;
  }

  .site-header__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .page-card {
    padding: 30px 28px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 12px 12px 34px;
  }

  .site-header__top,
  .site-nav,
  .page-card,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header__top {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .site-nav__list {
    flex-direction: column;
  }

  .site-nav__list a,
  .button {
    width: 100%;
  }

  .header-actions {
    flex-direction: column;
  }

  .page-card::before {
    left: 18px;
    width: 92px;
  }

  .page-title {
    margin-bottom: 18px;
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .article-content p,
  .article-content li {
    font-size: 0.97rem;
  }

  .article-content h2 {
    padding-left: 14px;
  }

  .article-content img {
    border-radius: 20px;
  }

  .table-wrap,
  .contents,
  .review-box,
  .faq {
    border-radius: 20px;
  }

  .article-content th,
  .article-content td {
    padding: 14px 15px;
  }

  .casino-popup {
    gap: 20px;
    padding: 20px;
  }

  .roulette-wheel {
    width: 104px;
    height: 104px;
  }

  .progress-container {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .site-shell {
    padding: 8px 8px 32px;
  }

  .page-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .page-title {
    font-size: clamp(1.7rem, 14vw, 2.35rem);
  }

  .site-header,
  .site-footer {
    border-radius: 20px;
  }

  .site-header__top,
  .site-nav,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contents,
  .faq,
  .review-box {
    padding: 16px;
  }

  .article-content h2::before {
    width: 3px;
  }

  .article-content th,
  .article-content td {
    min-width: 140px;
  }

  .article-content th:first-child,
  .article-content td:first-child {
    min-width: 160px;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ballBounce {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.3);
  }
}

@keyframes progressShine {
  from {
    background-position: -200% 0;
  }

  to {
    background-position: 200% 0;
  }
}

/* App-like Mobile UI Enhancements */
@media (min-width: 901px) {
  .site-nav--mobile {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .site-nav--desktop {
    display: none !important;
  }
  .site-nav--mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(20, 18, 16, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    border-top: 1px solid var(--border);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  }
  .site-nav__list {
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
    padding: 0;
  }
  .site-nav__list > li {
    flex: 1;
    display: flex;
  }
  .site-nav__list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 6px 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--muted);
    min-height: auto;
    width: 100%;
  }
  .site-nav__list a:hover,
  .site-nav__list a:focus-visible {
    background: transparent;
    transform: none;
    color: var(--accent-strong);
  }
  .site-nav__list a[aria-current="page"] {
    background: transparent;
    color: var(--accent-strong);
  }
  .site-nav__list a svg {
    width: 24px;
    height: 24px;
  }
  .nav-item-highlight a {
    color: #17120c !important;
    background: linear-gradient(180deg, #f1c981 0%, #d4ab67 100%) !important;
    border-radius: 12px;
    padding: 8px 4px;
    transform: translateY(-12px);
    box-shadow: 0 8px 16px rgba(212, 171, 103, 0.3) !important;
  }
  .nav-item-highlight a svg {
    stroke: #17120c !important;
  }
  
  .site-shell {
    padding-bottom: 90px;
  }
  .site-header {
    top: 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 16px;
  }
  .site-header__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }
  .site-brand img {
    width: 140px;
  }
  .header-actions {
    width: auto;
    flex-direction: row;
    gap: 8px;
  }
  .header-actions .button {
    min-height: 36px;
    padding: 6px 14px;
    font-size: 0.85rem;
  }
  .page-card {
    border-radius: 20px;
    padding: 20px 16px;
  }
}

@media (max-width: 360px) {
  .site-nav--mobile .site-nav__list a {
    font-size: 0.6rem;
    padding: 4px 2px;
  }
  .site-nav--mobile .site-nav__list a svg {
    width: 20px;
    height: 20px;
  }
  .site-nav--mobile .nav-item-highlight a {
    padding: 6px 2px;
    transform: translateY(-8px);
  }
}

@media (max-width: 300px) {
  .site-nav--mobile {
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  }
  .site-nav--mobile .site-nav__list a {
    font-size: 0.55rem;
  }
  .site-nav--mobile .site-nav__list a svg {
    width: 18px;
    height: 18px;
  }
  .site-nav--mobile .nav-item-highlight a {
    transform: translateY(-6px);
    border-radius: 10px;
  }
}

