/* trauramixtop10.com — RX design system · DK 2026 */
:root {
  --rx-bg: #030712;
  --rx-bg2: #0a1628;
  --rx-panel: #0f1d32;
  --rx-glass: rgba(15, 29, 50, 0.72);
  --rx-line: rgba(34, 211, 238, 0.14);
  --rx-line-hot: rgba(244, 114, 182, 0.35);
  --rx-text: #e8edf5;
  --rx-dim: #7b8da8;
  --rx-cyan: #22d3ee;
  --rx-cyan-dim: rgba(34, 211, 238, 0.12);
  --rx-pink: #f472b6;
  --rx-pink-hot: #ff2d6a;
  --rx-lime: #a3e635;
  --rx-amber: #fbbf24;
  --rx-radius: 4px;
  --rx-radius-md: 8px;
  --rx-font: "Space Grotesk", system-ui, sans-serif;
  --rx-display: "Sora", system-ui, sans-serif;
  --rx-max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--rx-font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--rx-text);
  background: var(--rx-bg);
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rx-cyan); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--rx-pink); }
ul { padding-left: 1.15rem; margin: 0 0 1rem; }
h1, h2, h3, h4 { font-family: var(--rx-display); font-weight: 700; line-height: 1.15; margin: 0 0 0.7rem; }
p { margin: 0 0 1rem; color: var(--rx-dim); }
.rx-shell { width: min(100% - 2rem, var(--rx-max)); margin-inline: auto; }

/* Age gate */
.rx-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3, 7, 18, 0.96);
  backdrop-filter: blur(16px);
  padding: 1.25rem;
}
.rx-gate.is-off { display: none; }
.rx-gate-card {
  display: grid; grid-template-columns: 88px 1fr;
  max-width: 500px; width: 100%;
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius-md);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.08);
}
.rx-gate-side {
  background: linear-gradient(180deg, var(--rx-cyan) 0%, var(--rx-pink-hot) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--rx-display); font-weight: 800; font-size: 1.6rem;
  color: #030712; writing-mode: vertical-rl; transform: rotate(180deg);
  letter-spacing: 0.05em;
}
.rx-gate-body { padding: 1.5rem 1.35rem; }
.rx-gate-body img { width: 48px; height: 48px; border-radius: var(--rx-radius); margin-bottom: 0.75rem; object-fit: cover; }
.rx-gate-body h2 { font-size: 1.15rem; color: var(--rx-text); }
.rx-gate-body p { font-size: 0.86rem; }
.rx-gate-btns { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 1rem; }

/* Cookie strip */
.rx-cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--rx-bg2);
  border-top: 1px solid var(--rx-line);
  padding: 0.75rem 0;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.rx-cookie.is-on { transform: translateY(0); }
.rx-cookie-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.65rem; font-size: 0.84rem;
}
.rx-cookie-row p { margin: 0; }
.rx-cookie-btns { display: flex; gap: 0.4rem; }

