    :root {
      --bg: #070907;
      --bg-soft: #10170f;
      --panel: rgba(255, 255, 255, 0.075);
      --panel-strong: rgba(255, 255, 255, 0.13);
      --text: #f7ffe9;
      --muted: #b7c7aa;
      --acid: #b8ff38;
      --gold: #ffc857;
      --red: #ff3b30;
      --green: #2cff7a;
      --border: rgba(255, 255, 255, 0.14);
      --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
      --radius: 28px;
      --max: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background:
        radial-gradient(circle at top left, rgba(184, 255, 56, 0.22), transparent 34%),
        radial-gradient(circle at 80% 10%, rgba(255, 200, 87, 0.14), transparent 32%),
        linear-gradient(135deg, #040604 0%, #0c1209 48%, #040604 100%);
      color: var(--text);
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      overflow-x: hidden;
    }

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

    img, iframe {
      max-width: 100%;
    }

    .site-shell {
      min-height: 100vh;
      position: relative;
    }

    .noise {
      pointer-events: none;
      position: fixed;
      inset: 0;
      opacity: 0.13;
      mix-blend-mode: screen;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
      z-index: 0;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      backdrop-filter: blur(22px);
      background: rgba(5, 8, 5, 0.68);
      border-bottom: 1px solid var(--border);
    }

    .nav {
      max-width: var(--max);
      margin: 0 auto;
      padding: 16px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .rasbox-logo {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .rasbox-logo img{
      height:48px;
      width:auto;
      display:block;
      object-fit:contain;
    }

    .footer-rasbox-logo {
      display: inline-flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .footer-rasbox-logo img{
      height:60px;
      width:auto;
      display:block;
      object-fit:contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .nav-links a:hover {
      color: var(--acid);
    }

    .nav-cta, .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(184, 255, 56, 0.5);
      background: linear-gradient(135deg, var(--acid), var(--green));
      color: #061006;
      font-weight: 900;
      border-radius: 999px;
      padding: 13px 18px;
      box-shadow: 0 12px 35px rgba(184, 255, 56, 0.22);
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }

    .nav-cta:hover, .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 52px rgba(184, 255, 56, 0.34);
      background: linear-gradient(135deg, #ffffff, var(--acid));
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding: 120px 22px 60px;
      overflow: hidden;
    }

    .hero-video-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      opacity: 0.46;
      filter: saturate(1.2) contrast(1.1);
    }

    .hero-video-bg iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120vw;
      height: 67.5vw;
      min-height: 120vh;
      min-width: 213.33vh;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(4, 6, 4, 0.96) 0%, rgba(4, 6, 4, 0.72) 44%, rgba(4, 6, 4, 0.35) 100%),
        linear-gradient(0deg, rgba(4, 6, 4, 0.95) 0%, transparent 35%);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 44px;
      width: 100%;
    }

    .kicker {
      color: var(--acid);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 13px;
      margin-bottom: 18px;
    }

    h1, h2, h3 {
      font-family: Anton, Impact, sans-serif;
      line-height: .92;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }

    h1 {
      font-size: clamp(58px, 9vw, 144px);
      max-width: 860px;
    }

    .gradient-text {
      background: linear-gradient(120deg, #fff, var(--acid), var(--gold));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-copy {
      color: var(--muted);
      font-size: clamp(17px, 2vw, 22px);
      line-height: 1.55;
      max-width: 720px;
      margin-top: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    .btn.secondary {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text);
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: none;
    }

    .hero-card {
      border: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(20px);
    }

    .hero-card iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      height: auto;
      border: 0;
      border-radius: 22px;
      display: block;
      background: #000;
    }

    .watch-caption {
      padding: 16px 4px 4px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .section {
      position: relative;
      z-index: 2;
      max-width: var(--max);
      margin: 0 auto;
      padding: 92px 22px;
    }

    .section-header {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }

    h2 {
      font-size: clamp(42px, 6vw, 86px);
    }

    .section-header p, .lead {
      color: var(--muted);
      line-height: 1.65;
      font-size: 17px;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .video-card, .glass-card {
      border: 1px solid var(--border);
      background: var(--panel);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .video-card iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      height: auto;
      display: block;
      border: 0;
      background: #000;
    }

    .video-card-content {
      padding: 20px;
    }

    .video-card-content h3 {
      font-size: 30px;
      margin-bottom: 8px;
    }

    .video-card-content p {
      color: var(--muted);
      line-height: 1.55;
      font-size: 14px;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }

    .glass-card {
      padding: 28px;
    }

    .glass-card h3 {
      font-size: 42px;
      margin-bottom: 16px;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .tag {
      border: 1px solid rgba(184, 255, 56, 0.3);
      background: rgba(184, 255, 56, 0.09);
      color: #eaffc2;
      border-radius: 999px;
      padding: 9px 12px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 900;
    }

    .embed-frame {
      border: 1px solid var(--border);
      background: rgba(0,0,0,.28);
      border-radius: var(--radius);
      padding: 16px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .embed-frame iframe {
      width: 100%;
      border: 0;
      border-radius: 18px;
      display: block;
    }

    .social-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 26px;
    }

    .social-link {
      padding: 18px;
      border-radius: 20px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.07);
      font-weight: 900;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--muted);
    }

    .social-link:hover {
      color: #061006;
      background: var(--acid);
      border-color: var(--acid);
    }

    .marquee {
      position: relative;
      z-index: 3;
      overflow: hidden;
      border-block: 1px solid var(--border);
      background: rgba(184,255,56,.09);
      padding: 18px 0;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: scrollText 22s linear infinite;
    }

    .marquee span {
      padding-right: 42px;
      font-family: Anton, sans-serif;
      font-size: clamp(28px, 4vw, 58px);
      text-transform: uppercase;
      color: var(--acid);
      white-space: nowrap;
    }

    @keyframes scrollText {
      to { transform: translateX(-50%); }
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .blog-card {
      min-height: 280px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background:
        linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)),
        radial-gradient(circle at top right, rgba(184,255,56,.18), transparent 35%);
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: var(--shadow);
    }

    .blog-card h3 {
      font-size: 34px;
      margin-bottom: 10px;
    }

    .blog-card p {
      color: var(--muted);
      line-height: 1.55;
      font-size: 14px;
    }

    .shop-wrap {
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: rgba(255,255,255,.08);
      padding: 24px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .merch-products {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .merch-link-card {
      border-radius: 18px;
      border: 1px solid var(--border);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
        radial-gradient(circle at top right, rgba(184, 255, 56, 0.14), transparent 46%);
      padding: 14px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-height: 100%;
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .merch-link-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 26px 62px rgba(0, 0, 0, 0.34);
    }

    .merch-product-image {
      display: block;
      border-radius: 14px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .merch-product-image img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
      transition: transform .25s ease;
    }

    .merch-product-image:hover img {
      transform: scale(1.03);
    }

    .merch-link-card h3 {
      font-size: clamp(24px, 3vw, 30px);
      line-height: 1.03;
    }

    .footer {
      position: relative;
      z-index: 2;
      padding: 42px 22px;
      border-top: 1px solid var(--border);
      background: rgba(0, 0, 0, .34);
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    @media (max-width: 980px) {
      .hero-inner, .section-header, .split {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 110px;
      }

      .nav-links {
        display: none;
      }

      .video-grid, .blog-grid {
        grid-template-columns: 1fr;
      }

      .merch-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .social-strip {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 620px) {
      .nav {
        padding: 12px 16px;
      }


      .nav-cta {
        padding: 11px 13px;
        font-size: 12px;
      }

      .hero, .section {
        padding-left: 16px;
        padding-right: 16px;
      }

      .hero-actions, .footer-inner {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .merch-products {
        grid-template-columns: 1fr;
      }

      .social-strip {
        grid-template-columns: 1fr;
      }
    }

.trb-stashbox-section {
  overflow: hidden;
}

.trb-stashbox-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  margin-bottom: 30px;
}

.trb-stashbox-panel,
.trb-stashbox-album,
.trb-stashbox-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  background:
    radial-gradient(circle at top right, rgba(184, 255, 56, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
}

.trb-stashbox-panel,
.trb-stashbox-album {
  padding: 30px;
}

.trb-stashbox-panel h3,
.trb-stashbox-album h3 {
  font-size: clamp(38px, 5vw, 68px);
  margin-bottom: 16px;
}

.trb-stashbox-panel p,
.trb-stashbox-album p,
.trb-stashbox-card p {
  color: var(--muted);
  line-height: 1.6;
}

.trb-stashbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.trb-stashbox-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.trb-stashbox-stat {
  border: 1px solid rgba(184, 255, 56, 0.24);
  background: rgba(184, 255, 56, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.trb-stashbox-stat strong {
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: 34px;
  line-height: 1;
  color: var(--acid);
  text-transform: uppercase;
}

.trb-stashbox-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trb-stashbox-album {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.trb-stashbox-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trb-stashbox-pill {
  border: 1px solid rgba(184, 255, 56, 0.3);
  background: rgba(184, 255, 56, 0.09);
  color: #eaffc2;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.trb-stashbox-carousel-shell {
  position: relative;
  margin-top: 30px;
}

.trb-stashbox-carousel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trb-stashbox-scroll-note {
  color: var(--acid);
}

.trb-stashbox-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 2px 30px;
  scrollbar-width: thin;
  scrollbar-color: var(--acid) rgba(255, 255, 255, 0.08);
}

.trb-stashbox-carousel::-webkit-scrollbar {
  height: 10px;
}

.trb-stashbox-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.trb-stashbox-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--acid), var(--green));
  border-radius: 999px;
}

.trb-stashbox-card {
  flex: 0 0 292px;
  min-height: 275px;
  padding: 24px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.trb-stashbox-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 255, 56, 0.58);
  background:
    radial-gradient(circle at top right, rgba(184, 255, 56, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.07));
}

.trb-stashbox-card span {
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.trb-stashbox-card h3 {
  font-size: 32px;
  margin: 12px 0 10px;
}

.trb-stashbox-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 18px;
  border: 1px solid rgba(184, 255, 56, 0.5);
  background: rgba(184, 255, 56, 0.12);
  color: var(--acid);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.trb-stashbox-card a:hover {
  background: var(--acid);
  color: #061006;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .trb-stashbox-feature {
    grid-template-columns: 1fr;
  }

  .trb-stashbox-card {
    flex-basis: 270px;
  }
}

@media (max-width: 620px) {
  .trb-stashbox-panel,
  .trb-stashbox-album,
  .trb-stashbox-card {
    padding: 22px;
  }

  .trb-stashbox-stats {
    grid-template-columns: 1fr;
  }

  .trb-stashbox-card {
    flex-basis: 82vw;
  }

  .trb-stashbox-actions .btn {
    width: 100%;
  }

  .trb-stashbox-carousel-label {
    align-items: flex-start;
    flex-direction: column;
  }
}

.trb-stashbox-carousel-stage {
  position: relative;
  margin-top: 18px;
}

.trb-stashbox-carousel {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  cursor: grab;
  padding-inline: 10px;
  scrollbar-width: none;
}

.trb-stashbox-carousel:active {
  cursor: grabbing;
}

.trb-stashbox-carousel::-webkit-scrollbar {
  display: none;
}

.trb-stashbox-edge-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(184, 255, 56, 0.55);
  background:
    radial-gradient(circle at top, rgba(184, 255, 56, 0.22), transparent 55%),
    rgba(5, 8, 5, 0.82);
  color: var(--acid);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.trb-stashbox-edge-arrow:hover,
.trb-stashbox-edge-arrow:focus {
  background: linear-gradient(135deg, var(--acid), var(--green));
  color: #061006;
  border-color: rgba(184, 255, 56, 0.9);
  transform: translateY(-50%) scale(1.05);
  outline: none;
}

.trb-stashbox-edge-arrow-left {
  left: -18px;
}

.trb-stashbox-edge-arrow-right {
  right: -18px;
}

@media (max-width: 980px) {
  .trb-stashbox-edge-arrow {
    width: 48px;
    height: 48px;
    font-size: 36px;
  }

  .trb-stashbox-edge-arrow-left {
    left: -8px;
  }

  .trb-stashbox-edge-arrow-right {
    right: -8px;
  }
}

@media (max-width: 620px) {
  .trb-stashbox-carousel-stage {
    margin-inline: -16px;
  }

  .trb-stashbox-carousel {
    padding-inline: 16px;
    scroll-snap-type: x mandatory;
  }

  .trb-stashbox-edge-arrow {
    width: 42px;
    height: 42px;
    font-size: 32px;
    opacity: .92;
  }

  .trb-stashbox-edge-arrow-left {
    left: 6px;
  }

  .trb-stashbox-edge-arrow-right {
    right: 6px;
  }
}

.trb-stashbox-book-strip {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 30px 0 34px;
  padding: 28px;
  border: 1px solid rgba(184, 255, 56, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 255, 56, 0.20), transparent 34%),
    radial-gradient(circle at 88% 35%, rgba(255, 200, 87, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.trb-stashbox-book-strip::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -2;
  background:
    conic-gradient(
      from 180deg,
      rgba(184, 255, 56, 0.0),
      rgba(184, 255, 56, 0.24),
      rgba(44, 255, 122, 0.18),
      rgba(255, 200, 87, 0.20),
      rgba(184, 255, 56, 0.0)
    );
  filter: blur(34px);
  opacity: .75;
  animation: trbAuroraTrailHaze 9s linear infinite;
}

.trb-stashbox-book-strip::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(var(--radius) - 1px);
  background:
    linear-gradient(135deg, rgba(7, 9, 7, 0.86), rgba(16, 23, 15, 0.78)),
    radial-gradient(circle at top right, rgba(184, 255, 56, 0.12), transparent 42%);
}

.trb-stashbox-book-copy h3 {
  font-size: clamp(38px, 5vw, 72px);
  margin-bottom: 10px;
}

.trb-stashbox-book-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
}

.trb-aurora-trail-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 245px;
  min-height: 62px;
  padding: 18px 26px;
  border-radius: 999px;
  border: 1px solid rgba(184, 255, 56, 0.68);
  color: #061006;
  background: linear-gradient(135deg, var(--acid), var(--green));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 18px 45px rgba(184, 255, 56, 0.24),
    0 0 70px rgba(44, 255, 122, 0.18);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.trb-aurora-trail-btn::before {
  content: "";
  position: absolute;
  inset: -90%;
  z-index: -2;
  background:
    conic-gradient(
      from 0deg,
      rgba(184, 255, 56, 0.0),
      rgba(184, 255, 56, 0.95),
      rgba(44, 255, 122, 0.85),
      rgba(255, 200, 87, 0.95),
      rgba(184, 255, 56, 0.0)
    );
  filter: blur(18px);
  opacity: .9;
  animation: trbAuroraTrailSpin 4.5s linear infinite;
}

.trb-aurora-trail-btn::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(184, 255, 56, 0.96), rgba(44, 255, 122, 0.92)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 36%);
}

.trb-aurora-trail-btn span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trb-aurora-trail-btn:hover,
.trb-aurora-trail-btn:focus {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 24px 60px rgba(184, 255, 56, 0.35),
    0 0 92px rgba(44, 255, 122, 0.28);
  outline: none;
}

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

@keyframes trbAuroraTrailHaze {
  0% {
    transform: translate3d(-4%, -2%, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(4%, 2%, 0) rotate(180deg) scale(1.08);
  }
  100% {
    transform: translate3d(-4%, -2%, 0) rotate(360deg) scale(1);
  }
}

@media (max-width: 760px) {
  .trb-stashbox-book-strip {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: left;
  }

  .trb-aurora-trail-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trb-stashbox-book-strip::before,
  .trb-aurora-trail-btn::before {
    animation: none;
  }
}
