@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-dark: #0a0b0f;
  --bg-card: #12141a;
  --bg-card2: #181b24;
  --gold: #f5c518;
  --gold-light: #ffe066;
  --gold-dark: #c9a000;
  --accent: #e8a000;
  --text: #e8e8f0;
  --text-muted: #8a8da8;
  --border: rgba(245,197,24,0.15);
  --green: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,11,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav a:hover, .nav a.active {
  color: var(--gold);
  background: rgba(245,197,24,0.08);
}

.header-btns {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.btn-outline {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
}

.btn-outline:hover {
  background: rgba(245,197,24,0.1);
}

.btn-gold {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  color: #0a0b0f;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  text-align: center;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,197,24,0.35);
}

.btn-gold-lg {
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  border: none;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  color: #0a0b0f;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-gold-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245,197,24,0.45);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('background.webp');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,11,15,0.85) 0%, rgba(10,11,15,0.3) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}

.hero-label {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.4;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-plus {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--text-muted);
  margin: 4px 0;
}

.hero-fs {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 400px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.badge-icon {
  font-size: 18px;
}

/* ── SECTIONS ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── BONUS STRIP ── */
.bonus-strip {
  background: linear-gradient(135deg, #1a1400 0%, var(--bg-card2) 50%, #1a1400 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bonus-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.bonus-strip-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.bonus-strip-text p {
  font-size: 15px;
  color: var(--text-muted);
}

.bonus-amount {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bonus-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-divider {
  font-size: 36px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── STEPS ── */
.steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #0a0b0f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.step-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── GAMES GRID ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.5);
}

.game-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: linear-gradient(180deg, var(--bg-card2) 0%, #0d0e14 100%);
}

.game-card-info {
  position: relative;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(10,11,15,0.95) 0%, transparent 100%);
}

.game-card-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 11px;
  color: var(--text-muted);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-play-btn {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #0a0b0f;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
}

/* ── LIVE TABLE CARDS ── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}

.live-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,197,24,0.5);
}

.live-card-top {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: linear-gradient(180deg, #1a1b24 0%, var(--bg-card) 100%);
  position: relative;
}

.live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.live-card-body {
  padding: 14px;
}

.live-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.live-card-dealer {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ── BONUS CARDS ── */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.5);
}

.bonus-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-card-tag {
  display: inline-block;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.bonus-card-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.bonus-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bonus-conditions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.bonus-condition {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.bonus-condition::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── TEXT CONTENT ── */
.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 48px;
}

.content-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.content-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.content-block ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.content-block li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ── SUPPORT BADGE ── */
.support-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 32px;
}

.support-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
}

.support-text {
  font-size: 14px;
  color: var(--text-muted);
}

.support-text strong {
  color: var(--green);
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: linear-gradient(180deg, #12141a 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 20px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.page-hero-title span { color: var(--gold); }

.page-hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

/* ── FILTERS ── */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,197,24,0.06);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 38px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 12px;
  color: #4a4d64;
  max-width: 500px;
  text-align: right;
  line-height: 1.5;
}

.age-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ── MOBILE ── */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,11,15,0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}

.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--gold);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav, .header-btns { display: none; }
  .burger { display: flex; margin-left: auto; }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-disclaimer {
    text-align: left;
  }

  .bonus-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .content-block {
    padding: 24px;
  }

  .bonus-card-value {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .live-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── TEXT LINK ── */
.text-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.text-link:hover {
  opacity: 0.8;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb-list li a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb-list li a:hover {
  color: var(--gold);
}

.breadcrumb-list li.current {
  color: var(--gold);
}

.breadcrumb-sep {
  color: #3a3d54;
  font-size: 11px;
}

/* ── FAQ ── */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

.faq-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.faq-section-title span {
  color: var(--gold);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open],
.faq-item:focus-within {
  border-color: rgba(245,197,24,0.35);
}

.faq-question {
  list-style: none;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── INTERNAL LINKS ── */
.internal-links-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

.internal-links-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.internal-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.internal-link-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.internal-link-item:hover {
  color: var(--gold);
  border-color: rgba(245,197,24,0.4);
  background: rgba(245,197,24,0.05);
}