/* Buttons */
.rx-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--rx-font); font-weight: 700; font-size: 0.76rem;
  padding: 0.68rem 1.25rem; border-radius: var(--rx-radius);
  border: none; cursor: pointer; transition: all 0.18s;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.rx-btn-go {
  background: var(--rx-pink-hot);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 45, 106, 0.35);
}
.rx-btn-go:hover { background: #ff4d7d; color: #fff; box-shadow: 0 0 28px rgba(255, 45, 106, 0.5); }
.rx-btn-cyan {
  background: transparent;
  color: var(--rx-cyan);
  border: 1px solid var(--rx-cyan);
}
.rx-btn-cyan:hover { background: var(--rx-cyan-dim); color: var(--rx-cyan); }
.rx-btn-gold {
  background: linear-gradient(90deg, var(--rx-amber), #f59e0b);
  color: #030712;
}
.rx-btn-gold:hover { filter: brightness(1.08); color: #030712; }
.rx-btn-ghost {
  background: transparent; color: var(--rx-dim);
  border: 1px solid var(--rx-line);
}
.rx-btn-ghost:hover { color: var(--rx-text); border-color: var(--rx-dim); }
.rx-btn-xs { padding: 0.45rem 0.85rem; font-size: 0.68rem; }

/* Top bar */
.rx-topbar {
  background: var(--rx-bg2);
  border-bottom: 1px solid var(--rx-line);
  font-size: 0.72rem; color: var(--rx-dim);
  padding: 0.4rem 0;
  text-align: center;
  letter-spacing: 0.04em;
}
.rx-topbar strong { color: var(--rx-cyan); }

/* Header */
.rx-head {
  position: sticky; top: 0; z-index: 200;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rx-line);
}
.rx-head-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; gap: 1rem;
  position: relative;
}
.rx-logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--rx-display); font-weight: 700; font-size: 0.9rem;
  color: var(--rx-text);
}
.rx-logo img { width: 36px; height: 36px; border-radius: var(--rx-radius); object-fit: cover; border: 1px solid var(--rx-line); }
.rx-logo em { font-style: normal; color: var(--rx-cyan); }
.rx-menu { display: flex; gap: 1.4rem; }
.rx-menu a {
  color: var(--rx-dim); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  position: relative; padding-bottom: 2px;
}
.rx-menu a::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--rx-cyan); transition: width 0.2s;
}
.rx-menu a:hover { color: var(--rx-text); }
.rx-menu a:hover::after { width: 100%; }
.rx-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rx-line);
  width: 40px; height: 40px;
  cursor: pointer;
  border-radius: var(--rx-radius);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 210;
}
.rx-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--rx-text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.rx-toggle.is-on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rx-toggle.is-on span:nth-child(2) { opacity: 0; }
.rx-toggle.is-on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.rx-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(3, 7, 18, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.rx-nav-backdrop.is-on {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.rx-hero {
  position: relative; padding: 3.5rem 0 2.5rem; overflow: hidden;
  border-bottom: 1px solid var(--rx-line);
}
.rx-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(244, 114, 182, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(34, 211, 238, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.rx-hero-inner { position: relative; text-align: center; max-width: 780px; margin: 0 auto; }
.rx-hero-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rx-pink);
  border: 1px solid var(--rx-line-hot);
  padding: 0.3rem 0.75rem; border-radius: var(--rx-radius);
  margin-bottom: 1.1rem;
}
.rx-hero h1 {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  color: var(--rx-text);
  letter-spacing: -0.02em;
}
.rx-hero h1 span { color: var(--rx-cyan); }
.rx-hero-sub { font-size: 1rem; max-width: 640px; margin: 0.85rem auto 0; }
.rx-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 2rem;
  background: var(--rx-line);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius-md);
  overflow: hidden;
}
.rx-stat {
  background: var(--rx-panel);
  padding: 1rem 0.75rem; text-align: center;
}
.rx-stat strong {
  display: block; font-family: var(--rx-display);
  font-size: 1.35rem; color: var(--rx-cyan); margin-bottom: 0.15rem;
}
.rx-stat span { font-size: 0.72rem; color: var(--rx-dim); text-transform: uppercase; letter-spacing: 0.06em; }

/* Section */
.rx-block { padding: 2.5rem 0; }
.rx-block--alt { background: var(--rx-bg2); border-block: 1px solid var(--rx-line); }
.rx-headline {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 0.5rem; margin-bottom: 1.75rem;
}
.rx-headline h2 { font-size: 1.35rem; color: var(--rx-text); margin: 0; }
.rx-headline time { font-size: 0.72rem; color: var(--rx-dim); }

