.server-details-main {
   padding-top: var(--nav-h);
   --sd-surface: rgba(0, 0, 0, 0.52);
   --sd-surface-2: rgba(0, 0, 0, 0.34);
   --sd-border: rgba(255, 255, 255, 0.10);
   --sd-border-soft: rgba(255, 255, 255, 0.07);
   --sd-shadow: 0 18px 52px rgba(0, 0, 0, 0.46);
   --sd-glow: 0 0 0 1px rgba(255, 122, 24, 0.18), 0 0 26px rgba(255, 122, 24, 0.08);
 }

 .side-menu-list::-webkit-scrollbar,
 .dd-panel::-webkit-scrollbar {
   width: 10px;
 }

 .side-menu-list::-webkit-scrollbar-thumb,
 .dd-panel::-webkit-scrollbar-thumb {
   background: rgba(255, 122, 24, 0.22);
   border: 2px solid rgba(0, 0, 0, 0.35);
   border-radius: 999px;
 }

 .side-menu-list::-webkit-scrollbar-track,
 .dd-panel::-webkit-scrollbar-track {
   background: rgba(0, 0, 0, 0.25);
   border-radius: 999px;
 }
 
 .page-hero { padding: 64px 0 26px; }
 .page-title {
   font-family: var(--font-head);
   font-size: 3.15rem;
   letter-spacing: 0.02em;
   text-align: center;
   text-shadow: 0 0 26px rgba(255, 122, 24, 0.22);
 }
 .page-subtitle { text-align: center; color: var(--color-text-muted); margin-top: 10px; max-width: 900px; margin-left: auto; margin-right: auto; }
 
 .page-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 18px;
  align-items: start;
}

@media (min-width: 1920px) {
  .page-title { font-size: 3.45rem; }
  .page-subtitle { font-size: 1.05rem; max-width: 1100px; }
  .page-layout {
    max-width: 1480px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
  }
}

@media (min-width: 2560px) {
  .page-title { font-size: 3.75rem; }
  .page-subtitle { font-size: 1.1rem; max-width: 1200px; }
  .page-layout {
    max-width: 1720px;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
  }
}

@media (min-width: 3440px) {
  .page-title { font-size: 4.0rem; }
  .page-subtitle { font-size: 1.15rem; max-width: 1320px; }
  .page-layout {
    max-width: 2000px;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 30px;
  }
}

