/* Local Montserrat Font Faces */
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Brand Colors - Light Mode (Default) */
  --bg: #faf9f5;
  --bg-secondary: #e8e6dc;
  --surface: #ffffff;
  --surface-hover: #f5f4f0;
  
  /* Borders - More visible for better separation */
  --border: #d0cec5;
  --border-light: #b0aea5;
  
  /* Text */
  --text: #141413;
  --text-secondary: #6a6965;
  --text-tertiary: #b0aea5;
  
  /* Accent - Brand Orange */
  --accent: #d97757;
  --accent-hover: #c56a4a;
  --accent-glow: rgba(217, 119, 87, 0.15);
  
  /* Semantic colors - Brand aligned */
  --positive: #788c5d;
  --positive-bg: rgba(120, 140, 93, 0.1);
  --negative: #dc2626;
  --negative-bg: rgba(220, 38, 38, 0.1);
  --warning: #d97757;
  --warning-bg: rgba(217, 119, 87, 0.1);
  
  /* Gradients - Brand Orange */
  --gradient-primary: linear-gradient(135deg, #d97757 0%, #e08b6d 100%);
  --gradient-success: linear-gradient(135deg, #788c5d 0%, #8fa070 100%);
  
  /* Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(20, 20, 19, 0.05);
  --shadow: 0 4px 6px -1px rgba(20, 20, 19, 0.1), 0 2px 4px -2px rgba(20, 20, 19, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(20, 20, 19, 0.1), 0 4px 6px -4px rgba(20, 20, 19, 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 4rem;
}

@media (max-width: 768px) {
  body {
    padding: 1.5rem 1rem 3rem;
  }
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 2rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

.nav-brand:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}

.nav-logo {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  transition: stroke 0.2s ease;
}

.nav-brand:hover .nav-logo {
  stroke: var(--accent-hover);
}

.nav-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d97757 0%, #e08b6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(99, 102, 241, 0.1);
}

.nav-link.active {
  color: var(--accent);
  background: rgba(99, 102, 241, 0.12);
}

@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .nav-brand-text {
    font-size: 1.1rem;
  }
  
  .nav-links {
    width: 100%;
    justify-content: center;
  }
  
  header h1 {
    font-size: 1.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    line-height: 1.2;
  }
  
  .header-icon {
    width: 28px;
    height: 28px;
  }
}

header { 
  text-align: center; 
  margin-bottom: 3rem;
  width: 100%;
  max-width: 1000px;
}

.lang-selector select {
  width: auto;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
  margin-left: 0.5rem;
}

.lang-selector select:hover {
  border-color: var(--accent);
  background: rgba(99, 102, 241, 0.05);
}

.lang-selector select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

header h1 span {
  background: linear-gradient(135deg, #d97757 0%, #e08b6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-icon {
  width: 36px;
  height: 36px;
  stroke: var(--accent);
  flex-shrink: 0;
}

header p { 
  color: var(--text-secondary); 
  font-size: 1rem;
  font-weight: 400;
}

.cards-container {
  column-count: 2;
  column-gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
}

.cards-container > .card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .cards-container {
    column-count: 1;
  }
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
}

.faq-container > .card {
  margin-bottom: 0;
}

.results-wrapper {
  display: grid;
  grid-template-areas: "results";
}

.results-wrapper > .card {
  grid-area: results;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem 2rem;
  width: 100%;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

#results-card { 
  border-top: 3px solid transparent;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, border-top-color 0.35s;
}
#results-card.outcome-good { border-top-color: var(--positive); }
#results-card.outcome-bad  { border-top-color: var(--negative); }

.placeholder-card {
  border: 2px dashed var(--border-light);
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.placeholder-card.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--text-tertiary);
  height: 100%;
}

.placeholder-content svg {
  margin-bottom: 1rem;
  opacity: 0.6;
  stroke: var(--text-tertiary);
}

.placeholder-content p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.loading-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
}

.loading-card.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--text-secondary);
  height: 100%;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(99, 102, 241, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-content p {
  font-size: 0.875rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.field { margin-bottom: 1.25rem; }
.field:last-child { margin-bottom: 0; }

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

input, select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background-color 0.15s;
}

input::placeholder {
  color: var(--text-tertiary);
}

input:hover, select:hover {
  border-color: var(--border-light);
}

input:focus, select:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

select { 
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236a6965' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.dt-stack { display: flex; flex-direction: column; gap: 0.75rem; }

.row-tu {
  display: grid;
  grid-template-columns: 1fr 215px;
  gap: 0.75rem;
  align-items: center;
}

#tx-time {
  min-width: 0;
  flex: 1;
}

@media (max-width: 400px) {
  .row-tu { grid-template-columns: 1fr; }
}

button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

button:hover  { 
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
button:active { transform: scale(0.98); }
button:disabled { 
  opacity: 0.45; 
  cursor: not-allowed; 
  transform: none;
  box-shadow: none;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.result-row:last-child { border-bottom: none; }
.result-row .label { color: var(--text-secondary); font-weight: 400; }
.result-row .value { font-weight: 600; font-variant-numeric: tabular-nums; color: var(--text); }

.value.positive { color: var(--positive); }
.value.negative { color: var(--negative); }

.spread-block {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  text-align: center;
  transition: background 0.35s, border-color 0.35s;
}

.spread-block.is-good {
  border-color: var(--positive);
  background: var(--positive-bg);
}

.spread-block.is-bad {
  border-color: var(--negative);
  background: var(--negative-bg);
}

.spread-block .spread-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.spread-block .spread-value {
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.spread-block.is-good .spread-value {
  color: var(--positive);
}

.spread-block.is-bad .spread-value {
  color: var(--negative);
}

.spread-verdict {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.spread-verdict.positive {
  background: var(--positive-bg);
  color: var(--positive);
  border: 1px solid var(--positive);
}

.spread-verdict.negative {
  background: var(--negative-bg);
  color: var(--negative);
  border: 1px solid var(--negative);
}

.spread-pct {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: var(--text-tertiary);
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}

.faq-item:hover .faq-question {
  background: var(--surface-hover);
}

.faq-question {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
  padding: 1rem 1.25rem;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  user-select: none;
  pointer-events: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 0.75rem;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
  color: var(--text-secondary);
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 1.25rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 0.75rem 1.25rem 1rem 1.25rem;
  max-height: 800px;
  opacity: 1;
}

.faq-answer .faq-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-answer .faq-steps > li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.faq-answer .faq-steps > li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--text-secondary);
  font-weight: bold;
}

.faq-answer .faq-details {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  padding-left: 1rem;
}

.faq-answer .faq-details > li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.95em;
  color: var(--text-secondary);
}

.faq-answer .faq-details > li::before {
  content: '◦';
  position: absolute;
  left: 0;
  color: var(--border-light);
}

.faq-answer ul li:last-child {
  margin-bottom: 0;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

#results-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, border-top-color 0.35s;
}

#results-card.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
}

#status {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1rem;
  min-height: 1.2em;
}

#status.error   { color: var(--negative); }
#status.success { color: var(--positive); }

.status-info { color: var(--text-secondary); }

.history-card {
  margin-top: 2rem;
  max-width: 1000px;
  width: 100%;
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.history-stats {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.avg-spread {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  line-height: 1;
  border: 1px solid transparent;
}

.avg-spread.positive {
  color: var(--positive);
  background: var(--positive-bg);
}

.avg-spread.negative {
  color: var(--negative);
  background: var(--negative-bg);
}

  .clear-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    box-shadow: none;
    margin-top: 0;
    width: auto;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .clear-btn:hover {
    background: var(--negative-bg);
    border-color: var(--negative);
    color: var(--negative);
    transform: none;
    box-shadow: none;
  }

.history-empty {
  text-align: center;
  padding: 2rem;
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.history-empty.hidden {
  display: none;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease;
}

.history-item:hover {
  background: var(--surface-hover);
}

.history-item-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  min-width: 0;
  flex: 1;
}

.history-item-date {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  min-width: 100px;
}

.history-item-ticker {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  min-width: 80px;
}

.history-item-spread,
.history-item-pct {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: ui-monospace, monospace;
}

.history-item-spread.positive,
.history-item-pct.positive {
  color: var(--positive);
}

.history-item-spread.negative,
.history-item-pct.negative {
  color: var(--negative);
}

.history-item-delete {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
  color: var(--text-tertiary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  border-radius: var(--radius-sm);
}

.history-item-delete:hover {
  color: var(--negative);
  background: var(--negative-bg);
  box-shadow: none;
}

@media (max-width: 768px) {
  .history-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .history-stats {
    width: 100%;
    justify-content: space-between;
  }

  .history-item-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .history-item {
    align-items: flex-start;
  }
}

/* Site Footer */
.site-footer {
  width: 100%;
  max-width: 1000px;
  margin-top: 3rem;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.github-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.github-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.github-link:hover {
  color: var(--accent);
  background: rgba(217, 119, 87, 0.1);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Header GitHub Link */
.header-github-link {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.header-github-link svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.25rem;
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 2rem;
    padding: 1rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141413;
    --bg-secondary: #1e1e1d;
    --surface: #2a2a29;
    --surface-hover: #353534;
    
    /* Borders */
    --border: #2a2a29;
    --border-light: #3a3a39;
    
    /* Text */
    --text: #faf9f5;
    --text-secondary: #b0aea5;
    --text-tertiary: #6a6965;
    
    /* Accent - Brand Orange */
    --accent: #d97757;
    --accent-hover: #e08b6d;
    --accent-glow: rgba(217, 119, 87, 0.2);
    
    /* Semantic colors */
    --positive: #788c5d;
    --positive-bg: rgba(120, 140, 93, 0.15);
    --negative: #ef4444;
    --negative-bg: rgba(239, 68, 68, 0.15);
    --warning: #d97757;
    --warning-bg: rgba(217, 119, 87, 0.15);
    
    /* Shadows - Darker */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  }

  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23b0aea5' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  }

  .nav-link:hover {
    background: rgba(217, 119, 87, 0.1);
  }

  .nav-link.active {
    background: rgba(217, 119, 87, 0.15);
  }

  .lang-selector select:hover {
    background: rgba(217, 119, 87, 0.05);
  }

  .faq-answer .faq-details > li::before {
    color: var(--border-light);
  }

  .nav-brand:hover {
    background: rgba(217, 119, 87, 0.1);
  }

  .github-link:hover {
    background: rgba(217, 119, 87, 0.1);
  }

  .header-github-link:hover {
    color: var(--accent);
  }

  .header-github-link svg {
    stroke: currentColor;
  }
}