/* Filters — underline tabs */
.rx-filters {
  display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rx-line);
}
.rx-filt {
  background: none; border: none; cursor: pointer;
  font-family: var(--rx-font); font-size: 0.78rem; font-weight: 600;
  color: var(--rx-dim); padding: 0.65rem 1.1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: 0.18s;
}
.rx-filt:hover { color: var(--rx-text); }
.rx-filt.is-on { color: var(--rx-cyan); border-bottom-color: var(--rx-cyan); }

/* Rank list */
.rx-ranks { display: flex; flex-direction: column; gap: 0.65rem; }

.rx-rank {
  display: grid;
  grid-template-columns: 52px 120px 1fr 160px;
  align-items: center; gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--rx-glass);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius-md);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rx-rank:hover {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.06);
}
.rx-rank-no {
  font-family: var(--rx-display); font-weight: 800; font-size: 1.5rem;
  color: var(--rx-line);
  line-height: 1;
}
.rx-rank-no--hot { color: var(--rx-cyan); }
.rx-rank-logo {
  display: flex; align-items: center; justify-content: center;
  min-height: 56px; min-width: 120px;
  padding: 0.55rem 0.75rem;
  background: #0a0f18;
  border-radius: var(--rx-radius);
  border: 1px solid var(--rx-line);
  overflow: visible;
}
.rx-rank-logo img {
  display: block;
  max-height: 44px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.rx-rank-logo--inv { background: #000; }
.rx-rank-data h3 {
  font-family: var(--rx-font); font-size: 0.88rem; font-weight: 700;
  color: var(--rx-text); margin-bottom: 0.2rem;
}
.rx-rank-bonus { font-size: 1.1rem; font-weight: 800; color: var(--rx-lime); margin-bottom: 0.15rem; }
.rx-rank-meta { font-size: 0.74rem; color: var(--rx-dim); }
.rx-rank-meta b { color: var(--rx-amber); font-weight: 700; }
.rx-rank-act { text-align: right; }
.rx-rank-act .rx-btn { width: 100%; }
.rx-rank-note {
  display: block; margin-top: 0.4rem;
  font-size: 0.7rem; color: var(--rx-dim);
}
.rx-rank-note:hover { color: var(--rx-cyan); }

.rx-chip {
  display: inline-block; font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.18rem 0.45rem; border-radius: var(--rx-radius);
  margin-bottom: 0.3rem;
}
.rx-chip--ny { background: rgba(163, 230, 53, 0.15); color: var(--rx-lime); border: 1px solid rgba(163, 230, 53, 0.3); }
.rx-chip--hit { background: rgba(34, 211, 238, 0.12); color: var(--rx-cyan); border: 1px solid var(--rx-line); }
.rx-chip--vip { background: rgba(244, 114, 182, 0.12); color: var(--rx-pink); border: 1px solid var(--rx-line-hot); }

/* Spotlight */
.rx-spot {
  position: relative;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  margin: 0.75rem 0;
  background: linear-gradient(110deg, rgba(34, 211, 238, 0.08) 0%, rgba(255, 45, 106, 0.1) 100%);
  border: 1px solid var(--rx-line-hot);
  border-radius: var(--rx-radius-md);
  overflow: hidden;
}
.rx-spot::before {
  content: "EDITOR'S PICK";
  position: absolute; top: 12px; right: -28px;
  background: var(--rx-pink-hot); color: #fff;
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 0.25rem 2.5rem; transform: rotate(35deg);
}
.rx-spot h3 { font-size: 1.05rem; color: var(--rx-text); margin-bottom: 0.35rem; }
.rx-spot p { font-size: 0.84rem; margin: 0; max-width: 520px; }

/* Article / prose */
.rx-prose {
  background: var(--rx-panel);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius-md);
  padding: 2rem 1.85rem;
}
.rx-prose h2 { font-size: 1.2rem; color: var(--rx-cyan); margin-top: 2rem; }
.rx-prose h2:first-child { margin-top: 0; }
.rx-prose h3 { font-size: 1rem; color: var(--rx-text); margin-top: 1.25rem; }
.rx-prose li { color: var(--rx-dim); margin-bottom: 0.3rem; }
.rx-prose a { color: var(--rx-pink); }

/* Legal page */
.rx-page-top {
  padding: 2.75rem 0 1.75rem;
  border-bottom: 1px solid var(--rx-line);
  background: var(--rx-bg2);
}
.rx-page-top h1 { font-size: 2rem; color: var(--rx-text); }
.rx-legal { padding: 2rem 0 3.5rem; }

/* Footer */
.rx-foot {
  background: #020509;
  border-top: 1px solid var(--rx-line);
  padding: 2.75rem 0 1.25rem;
}
.rx-foot-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  margin-bottom: 1.75rem;
}
.rx-foot-nav {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 1rem;
}
.rx-foot-nav a { color: var(--rx-dim); font-size: 0.8rem; font-weight: 600; }
.rx-foot-nav a:hover { color: var(--rx-cyan); }
.rx-foot-id {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--rx-display); font-weight: 700; font-size: 0.9rem;
  color: var(--rx-cyan); margin-bottom: 0.75rem;
}
.rx-foot-id img { width: 32px; height: 32px; border-radius: var(--rx-radius); object-fit: cover; }
.rx-foot-text p { font-size: 0.78rem; line-height: 1.65; }
.rx-foot-badges {
  display: flex; flex-wrap: wrap; gap: 15px; align-items: center;
  padding: 1.1rem 0;
  border-top: 1px solid var(--rx-line);
  border-bottom: 1px solid var(--rx-line);
  margin-bottom: 1rem;
}
.rx-foot-badges img { height: 50px; width: auto; }
.rx-foot-copy { font-size: 0.72rem; color: var(--rx-dim); text-align: center; }

