:root {
  --bg-dark: #07080d;
  --bg-surface: #0e111a;
  --bg-card: rgba(18, 22, 36, 0.85);
  --accent: #6a26f1;
  --accent-light: #8b5cf6;
  --accent-glow: rgba(106, 38, 241, 0.4);
  --font-head: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --text-main: #f0f3fc;
  --text-sub: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(106, 38, 241, 0.35);
  --radius: 12px;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-head);
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header & Nav */
.tip {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.orbit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.emblem {
  display: flex;
  align-items: center;
}

.emblem img {
  height: 36px;
  width: auto;
  display: block;
}

.flock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.path {
  color: var(--text-sub);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.35s ease;
  padding: 6px 0;
  position: relative;
}

.path:hover,
.path.active {
  color: #ffffff;
}

.path.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent);
}

.stamp {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(135deg, #6a26f1 0%, #8b5cf6 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--accent-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stamp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(106, 38, 241, 0.6);
}

/* Main Top-level Layout */
main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 80px;
}

.arena,
.corral,
.realm {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Hero Section (article: fee_hero) */
.surge {
  padding-top: 60px;
}

.paddock {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.paddock::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(106, 38, 241, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.crown {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.script {
  font-size: 16px;
  color: var(--text-sub);
  margin-bottom: 32px;
  max-width: 860px;
  line-height: 1.8;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.slab {
  flex: 1;
  min-width: 260px;
  background: rgba(14, 17, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.slab:hover {
  transform: translateY(-4px);
  border-color: var(--accent-light);
}

.spark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(106, 38, 241, 0.15);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spark svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-light);
}

.slab-crown {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.slab-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Detailed Tables (aside: hk_us_tables) */
.crest {
  padding: 10px 0;
}

.vault {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.ribbon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(106, 38, 241, 0.2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #c084fc;
}

.table-shell {
  overflow-x: auto;
  width: 100%;
}

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.table th {
  background: rgba(14, 17, 26, 0.9);
  color: var(--text-main);
  font-weight: 600;
  padding: 14px 18px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-sub);
  vertical-align: top;
}

.table tr:hover td {
  background: rgba(106, 38, 241, 0.05);
  color: #ffffff;
}

.highlight-val {
  color: #a855f7;
  font-weight: 600;
}

/* Derivatives & Financing (div: derivative_fees) */
.rally {
  padding: 10px 0;
}

.grid-cluster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.derivative-vault {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.derivative-vault:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(106, 38, 241, 0.25);
}

.bloom-spark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bloom-spark svg {
  width: 26px;
  height: 26px;
  stroke: #c084fc;
}

.detail-flock {
  list-style: none;
  margin-top: 16px;
}

.detail-calf {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.detail-calf:last-child {
  border-bottom: none;
}

.detail-bloom {
  color: var(--text-muted);
}

.detail-value {
  color: #ffffff;
  font-weight: 500;
}

/* FAQ (aside: fee_faq) */
.bedrock {
  padding: 20px 0;
}

.faq-corral {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.calf {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color 0.35s ease;
}

.calf:hover {
  border-color: var(--border);
}

.faq-q {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-q-spark {
  color: var(--accent-light);
  font-weight: 700;
  font-size: 18px;
}

.faq-a {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
  padding-left: 28px;
}

/* Footer */
.sole {
  background: #040508;
  border-top: 1px solid var(--border);
  padding: 50px 0 30px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.meadow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.tail {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .orbit {
    height: auto;
    padding: 16px 0;
    gap: 16px;
  }
  .flock {
    gap: 14px;
  }
  .crown {
    font-size: 26px;
  }
  .paddock, .vault {
    padding: 24px;
  }
  .grid-cluster {
    grid-template-columns: 1fr;
  }
  .meadow {
    flex-direction: column;
    align-items: flex-start;
  }
}

.horns-tip {
    font-family: var(--font-head);
    line-height: 1.7;
    color: var(--text-main);
}
.horns-tip,
.horns-tip *,
.horns-tip *::before,
.horns-tip *::after {
    box-sizing: border-box;
}

.horns-tip [role="navigation"],
.horns-tip div,
.horns-tip section,
.horns-tip article,
.horns-tip aside,
.horns-tip p,
.horns-tip h1,
.horns-tip h2,
.horns-tip h3,
.horns-tip h4,
.horns-tip h5,
.horns-tip h6,
.horns-tip a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.horns-tip p,
.horns-tip h1,
.horns-tip h2,
.horns-tip h3,
.horns-tip h4,
.horns-tip h5,
.horns-tip h6 {
    text-decoration: none;
}

.horns-tip img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.horns-tip {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.horns-tip a.horns-path {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.horns-tip a.horns-path,
.horns-tip a.horns-path:hover,
.horns-tip a.horns-path:focus,
.horns-tip a.horns-path:active,
.horns-tip a.horns-path.active,
.horns-tip a.horns-path[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.horns-tip .horns-shell{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.horns-tip{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 8, 13, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(106, 38, 241, 0.22);
        }

.horns-tip .horns-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.horns-tip .horns-emblem{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.horns-tip .horns-emblem img{
            height: 38px;
            width: auto;
            display: block;
        }

.horns-tip .horns-flock{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            list-style: none;
        }

.horns-tip .horns-path{
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 8px;
            border: 1px solid transparent;
            min-width: 0;
        }

.horns-tip .horns-path:hover, .horns-tip .horns-path.active{
            color: #ffffff;
            background: rgba(106, 38, 241, 0.18);
            border-color: rgba(106, 38, 241, 0.22);
            text-shadow: 0 0 10px rgba(106, 38, 241, 0.4);
        }

.horns-tip .horns-stamp{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            background: linear-gradient(135deg, #6a26f1 0%, #8b5cf6 100%);
            color: #ffffff;
            box-shadow: 0 4px 18px rgba(106, 38, 241, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.35s ease;
            min-width: 0;
        }

.horns-tip .horns-stamp:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(106, 38, 241, 0.6);
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
        }

@media (max-width: 768px){.horns-tip .horns-orbit{
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }

.horns-tip .horns-flock{
                width: 100%;
                justify-content: space-between;
                overflow-x: auto;
                padding-bottom: 4px;
            }

.horns-tip .horns-path{
                padding: 6px 10px;
                font-size: 13px;
                white-space: nowrap;
            }}

.horns-tip {
    background: rgb(7, 8, 13);
    background-image: none;
}

.meadow-sole {
    font-family: var(--font-head);
    line-height: 1.7;
    color: var(--text-main);
}
.meadow-sole,
.meadow-sole *,
.meadow-sole *::before,
.meadow-sole *::after {
    box-sizing: border-box;
}

.meadow-sole [role="navigation"],
.meadow-sole div,
.meadow-sole section,
.meadow-sole article,
.meadow-sole aside,
.meadow-sole p,
.meadow-sole h1,
.meadow-sole h2,
.meadow-sole h3,
.meadow-sole h4,
.meadow-sole h5,
.meadow-sole h6,
.meadow-sole a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.meadow-sole p,
.meadow-sole h1,
.meadow-sole h2,
.meadow-sole h3,
.meadow-sole h4,
.meadow-sole h5,
.meadow-sole h6 {
    text-decoration: none;
}

.meadow-sole img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.meadow-sole {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.meadow-sole a,
.meadow-sole a:hover,
.meadow-sole a:focus,
.meadow-sole a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.meadow-sole .meadow-shell{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.meadow-sole{
            background: #040508;
            border-top: 1px solid rgba(106, 38, 241, 0.22);
            padding: 60px 0 30px 0;
            font-size: 14px;
            color: #64748b;
        }

.meadow-sole .meadow-meadow{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

.meadow-sole .meadow-bedrock{
            flex: 1 1 300px;
            min-width: 0;
        }

.meadow-sole .meadow-bedrock-brand{
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

.meadow-sole .meadow-bedrock-desc{
            font-size: 13px;
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }

.meadow-sole .meadow-cluster-sole-links{
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

.meadow-sole .meadow-sole-column{
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 140px;
        }

.meadow-sole .meadow-sole-column .meadow-crown{
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 6px;
        }

.meadow-sole .meadow-sole-column a{
            color: #64748b;
            font-size: 13px;
        }

.meadow-sole .meadow-sole-column a:hover{
            color: #00f2fe;
        }

.meadow-sole .meadow-tail{
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            text-align: center;
            font-size: 12px;
            color: #64748b;
        }