@media (min-width: 3840px) {
  .page-title { font-size: 4.25rem; }
  .page-subtitle { font-size: 1.2rem; max-width: 1500px; }
  .page-layout {
    max-width: 2200px;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 34px;
  }
}
 
 .page-content { min-width: 0; }

 .details-root { min-width: 0; }
 
 .side-menu {
   position: sticky;
   top: 98px;
   align-self: start;
 }
 
 .side-menu-card {
   background: radial-gradient(1000px 420px at 20% -10%, rgba(255, 122, 24, 0.10), transparent 45%),
     linear-gradient(180deg, var(--sd-surface), var(--sd-surface-2));
   border: 1px solid var(--sd-border-soft);
   border-radius: 16px;
   box-shadow: var(--sd-shadow);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   padding: 14px;
   max-height: calc(100vh - 120px);
   display: flex;
   flex-direction: column;
   overflow: hidden;
 }
 
 .side-menu-title {
   font-family: var(--font-head);
   font-size: 1.05rem;
   letter-spacing: 0.02em;
 }
 
 .side-menu-sub {
   margin-top: 6px;
   color: var(--color-text-muted);
   font-size: 0.9rem;
 }
 
 .side-menu-select-wrap { margin-top: 12px; }

 .dd { position: relative; }
 .dd-btn {
   width: 100%;
   padding: 11px 12px;
   border-radius: 12px;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.18));
   border: 1px solid rgba(255, 255, 255, 0.12);
   color: #fff;
   outline: none;
   cursor: pointer;
   display: grid;
   grid-template-columns: 1fr auto;
   align-items: center;
   gap: 10px;
 }

 .dd-btn:focus {
   border-color: rgba(255, 122, 24, 0.45);
   box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.14);
 }

 .dd-label { color: rgba(255, 255, 255, 0.92); text-align: left; }
 .dd-chevron { color: rgba(255, 255, 255, 0.70); transition: transform 160ms ease; }
 .dd-btn[aria-expanded="true"] .dd-chevron { transform: rotate(180deg); }

 .dd-panel {
   position: absolute;
   left: 0;
   right: 0;
   top: calc(100% + 10px);
   z-index: 50;
   border-radius: 14px;
   border: 1px solid rgba(255, 255, 255, 0.10);
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.62));
   box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
   padding: 8px;
   max-height: 320px;
   overflow: auto;
 }

 .dd-opt {
   padding: 10px 10px;
   border-radius: 12px;
   border: 1px solid rgba(255, 255, 255, 0.08);
   background: rgba(0, 0, 0, 0.18);
   color: rgba(255, 255, 255, 0.88);
   cursor: pointer;
 }

 .dd-opt:hover {
   background: rgba(255, 122, 24, 0.10);
   border-color: rgba(255, 122, 24, 0.22);
 }

 .dd-opt.active {
   background: rgba(255, 122, 24, 0.14);
   border-color: rgba(255, 122, 24, 0.35);
 }
 
 .side-menu-select {
   width: 100%;
   padding: 11px 12px;
   border-radius: 12px;
   border: 1px solid rgba(255, 255, 255, 0.12);
   color: #fff;
   outline: none;
   color-scheme: dark;
   appearance: none;
   -webkit-appearance: none;
   background-image:
     linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.7) 50%),
     linear-gradient(135deg, rgba(255,255,255,0.7) 50%, transparent 50%),
     linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.18));
   background-position:
     calc(100% - 18px) calc(50% - 3px),
     calc(100% - 13px) calc(50% - 3px),
     0 0;
   background-size: 6px 6px, 6px 6px, 100% 100%;
   background-repeat: no-repeat;
 }
 
 .side-menu-list {
   margin-top: 12px;
   flex: 1;
   min-height: 0;
   overflow: auto;
   display: grid;
   gap: 8px;
   padding-right: 6px;
 }
 
 .side-menu-list a {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   text-decoration: none;
   padding: 10px 10px;
   border-radius: 12px;
   border: 1px solid rgba(255, 255, 255, 0.08);
   background: rgba(0, 0, 0, 0.18);
   color: rgba(255, 255, 255, 0.85);
   transition: background 160ms ease, border-color 160ms ease;
 }
 
 .side-menu-list a:hover {
   background: rgba(255, 122, 24, 0.08);
   border-color: rgba(255, 122, 24, 0.20);
 }
 
 .side-menu-list a.active {
   background: rgba(255, 122, 24, 0.12);
   border-color: rgba(255, 122, 24, 0.32);
   box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.10);
 }
 
 .details-root { display: grid; gap: 18px; padding: 0 0 10px; }
 
 .section-card {
   background: radial-gradient(1200px 500px at 20% -10%, rgba(255, 122, 24, 0.10), transparent 45%),
     linear-gradient(180deg, var(--sd-surface), var(--sd-surface-2));
   border: 1px solid var(--sd-border-soft);
   border-radius: 16px;
   padding: 18px;
   box-shadow: var(--sd-shadow);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   overflow: hidden;
 }
 
 .section-title {
   font-family: var(--font-head);
   font-size: 1.2rem;
   margin: 0 0 14px;
   display: flex;
   align-items: center;
   gap: 10px;
 }
 .section-title i { color: var(--color-accent); filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35)); }

 .si-acc-head {
   width: 100%;
   background: transparent;
   border: 0;
   padding: 0;
   color: inherit;
   display: grid;
   grid-template-columns: 1fr auto;
   align-items: center;
   gap: 10px;
   cursor: pointer;
 }

 .si-acc-chevron {
   padding: 0 2px;
   color: rgba(255, 255, 255, 0.70);
   transition: transform 160ms ease;
 }

 .section-card[data-collapsed="0"] .si-acc-chevron { transform: rotate(180deg); }

 .si-acc-body { margin-top: 14px; }

 .si-acc-body { min-width: 0; }
 
 .kv { display: grid; gap: 10px; }
 .kv-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   padding: 11px 12px;
   border-radius: 12px;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.18));
   border: 1px solid rgba(255, 255, 255, 0.07);
 }
 .kv-row span { color: var(--color-text-muted); font-size: 0.9rem; }
 .kv-row strong { color: #fff; text-align: right; }
 
 .list { list-style: none; padding-left: 0; display: grid; gap: 10px; margin: 0; }
 .list li {
   padding: 11px 12px;
   border-radius: 12px;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.18));
   border: 1px solid rgba(255, 255, 255, 0.07);
 }
 
 .table {
   width: 100%;
   border-collapse: collapse;
   overflow: hidden;
   border-radius: 14px;
   border: 1px solid rgba(255, 255, 255, 0.08);
 }
 .table th, .table td { padding: 11px 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
 .table th {
   text-align: left;
   color: rgba(255, 255, 255, 0.72);
   font-weight: 700;
   letter-spacing: 0.02em;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.18));
 }
 .table td { color: #fff; }
 .table tr:hover td { background: rgba(255, 122, 24, 0.06); }

 .section-card .table {
   display: table;
   width: 100%;
 }

 .si-stat-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 14px;
     justify-content: center;
     max-width: 1200px;
     margin: 10px auto 16px;
 }

 .si-stat-card {
   border: 1px solid rgba(255, 255, 255, 0.10);
   border-radius: 14px;
   padding: 16px 14px;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.18));
   box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
   text-align: center;
 }

 .si-stat-label {
   color: rgba(255, 255, 255, 0.55);
   font-size: 0.78rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }

 .si-stat-value {
   margin-top: 8px;
   color: #fff;
   font-family: var(--font-head);
   font-size: 1.35rem;
   text-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
 }

 .si-bar {
   margin: 18px 0 12px;
   padding: 14px 16px;
   border-radius: 12px;
   background: linear-gradient(90deg, rgba(255, 122, 24, 0.16), rgba(0, 0, 0, 0.06));
   border-left: 3px solid rgba(255, 122, 24, 0.85);
   border-top: 1px solid rgba(255, 255, 255, 0.06);
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 }

 .si-bar span {
   font-family: var(--font-head);
   letter-spacing: 0.04em;
   text-transform: uppercase;
   color: rgba(255, 122, 24, 0.95);
 }

 .si-row-list {
   border-top: 1px solid rgba(255, 255, 255, 0.08);
 }

 .si-row {
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 14px;
   padding: 13px 6px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 }

 .si-row-left {
   color: rgba(255, 255, 255, 0.78);
   font-weight: 600;
 }

 .si-row-right {
   color: rgba(255, 255, 255, 0.90);
   text-align: right;
 }

 .si-panel {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.14));
  width: 100%;
 }

 .si-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  justify-content: center;
 }

 .si-badge-row .si-badge { margin: 0; }

 .si-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.18);
 }

 .si-badge--red { border-color: rgba(255, 70, 70, 0.55); color: #ff6b6b; }
 .si-badge--dyellow { border-color: rgba(255, 122, 24, 0.55); color: var(--color-accent); }
 .si-badge--lblue { border-color: rgba(120, 170, 255, 0.55); color: #78aaff; }
 .si-badge--water { border-color: rgba(90, 180, 255, 0.55); color: #5ab4ff; }
 .si-badge--wind { border-color: rgba(130, 255, 190, 0.55); color: #82ffbe; }
 .si-badge--earth { border-color: rgba(255, 195, 90, 0.55); color: #ffc35a; }
 .si-badge--muted { border-color: rgba(255, 255, 255, 0.20); color: rgba(255, 255, 255, 0.75); }

 .si-table-wrap { overflow: auto; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08); }

 .si-table-wrap { width: 100%; max-width: 100%; display: block; }

 .si-table {
   width: 100%;
   border-collapse: collapse;
   min-width: 720px;
 }

 .si-table--wide { min-width: 860px; }

 .si-table th, .si-table td {
   padding: 12px 12px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 }

 .si-table th {
   text-align: left;
   background: rgba(255, 122, 24, 0.14);
   color: rgba(255, 122, 24, 0.92);
   font-weight: 900;
   letter-spacing: 0.04em;
   text-transform: uppercase;
   font-size: 0.86rem;
 }

 .si-table td { color: rgba(255, 255, 255, 0.90); }
 .si-table tr:hover td { background: rgba(255, 255, 255, 0.03); }

 #sec-socket-info .si-table-wrap {
   overflow: hidden;
 }

 #sec-socket-info .si-table {
   min-width: 0;
   table-layout: fixed;
 }

 #sec-socket-info .si-table--wide { min-width: 0; }

 #sec-socket-info .si-table th,
 #sec-socket-info .si-table td {
   white-space: normal;
   word-break: break-word;
   vertical-align: top;
 }

 #sec-socket-info .si-table th:nth-child(1),
 #sec-socket-info .si-table td:nth-child(1) { width: 26%; }
 #sec-socket-info .si-table th:nth-child(2),
 #sec-socket-info .si-table td:nth-child(2) { width: 24%; }
 #sec-socket-info .si-table th:nth-child(3),
 #sec-socket-info .si-table td:nth-child(3) { width: 38%; }
 #sec-socket-info .si-table th:nth-child(4),
 #sec-socket-info .si-table td:nth-child(4) { width: 12%; }

 #sec-socket-info .si-combo-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
 }

 .section-card .table {
   width: 100%;
   border-collapse: collapse;
   table-layout: fixed;
 }

 .section-card .table th,
 .section-card .table td {
   padding: 12px 12px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
   text-align: left;
 }

 .section-card .table th:last-child,
 .section-card .table td:last-child {
   text-align: right;
 }

 .section-card .table th {
   background: rgba(255, 122, 24, 0.14);
   color: rgba(255, 122, 24, 0.92);
   font-weight: 900;
   letter-spacing: 0.04em;
   text-transform: uppercase;
   font-size: 0.86rem;
 }

 .section-card .table td {
   color: rgba(255, 255, 255, 0.90);
 }

 .section-card .table tr:hover td {
   background: rgba(255, 255, 255, 0.03);
 }

 .si-rank { color: rgba(255, 255, 255, 0.92); font-weight: 800; }
 .si-rate-first { background: rgba(0, 255, 170, 0.10); }
 .si-rate-100 {
   background: rgba(0, 255, 170, 0.10);
   color: rgba(0, 255, 170, 0.95);
   font-weight: 900;
 }

 .si-el { font-weight: 800; }
 .si-el-sep { color: rgba(255, 255, 255, 0.35); padding: 0 6px; }

 .si-tag {
   display: inline-flex;
   align-items: center;
   padding: 6px 10px;
   border-radius: 10px;
   border: 1px solid rgba(255, 255, 255, 0.12);
   margin: 3px 6px 3px 0;
   font-weight: 800;
   background: rgba(0, 0, 0, 0.18);
 }

 .si-tag--fire { border-color: rgba(255, 80, 80, 0.55); color: #ff6b6b; }
 .si-tag--water { border-color: rgba(90, 180, 255, 0.55); color: #5ab4ff; }
 .si-tag--ice { border-color: rgba(95, 255, 208, 0.55); color: #5fffd0; }
 .si-tag--wind { border-color: rgba(130, 255, 190, 0.55); color: #82ffbe; }
 .si-tag--lightning { border-color: rgba(255, 122, 24, 0.55); color: var(--color-accent); }
 .si-tag--earth { border-color: rgba(255, 79, 216, 0.55); color: #ff4fd8; }
 .si-tag--muted { border-color: rgba(255, 255, 255, 0.20); color: rgba(255, 255, 255, 0.75); }

 .vip-tier { margin-top: 18px; }
 .vip-tier:first-child { margin-top: 6px; }

 .vip-tier-title {
   font-family: var(--font-head);
   color: rgba(255, 122, 24, 0.95);
   letter-spacing: 0.04em;
   text-transform: uppercase;
   font-size: 1.05rem;
   padding: 14px 16px;
   border-radius: 12px;
   background: linear-gradient(90deg, rgba(255, 122, 24, 0.16), rgba(0, 0, 0, 0.06));
   border-left: 3px solid rgba(255, 122, 24, 0.85);
   border-top: 1px solid rgba(255, 255, 255, 0.06);
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 }

 .vip-tier-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 14px;
   margin-top: 14px;
 }

 .vip-tier-card {
   border: 1px solid rgba(255, 255, 255, 0.10);
   border-radius: 14px;
   padding: 16px 14px;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.18));
   box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
   text-align: center;
 }

 .vip-tier-label {
   color: rgba(255, 255, 255, 0.55);
   font-size: 0.78rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }

 .vip-tier-value {
   margin-top: 8px;
   color: #fff;
   font-family: var(--font-head);
   font-size: 1.35rem;
 }

 .vip-benefits-title {
   margin-top: 16px;
   font-family: var(--font-head);
   color: rgba(255, 255, 255, 0.92);
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }
 
 .cta-row { display: flex; justify-content: center; gap: 15px; padding: 34px 20px 74px; }
 
 @media (max-width: 900px) {
   .page-layout { grid-template-columns: 1fr; }
   .side-menu { position: static; }
   .page-title { font-size: 2.25rem; }
   .cta-row { flex-direction: column; align-items: center; }
   .cta-row .btn { width: 100%; max-width: 420px; text-align: center; }
 }

 @media (max-width: 1100px) {
   .si-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 }

 @media (max-width: 620px) {
   .vip-tier-grid { grid-template-columns: 1fr; }
 }

/* Jewel explanations (compact accordion) */
/* Explanations list wrapper (card-like) */
.si-exp-list {
    display: grid;
    gap: 10px;
}

/* Each explanation item: subtle bordered card */
.si-exp-item {
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    background: rgba(10, 12, 16, 0.40);
    overflow: hidden;
}

/* Clickable row (like your si-row style but richer) */
.si-exp-row {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    cursor: pointer;
    text-align: left;
}

.si-exp-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Left side */
.si-exp-left {
    min-width: 0;
}

.si-exp-title {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

/* Hardcoded icon styling */
.si-exp-icon {
    color: rgba(201, 170, 92, 0.85); /* gold-ish, blends with your UI */
    width: 18px;
    display: inline-flex;
    justify-content: center;
}

/* Name: white-ish but not pure white */
.si-exp-name {
    font-weight: 900;
    color: rgba(240, 240, 240, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Description: muted */
.si-exp-desc {
    margin-top: 4px;
    color: rgba(210, 210, 210, 0.62);
    font-size: 0.92rem;
    line-height: 1.35;
}

/* Right side chevron */
.si-exp-right {
    color: rgba(210, 210, 210, 0.60);
    transition: transform 160ms ease;
}

/* Rotate chevron when open */
.si-exp-item.is-open .si-exp-right {
    transform: rotate(180deg);
}

/* Expand/collapse body */
.si-exp-body {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 180ms ease;
}

/* bullets */
.si-exp-bullets {
    margin: 12px 0 14px;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.si-exp-bullets li {
    color: rgba(235, 235, 235, 0.84);
    line-height: 1.35;
}

.si-exp-empty {
    margin: 12px 0 14px;
    color: rgba(210, 210, 210, 0.55);
    font-size: 0.92rem;
}


/* Hunt Maps grid: 2 columns, compact */
.hp-maps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    padding: 8px 0 2px;
}

.hp-map-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(10, 12, 16, 0.32);
    color: rgba(235,235,235,0.86);
}

.hp-map-item i {
    color: rgba(201, 170, 92, 0.85);
    width: 16px;
    display: inline-flex;
    justify-content: center;
}

/* Buff table compact alignment */
.hp-buffs-table th,
.hp-buffs-table td {
    vertical-align: middle;
}

.hp-buff-name {
    font-weight: 800;
    color: rgba(240,240,240,0.92);
    white-space: nowrap;
}

.hp-buff-max {
    text-align: right;
    font-weight: 800;
    color: rgba(201, 170, 92, 0.90);
    white-space: nowrap;
}

.hp-buff-req {
    color: rgba(210,210,210,0.70);
    white-space: nowrap;
}

/* Responsive: maps to 1 column on small screens */
@media (max-width: 720px) {
    .hp-maps-grid {
        grid-template-columns: 1fr;
    }

    .hp-buff-name,
    .hp-buff-req {
        white-space: normal;
    }
}
/* Requirement Colors */
.req-ml {
    color: #5da9ff; /* blue-ish */
    font-weight: 700;
}

.req-rr {
    color: #f5c76b; /* gold-ish */
    font-weight: 700;
}

.req-gr {
    color: #ff6b6b; /* red-ish */
    font-weight: 700;
}

.req-sep {
    color: rgba(255,255,255,0.35);
}

/* =========================
   Azura Trader (FULL CSS)
   Add this block at the END of your CSS file.
   If you already have older .trader-* rules, remove them and keep this block only.
   ========================= */

/* Overview note */
.si-note {
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(10, 12, 16, 0.32);
    color: rgba(235,235,235,0.84);
    line-height: 1.35;
}

/* Categories wrapper */
.trader-cats {
    display: grid;
    gap: 14px;
}

/* Category card */
.trader-cat {
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    background: rgba(10, 12, 16, 0.28);
    overflow: hidden;
}

.trader-cat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    font-weight: 900;
    color: rgba(240,240,240,0.92);
}

.trader-cat-title i {
    color: rgba(201, 170, 92, 0.85);
}

.trader-cat-body {
    padding: 12px 14px 14px;
    display: grid;
    gap: 12px;
}

.trader-notes{
    margin-top: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.trader-notes-title{
    color: #ffb347; /* orange */
    font-weight: 700;
    white-space: nowrap;
}

.trader-notes-text{
    color: #ffb347; /* orange */
    opacity: 0.95;
}

/* intentionally blank: removed empty rulesets to satisfy CSS linter */

/* Give notes breathing room from the bottom border */
.trader-notes{
    margin-top: 10px;
    margin-bottom: 12px; /* <-- this is the "not sticky to border" fix */
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* Orange notes, single-line feel */
.trader-notes-title,
.trader-notes-text{
    color: #ffb347;
    font-weight: 700;
}

.trader-notes-text{
    font-weight: 600;
}

/* Split rows: left content + right badges/qty */
.trader-row-split{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.trader-row-left{
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.trader-row-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
}

/* Make "x1" appear after the item name for Required */
.trader-inline-count{
    opacity: 0.9;
    font-weight: 700;
}

/* Reward qty on the right, green */
.trader-reward-qty{
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 800;
    color: #42d37c;
    background: rgba(66, 211, 124, 0.12);
    border: 1px solid rgba(66, 211, 124, 0.25);
}

/* Badges look consistent */
.trader-badges{
    display: inline-flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
}

/* Optional: ensure badges don't wrap weirdly */
.trader-badge{
    white-space: nowrap;
}

/* =========================
   Collapsible recipe cards
   ========================= */

.trader-recipe {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(0,0,0,0.18);
    overflow: hidden;
}

/* Highlight when open */
.trader-recipe.is-open {
    border-color: rgba(201, 170, 92, 0.25);
}

/* Clickable recipe header */
.trader-recipe-head {
    width: 100%;
    border: 0;
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    text-align: left;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;

    padding: 10px 12px;
    color: rgba(235,235,235,0.88);
}

.trader-recipe-head:hover {
    background: rgba(255,255,255,0.05);
}

/* Left side header layout */
.trader-recipe-head-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.trader-recipe-head-left i {
    color: rgba(210,210,210,0.70);
}

/* Recipe title */
.trader-recipe-name {
    font-weight: 900;
    font-size: 0.92rem;
    white-space: nowrap;
}

/* Small preview text after the title */
.trader-recipe-preview {
    color: rgba(210,210,210,0.65);
    font-weight: 700;
    font-size: 0.90rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Right side chevron */
.trader-recipe-head-right {
    color: rgba(210,210,210,0.60);
    transition: transform 160ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
}

.trader-recipe-head-right i {
    font-size: 0.95rem;
}

.trader-recipe.is-open .trader-recipe-head-right {
    transform: rotate(180deg);
}

/* Collapsible body */
.trader-recipe-body {
    padding: 0 12px;             /* body inner padding, content uses its own margins */
    max-height: 0;
    overflow: hidden;
    transition: max-height 180ms ease;
}

/* max-height is set inline via JS when open */

/* Recipe body content wrapper spacing */
.trader-recipe-body > .trader-req,
.trader-recipe-body > .trader-out {
    padding: 10px 0 12px;
}

/* divider between required and reward (if both exist) */
.trader-recipe-body > .trader-req + .trader-out {
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* =========================
   Required / Reward blocks
   ========================= */

.trader-req-title,
.trader-out-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    color: rgba(235,235,235,0.88);
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.trader-req-title i {
    color: rgba(120, 200, 255, 0.80);
}

.trader-out-title i {
    color: rgba(150, 235, 170, 0.85);
}

/* Rows for required items and output */
.trader-row,
.trader-out-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 10px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    background: rgba(10, 12, 16, 0.22);
}

/* Left part in required row */
.trader-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

/* Count pill */
.trader-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: rgba(235,235,235,0.86);
    font-weight: 900;
    font-size: 0.86rem;
    flex: 0 0 auto;
}

/* Output count pill */
.trader-count-out {
    background: rgba(150, 235, 170, 0.12);
    color: rgba(150, 235, 170, 0.92);
}

/* Item text */
.trader-item {
    color: rgba(235,235,235,0.88);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.trader-item-out {
    color: rgba(150, 235, 170, 0.92);
}

/* Constraint badges */
.trader-badges {
    display: inline-flex;
    gap: 6px;
    margin-left: 6px;
    flex: 0 0 auto;
}

.trader-badge {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 0.80rem;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,0.06);
    white-space: nowrap;
}

.trader-badge-lvl {
    background: rgba(255, 206, 120, 0.10);
    color: rgba(255, 206, 120, 0.92);
}

.trader-badge-exc {
    background: rgba(120, 169, 255, 0.10);
    color: rgba(120, 169, 255, 0.92);
}

/* =========================
   Responsive tweaks
   ========================= */

@media (max-width: 720px) {
    .trader-cat-body {
        padding: 10px 10px 12px;
    }

    .trader-recipe-head {
        padding: 10px 10px;
    }

    .trader-recipe-body {
        padding: 0 10px;
    }

    .trader-item {
        white-space: normal;
    }

    .trader-recipe-preview {
        display: none; /* keep header clean on mobile */
    }
}

/* Exclusive Features list */
.exf-list .exf-li {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: start;
}

.exf-text {
    min-width: 0;
}

/* HOT badge */
.exf-hot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 4px 10px;
    border-radius: 999px;

    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 0.5px;

    color: #ff3b2f; /* stronger fire red */
    background: rgba(255, 60, 40, 0.08);

    z-index: 0;
    overflow: hidden;

    animation: exfHotGlow 1.6s ease-in-out infinite;
}

/* Gradient animated circular border */
.exf-hot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 1px; /* border thickness */

    background: linear-gradient(
            45deg,
            #ff6a00,
            #ffb800,
            #ff3b2f,
            #ff6a00
    );

    background-size: 300% 300%;
    animation: exfHotBorder 3s linear infinite;

    -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
    mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;
}

/* Subtle glow pulse */
@keyframes exfHotGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 60, 40, 0.0);
    }
    50% {
        box-shadow: 0 0 12px rgba(255, 120, 0, 0.45);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 60, 40, 0.0);
    }
}

/* Border gradient animation */
@keyframes exfHotBorder {
    0% { background-position: 0 50%; }
    100% { background-position: 300% 50%; }
}