/* Responsive */
@media (max-width: 900px) {
  .rx-rank {
    grid-template-columns: 44px minmax(130px, 150px) 1fr;
    gap: 0.85rem;
  }
  .rx-rank-act { grid-column: 1 / -1; text-align: left; }
  .rx-rank-act .rx-btn { width: auto; }
  .rx-rank-logo { min-width: 130px; }
  .rx-rank-logo img { max-width: 120px; max-height: 46px; }
  .rx-spot { grid-template-columns: 1fr; }
  .rx-foot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .rx-toggle { display: flex; }
  .rx-nav-backdrop { display: block; }

  .rx-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    flex-direction: column;
    gap: 0;
    padding: 0.35rem 0;
    background: var(--rx-bg2);
    border: 1px solid var(--rx-line);
    border-radius: 0 0 var(--rx-radius-md) var(--rx-radius-md);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
    z-index: 205;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s, visibility 0.25s;
  }
  .rx-menu.is-on {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .rx-menu a {
    display: block;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--rx-line);
  }
  .rx-menu a:last-child { border-bottom: none; }
  .rx-menu a::after { display: none; }
}
@media (max-width: 640px) {
  .rx-gate-card { grid-template-columns: 1fr; }
  .rx-gate-side { writing-mode: horizontal-tb; transform: none; padding: 0.5rem; font-size: 0.85rem; }
  .rx-stats { grid-template-columns: 1fr; }
  .rx-rank {
    grid-template-columns: 42px 1fr;
    grid-template-areas:
      "no logo"
      "data data"
      "act act";
    text-align: left;
    gap: 0.65rem 0.85rem;
    padding: 1rem;
  }
  .rx-rank-no { grid-area: no; align-self: center; font-size: 1.35rem; }
  .rx-rank-logo {
    grid-area: logo;
    margin: 0;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 60px;
    padding: 0.65rem 0.85rem;
  }
  .rx-rank-logo img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    margin: 0 auto;
  }
  .rx-rank-data { grid-area: data; }
  .rx-rank-act { grid-area: act; text-align: center; }
  .rx-rank-act .rx-btn { width: 100%; max-width: 280px; }
  .rx-foot-nav { grid-template-columns: 1fr; }
}
