    /* ─── RESET & ROOT ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg:       #03060d;
      --bg2:      #070e1a;
      --panel:    rgba(7,14,26,.94);
      --line:     rgba(15,104,234,.28);
      --line2:    rgba(15,104,234,.62);
      --accent:   #0f68ea;
      --accent2:  #5fa1ff;
      --gold:     #f7c66b;
      --gold2:    #ffe4a0;
      --green:    #55e68c;
      --text:     #eef4ff;
      --muted:    #7aa8e0;
      --radius:   20px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Crimson Pro', Georgia, serif;
      font-weight: 300;
      overflow-x: hidden;
      min-height: 100vh;
    }

    /* ─── ANIMATED STARFIELD ─── */
    #starfield {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    .star {
      position: absolute;
      border-radius: 50%;
      background: #fff;
      animation: twinkle var(--d) ease-in-out infinite;
    }
    @keyframes twinkle {
      0%,100% { opacity: var(--min-op); transform: scale(1); }
      50%      { opacity: var(--max-op); transform: scale(1.5); }
    }

    /* ─── AMBIENT BG ─── */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(ellipse 100% 60% at 50% -10%, rgba(15,104,234,.13) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 90% 85%,   rgba(15,104,234,.09) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 5%  70%,   rgba(95,161,255,.06) 0%, transparent 55%),
        repeating-linear-gradient(0deg,  transparent, transparent 70px, rgba(15,104,234,.014) 70px, rgba(15,104,234,.014) 71px),
        repeating-linear-gradient(90deg, transparent, transparent 70px, rgba(15,104,234,.014) 70px, rgba(15,104,234,.014) 71px);
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 36px;
      background: rgba(3,6,13,.82);
      border-bottom: 1px solid rgba(15,104,234,.18);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      gap: 16px;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit;
    }
    .nav-brand img {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(15,104,234,.40);
      box-shadow: 0 0 14px rgba(15,104,234,.25);
    }
    .nav-brand-text {
      font-family: 'Cinzel', serif;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: 1px;
      color: #fff;
    }
    .nav-brand-text span { color: var(--accent2); }
    .nav-links {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .nav-links a {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--muted);
      border: 1px solid rgba(15,104,234,.22);
      background: rgba(15,104,234,.04);
      padding: 7px 13px;
      border-radius: 5px;
      transition: all .2s ease;
    }
    .nav-links a:hover {
      color: #fff;
      border-color: rgba(15,104,234,.55);
      background: rgba(15,104,234,.12);
      transform: translateY(-1px);
    }
    .nav-links a.cta {
      color: #02101f;
      background: linear-gradient(135deg, #1472f5, #5fa1ff);
      border-color: rgba(255,255,255,.18);
      font-weight: 700;
      box-shadow: 0 4px 18px rgba(15,104,234,.30);
    }
    .nav-links a.cta:hover {
      background: linear-gradient(135deg, #1e7fff, #79b4ff);
      box-shadow: 0 8px 28px rgba(15,104,234,.44);
    }

    /* ─── WRAPPER ─── */
    .wrap {
      position: relative;
      z-index: 1;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    body.ll-discord-xp-page .xp-content-start {
      padding-top: 84px;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      overflow: hidden;
    }

    /* large ambient orb */
    .hero::before {
      content: "";
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -60%);
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(15,104,234,.18) 0%, transparent 70%);
      pointer-events: none;
      animation: orb-breathe 7s ease-in-out infinite;
    }
    @keyframes orb-breathe {
      0%,100% { transform: translate(-50%,-60%) scale(1);   opacity:.7; }
      50%      { transform: translate(-50%,-60%) scale(1.15); opacity:1; }
    }

    .hero-logo-wrap {
      position: relative;
      width: 110px; height: 110px;
      margin: 0 auto 32px;
    }
    .hero-logo-ring {
      position: absolute;
      inset: -12px;
      border-radius: 50%;
      border: 1px solid rgba(15,104,234,.35);
      animation: ring-spin 14s linear infinite;
    }
    .hero-logo-ring::before {
      content: "";
      position: absolute;
      top: -2px; left: 50%;
      transform: translateX(-50%);
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent2);
      box-shadow: 0 0 10px var(--accent2);
    }
    @keyframes ring-spin { to { transform: rotate(360deg); } }
    .hero-logo {
      width: 110px; height: 110px;
      border-radius: 50%;
      border: 2px solid rgba(15,104,234,.50);
      box-shadow: 0 0 40px rgba(15,104,234,.45), 0 0 80px rgba(15,104,234,.20);
      object-fit: cover;
      animation: logo-float 5s ease-in-out infinite;
    }
    @keyframes logo-float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }

    .hero-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--accent2);
      opacity: .70;
      margin-bottom: 14px;
      animation: fade-up .7s .1s ease both;
    }
    .hero-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(52px, 9vw, 110px);
      font-weight: 900;
      line-height: .92;
      letter-spacing: -2px;
      color: #fff;
      text-shadow: 0 0 90px rgba(15,104,234,.35), 0 3px 0 rgba(0,0,0,.7);
      margin-bottom: 10px;
      animation: fade-up .7s .2s ease both;
    }
    .hero-title .accent { color: var(--accent2); display: block; font-family:'Cinzel',serif !important; font-weight:900 !important; }
    .hero-sub {
      font-size: clamp(18px, 2.5vw, 24px);
      color: #b8d0f5;
      font-weight: 300;
      line-height: 1.5;
      max-width: 600px;
      margin: 0 auto 36px;
      animation: fade-up .7s .35s ease both;
    }

    /* rate pills in hero */
    .hero-pills {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 40px;
      animation: fade-up .7s .45s ease both;
    }
    .pill {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 999px;
      border: 1px solid rgba(15,104,234,.35);
      background: rgba(15,104,234,.08);
      color: var(--accent2);
      transition: all .2s ease;
    }
    .pill:hover {
      border-color: var(--accent2);
      background: rgba(15,104,234,.16);
      transform: translateY(-2px);
    }
    .pill.gold {
      border-color: rgba(247,198,107,.45);
      background: rgba(247,198,107,.08);
      color: var(--gold2);
    }
    .pill.gold:hover { border-color: var(--gold); background: rgba(247,198,107,.16); }
    .pill.green {
      border-color: rgba(85,230,140,.35);
      background: rgba(85,230,140,.07);
      color: #aef7c8;
    }

    .hero-weekend-note {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin: 14px auto 0;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(247,198,107,.34);
      background: linear-gradient(180deg, rgba(247,198,107,.14), rgba(134,92,25,.12));
      color: #ffe1a0;
      font-weight: 900;
      font-size: 12px;
      letter-spacing: .04em;
      text-transform: none;
      box-shadow: 0 12px 28px rgba(0,0,0,.18);
    }
    .hero-weekend-note strong {
      color: #fff2c9;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 11px;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      animation: fade-up .7s .55s ease both;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 15px 34px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      transition: all .25s cubic-bezier(.4,0,.2,1);
      position: relative;
      overflow: hidden;
    }
    .btn::after {
      content: none;
      display: none;
      animation: none;
      background: none;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #1472f5, #5fa1ff);
      color: #01101e;
      font-weight: 800;
      box-shadow: 0 8px 32px rgba(15,104,234,.38);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(15,104,234,.55);
    }
    .btn-ghost {
      background: rgba(15,104,234,.06);
      color: var(--accent2);
      border: 1px solid rgba(15,104,234,.35);
    }
    .btn-ghost:hover {
      background: rgba(15,104,234,.14);
      border-color: var(--accent2);
      transform: translateY(-3px);
    }

    /* scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: grid;
      justify-items: center;
      align-items: center;
      gap: 6px;
      width: 88px;
      margin: 0;
      padding: 0;
      text-align: center;
      opacity: .45;
      animation: scroll-hint-fade-up .7s .8s ease both;
      pointer-events: none;
    }
    .scroll-hint span {
      display: block;
      width: 100%;
      margin: 0;
      padding: 0;
      text-align: center;
      font-family: 'Cinzel', serif;
      font-size: 8px;
      line-height: 1;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
    }
    .scroll-arrow {
      display: block;
      width: 24px;
      height: 14px;
      margin: 0 auto;
      color: var(--muted);
      overflow: visible;
      animation: scroll-bounce 2s ease-in-out infinite;
    }
    .scroll-arrow path {
      vector-effect: non-scaling-stroke;
    }
    @keyframes scroll-bounce {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(5px); }
    }
    @keyframes scroll-hint-fade-up {
      from { opacity: 0; transform: translate(-50%, 22px); }
      to   { opacity: 1; transform: translate(-50%, 0); }
    }

    /* ─── SECTION COMMON ─── */
    section {
      position: relative;
      z-index: 1;
      padding: 100px 0;
    }
    .section-label {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--accent2);
      opacity: .65;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 900;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 16px;
    }
    .section-title em { font-style: normal; color: var(--accent2); }
    .section-desc {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
      max-width: 580px;
      margin-bottom: 48px;
    }

    /* ─── DIVIDER ─── */
    .ornament {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 60px;
    }
    .ornament-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(15,104,234,.30));
    }
    .ornament-line.rev {
      background: linear-gradient(to left, transparent, rgba(15,104,234,.30));
    }
    .ornament-diamond {
      width: 9px; height: 9px;
      background: var(--accent);
      transform: rotate(45deg);
      box-shadow: 0 0 12px var(--accent);
    }

    /* ─── RATES SECTION ─── */
    .rates-section { background: transparent; }
    .rates-bento {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }
    .rate-card {
      background: linear-gradient(160deg, rgba(10,18,32,.96), rgba(4,8,16,.96));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px 22px;
      position: relative;
      overflow: hidden;
      transition: transform .26s cubic-bezier(.4,0,.2,1), box-shadow .26s, border-color .26s;
    }
    .rate-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity .26s;
    }
    .rate-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,.50), 0 0 36px rgba(15,104,234,.18);
      border-color: rgba(15,104,234,.55);
    }
    .rate-card:hover::before { opacity: 1; }
    .rate-card.gold-card {
      border-color: rgba(247,198,107,.35);
    }
    .rate-card.gold-card::before {
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .rate-card.gold-card:hover {
      border-color: rgba(247,198,107,.70);
      box-shadow: 0 24px 60px rgba(0,0,0,.50), 0 0 36px rgba(247,198,107,.18);
    }
    .rate-card.green-card { border-color: rgba(85,230,140,.28); }
    .rate-card.green-card::before {
      background: linear-gradient(to right, transparent, var(--green), transparent);
    }
    .rate-card.green-card:hover {
      border-color: rgba(85,230,140,.60);
      box-shadow: 0 24px 60px rgba(0,0,0,.50), 0 0 36px rgba(85,230,140,.14);
    }
    .rate-number {
      font-family: 'Cinzel', serif;
      font-size: 52px;
      font-weight: 900;
      line-height: 1;
      color: var(--accent2);
      text-shadow: 0 0 30px rgba(15,104,234,.40);
      margin-bottom: 4px;
    }
    .rate-card.gold-card .rate-number { color: var(--gold); text-shadow: 0 0 30px rgba(247,198,107,.40); }
    .rate-card.green-card .rate-number { color: var(--green); text-shadow: 0 0 30px rgba(85,230,140,.35); }
    .rate-label {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 10px;
    }
    .rate-note {
      font-size: 14px;
      color: rgba(170,196,230,.65);
      font-style: italic;
      line-height: 1.5;
    }

    /* weekend strip */
    .weekend-strip {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 22px 28px;
      background: linear-gradient(135deg, rgba(247,198,107,.10), rgba(247,198,107,.04));
      border: 1px solid rgba(247,198,107,.30);
      border-radius: var(--radius);
      flex-wrap: wrap;
    }
    .weekend-icon { font-size: 36px; filter: drop-shadow(0 0 12px rgba(247,198,107,.50)); }
    .weekend-body strong {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 16px;
      color: var(--gold2);
      margin-bottom: 4px;
    }
    .weekend-body span { font-size: 14px; color: rgba(247,198,107,.65); font-style: italic; }

    /* ─── MAPS ─── */
    .maps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 14px;
    }
    .map-card {
      background: linear-gradient(160deg, rgba(10,18,32,.96), rgba(4,8,16,.96));
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 20px 22px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: all .22s cubic-bezier(.4,0,.2,1);
      position: relative;
      overflow: hidden;
    }
    .map-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(15,104,234,.55), transparent);
      opacity: 0;
      transition: opacity .22s;
    }
    .map-card:hover {
      transform: translateY(-4px) translateX(3px);
      border-color: rgba(15,104,234,.55);
      box-shadow: 0 18px 48px rgba(0,0,0,.44), 0 0 24px rgba(15,104,234,.14);
    }
    .map-card:hover::before { opacity: 1; }
    .map-icon {
      font-size: 32px;
      width: 52px; height: 52px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(15,104,234,.08);
      border: 1px solid rgba(15,104,234,.22);
      border-radius: 12px;
      transition: all .22s;
    }
    .map-card:hover .map-icon {
      background: rgba(15,104,234,.15);
      border-color: rgba(15,104,234,.45);
      filter: drop-shadow(0 0 10px rgba(15,104,234,.35));
    }
    .map-name {
      font-family: 'Cinzel', serif;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 3px;
    }
    .map-connect {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: var(--muted);
      opacity: .70;
    }
    .map-tag {
      margin-left: auto;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 1.5px;
      color: rgba(95,161,255,.55);
      background: rgba(15,104,234,.07);
      border: 1px solid rgba(15,104,234,.18);
      padding: 4px 8px;
      border-radius: 6px;
      white-space: nowrap;
    }

    /* ─── FEATURES ─── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .feature-card {
      background: linear-gradient(160deg, rgba(10,18,32,.96), rgba(4,8,16,.96));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 30px 26px;
      transition: all .26s cubic-bezier(.4,0,.2,1);
      position: relative;
      overflow: hidden;
    }
    .feature-card::after {
      content: "";
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--line2), transparent);
      opacity: 0;
      transition: opacity .26s;
    }
    .feature-card:hover {
      transform: translateY(-3px);
      border-color: rgba(15,104,234,.55);
      box-shadow: 0 24px 60px rgba(0,0,0,.48), 0 0 32px rgba(15,104,234,.14);
    }
    .feature-card:hover::after { opacity: 1; }
    .feature-icon {
      font-size: 38px;
      margin-bottom: 18px;
      display: block;
      filter: drop-shadow(0 0 12px rgba(15,104,234,.40));
      transition: filter .26s;
    }
    .feature-card:hover .feature-icon {
      filter: drop-shadow(0 0 20px rgba(15,104,234,.65));
      transform: none;
    }
    .feature-title {
      font-family: 'Cinzel', serif;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: .5px;
    }
    .feature-body {
      font-size: 14.5px;
      color: var(--muted);
      line-height: 1.65;
    }
    .feature-body strong { color: var(--accent2); font-weight: 400; }

    /* ─── MODS ─── */
    .mods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
    }
    .mod-card {
      background: linear-gradient(160deg, rgba(10,18,32,.94), rgba(4,8,16,.94));
      border: 1px solid rgba(15,104,234,.20);
      border-radius: 14px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: all .2s ease;
    }
    .mod-card:hover {
      border-color: rgba(15,104,234,.50);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,.38), 0 0 18px rgba(15,104,234,.12);
    }
    .mod-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent2);
      box-shadow: 0 0 8px var(--accent2);
      flex-shrink: 0;
    }
    .mod-name {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: .8px;
      color: #d8e8ff;
    }
    .mod-desc {
      font-size: 11px;
      color: var(--muted);
      margin-top: 2px;
    }

    .festive-running-block {
      margin-top: 44px;
      width: 100%;
    }
    .festive-running-block .section-desc {
      margin-bottom: 24px;
    }
    .festive-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(280px, 1fr));
      gap: 12px 18px;
      width: 100%;
    }
    .festive-card {
      --festive-a: rgba(255,192,203,.28);
      --festive-b: rgba(255,215,0,.18);
      --festive-c: rgba(255,255,255,.10);
      position: relative;
      overflow: hidden;
      width: 100%;
      min-height: 72px;
      isolation: isolate;
    }
    .festive-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: -1;
      opacity: 0;
      background:
        radial-gradient(circle at 14% 18%, var(--festive-a), transparent 34%),
        radial-gradient(circle at 86% 82%, var(--festive-b), transparent 36%),
        linear-gradient(128deg, rgba(255,255,255,.04), transparent 35%, rgba(255,255,255,.08));
      transition: opacity .26s ease;
    }
    .festive-card::after {
      content: "";
      position: absolute;
      top: -120%;
      left: -30%;
      width: 42%;
      height: 320%;
      opacity: 0;
      transform: rotate(22deg);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
      transition: left .56s ease, opacity .24s ease;
      pointer-events: none;
    }
    .festive-card:hover {
      border-color: color-mix(in srgb, var(--festive-a) 78%, rgba(255,255,255,.38));
      box-shadow:
        0 14px 36px rgba(0,0,0,.40),
        0 0 24px var(--festive-a),
        inset 0 0 0 1px var(--festive-c);
    }
    .festive-card:hover::before { opacity: 1; }
    .festive-card:hover::after { left: 116%; opacity: 1; }
    .festive-card .mod-dot {
      background: color-mix(in srgb, var(--festive-a) 76%, #ffffff);
      box-shadow: 0 0 10px var(--festive-a), 0 0 18px var(--festive-b);
    }
    .festive-card:hover .mod-dot {
      transform: scale(1.18);
    }
    .festive-card .mod-dot { transition: transform .22s ease; }
    .festive-card .mod-name { color: #f5f8ff; }

    .festive-love { --festive-a: rgba(255,105,180,.38); --festive-b: rgba(255,92,138,.26); --festive-c: rgba(255,209,226,.16); }
    .festive-egg { --festive-a: rgba(255,220,112,.36); --festive-b: rgba(255,162,214,.24); --festive-c: rgba(255,244,206,.16); }
    .festive-summer { --festive-a: rgba(255,170,74,.38); --festive-b: rgba(255,89,89,.24); --festive-c: rgba(255,225,178,.16); }
    .festive-fear { --festive-a: rgba(181,104,255,.36); --festive-b: rgba(255,126,41,.26); --festive-c: rgba(227,202,255,.16); }
    .festive-turkey { --festive-a: rgba(211,142,64,.38); --festive-b: rgba(244,194,92,.24); --festive-c: rgba(255,227,181,.16); }
    .festive-winter { --festive-a: rgba(124,217,255,.36); --festive-b: rgba(122,168,224,.24); --festive-c: rgba(220,247,255,.18); }

    @supports not (color: color-mix(in srgb, #fff 50%, #000)) {
      .festive-card:hover { border-color: rgba(255,255,255,.34); }
      .festive-card .mod-dot { background: var(--accent2); }
    }

    /* ─── STATS STRIP ─── */
    .stats-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      margin: 60px 0;
    }
    .stat-cell {
      background: linear-gradient(160deg, rgba(10,18,32,.98), rgba(4,8,16,.98));
      padding: 28px 20px;
      text-align: center;
      transition: background .2s;
    }
    .stat-cell:hover { background: rgba(15,104,234,.07); }
    .stat-num {
      font-family: 'Cinzel', serif;
      font-size: 36px;
      font-weight: 900;
      color: var(--accent2);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ─── DINO HIGHLIGHT ─── */
    .dino-section {
      background: transparent;
    }
    .dino-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: start;
    }
    .dino-feature {
      background: linear-gradient(160deg, rgba(10,18,32,.96), rgba(4,8,16,.96));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: all .26s cubic-bezier(.4,0,.2,1);
    }
    .dino-feature::after {
      content: "";
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--line2), transparent);
      opacity: 0;
      transition: opacity .26s;
    }
    .dino-feature:hover {
      transform: translateY(-3px);
      border-color: rgba(15,104,234,.55);
      box-shadow: 0 24px 60px rgba(0,0,0,.48), 0 0 32px rgba(15,104,234,.14);
    }
    .dino-feature:hover::after { opacity: 1; }
    .dino-feature-title {
      font-family: 'Cinzel', serif;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .dino-feature-icon {
      font-size: 28px;
      filter: drop-shadow(0 0 12px rgba(15,104,234,.45));
    }
    .progression-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
    }
    .progression-grid .dino-feature { height: 100%; min-width: 0; }
    .progression-icon-frame {
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
      display: inline-grid;
      place-items: center;
      line-height: 1;
    }
    .progression-icon-frame img {
      width: 28px;
      height: 28px;
      display: block;
      object-fit: contain;
      transform-origin: center;
    }
    .progression-icon-discord img { transform: scale(1.7); }
    .progression-icon-rewards img { transform: scale(1.2); }
    .progression-icon-prestige img { transform: scale(1); }
    .xp-channel-link,
    .xp-channel-link:link,
    .xp-channel-link:visited,
    .xp-store-link,
    .xp-store-link:link,
    .xp-store-link:visited {
      color: inherit;
      text-decoration: underline;
      text-decoration-color: currentColor;
      text-underline-offset: 3px;
    }
    .xp-channel-link:hover,
    .xp-channel-link:focus-visible,
    .xp-store-link:hover,
    .xp-store-link:focus-visible {
      color: inherit;
      text-decoration-color: currentColor;
      text-decoration-thickness: 2px;
      outline: none;
    }
    .dino-feature-body {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.65;
    }
    .dino-feature-body strong { color: var(--accent2); font-weight: 400; }
    .dino-list {
      list-style: none;
      margin-top: 16px;
      display: grid;
      gap: 8px;
    }
    .dino-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
    }
    .dino-list li::before {
      content: "◆";
      color: var(--accent2);
      font-size: 8px;
      flex-shrink: 0;
      margin-top: 5px;
    }
    .dino-list li strong { color: #d8e8ff; font-weight: 400; }

    /* ─── QOL SECTION ─── */
    .qol-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }
    .qol-group-title {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(95,161,255,.65);
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(15,104,234,.20);
    }
    .qol-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.04);
    }
    .qol-item:last-child { border-bottom: 0; }
    .qol-item-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
    .qol-item-name {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      color: #d8e8ff;
      margin-bottom: 4px;
    }
    .qol-item-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55;
    }

    /* ─── CTA ─── */
    .cta-section {
      text-align: center;
      padding: 100px 0 120px;
    }
    .cta-box {
      max-width: 680px;
      margin: 0 auto;
      padding: 64px 48px;
      background: linear-gradient(160deg, rgba(10,18,32,.98), rgba(4,8,16,.98));
      border: 1px solid rgba(15,104,234,.35);
      border-radius: 28px;
      position: relative;
      overflow: hidden;
    }
    .cta-box::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(to right, transparent, var(--accent), var(--accent2), transparent);
    }
    .cta-box::after {
      content: "";
      position: absolute;
      bottom: -80px; left: 50%;
      transform: translateX(-50%);
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(15,104,234,.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-emoji { font-size: 56px; display: block; margin-bottom: 20px; filter: drop-shadow(0 0 18px rgba(15,104,234,.45)); }
    .cta-title {
      font-family: 'Cinzel', serif;
      font-size: 32px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 14px;
    }
    .cta-sub {
      font-size: 17px;
      color: var(--muted);
      font-style: italic;
      margin-bottom: 36px;
      line-height: 1.6;
    }
    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ─── FOOTER ─── */
    footer {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 28px 24px;
      border-top: 1px solid rgba(15,104,234,.14);
      color: var(--muted);
      font-size: 13px;
      font-style: italic;
    }
    footer strong {
      font-family: 'Cinzel', serif;
      color: rgba(95,161,255,.60);
      font-style: normal;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fade-up {
      from { opacity:0; transform: translateY(22px); }
      to   { opacity:1; transform: translateY(0); }
    }
    .ll-reveal {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .65s ease, transform .65s cubic-bezier(.4,0,.2,1);
    }
    html.ll-js .ll-reveal {
      opacity: 0;
      transform: translateY(28px);
    }
    html.ll-js .feature-card.ll-reveal,
    html.ll-js .dino-feature.ll-reveal {
      transform: none;
    }
    html.ll-js .ll-reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    html.ll-js .ll-reveal.visible.feature-card:hover,
    html.ll-js .ll-reveal.visible.dino-feature:hover {
      transform: translateY(-3px);
    }
    .ll-reveal-delay-1 { transition-delay: .08s; }
    .ll-reveal-delay-2 { transition-delay: .16s; }
    .ll-reveal-delay-3 { transition-delay: .24s; }
    .ll-reveal-delay-4 { transition-delay: .32s; }

    /* ─── LIVE SERVER STATUS ON HOME MAP CARDS ─── */
    .map-main { min-width: 0; flex: 1 1 auto; }
    .map-live { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; min-width: 104px; }
    .status-pill { display:inline-flex; align-items:center; gap:6px; font-family:'JetBrains Mono', monospace; font-size:10px; line-height:1; color:rgba(184,208,245,.72); border:1px solid rgba(15,104,234,.22); background:rgba(15,104,234,.06); border-radius:999px; padding:5px 8px; white-space:nowrap; }
    .status-dot { width:7px; height:7px; border-radius:50%; background:rgba(184,208,245,.55); box-shadow:0 0 8px rgba(184,208,245,.18); }
    .status-pill.online { color:#aef7c8; border-color:rgba(85,230,140,.35); background:rgba(85,230,140,.08); }
    .status-pill.online .status-dot { background:var(--green); box-shadow:0 0 10px rgba(85,230,140,.6); }
    .status-pill.offline { color:#ffb8c0; border-color:rgba(255,91,112,.32); background:rgba(255,91,112,.07); }
    .status-pill.offline .status-dot { background:#ff5b70; box-shadow:0 0 10px rgba(255,91,112,.55); }
    .status-pill.checking .status-dot { animation:status-pulse 1.35s ease-in-out infinite; }
    @keyframes status-pulse { 0%,100% { opacity:.35; transform:scale(.82); } 50% { opacity:1; transform:scale(1.12); } }
    .status-players { font-family:'JetBrains Mono', monospace; font-size:10px; color:rgba(122,168,224,.72); white-space:nowrap; }
    .map-card .map-tag { margin-left:0; }
    #ll-login-panel-slot.login-panel-slot { position:fixed; top:10px; right:12px; z-index:2000; width:auto; height:auto; }

    /* ─── V82 LOWER HOME REPAIR ─── */
    .also-running-block {
      margin-top: 44px;
      width: 100%;
    }
    .mods-grid.mods-grid-split {
      display: grid;
      grid-template-columns: repeat(2, minmax(280px, 1fr));
      gap: 12px 18px;
      width: 100%;
    }
    .mods-grid.mods-grid-split .mod-card {
      width: 100%;
      min-height: 62px;
    }
    @media (max-width: 760px) {
      .mods-grid.mods-grid-split,
      .festive-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .rates-bento       { grid-template-columns: repeat(2,1fr); }
      .features-grid     { grid-template-columns: repeat(2,1fr); }
      .dino-grid         { grid-template-columns: 1fr; }
      .qol-columns       { grid-template-columns: 1fr; }
      .stats-strip       { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 680px) {
      nav { padding: 12px 18px; }
      .nav-links a { font-size: 9px; padding: 6px 10px; letter-spacing: 1.5px; }
      section { padding: 64px 0; }
      .rates-bento    { grid-template-columns: repeat(2,1fr); }
      .features-grid  { grid-template-columns: 1fr; }
      .stats-strip    { grid-template-columns: repeat(2,1fr); }
      .cta-box        { padding: 40px 24px; }
      .btn            { padding: 13px 24px; font-size: 11px; }
      .map-card       { align-items: flex-start; }
      .map-live       { min-width: 92px; }
    }

    /* v72 account reserve and hover text boost */
    .topbar { padding-right: 218px !important; }
    .nav-links { margin-left: auto !important; justify-content: flex-end !important; }
    .section-label, .rate-label, .stat-label, .map-connect, .map-tag, .feature-body, .rate-note, .mod-desc, .qol-item-desc, footer, footer span, .pill, .btn, .nav-links a, small { font-weight: 800 !important; }
    @media (max-width: 980px) { .topbar { padding-right: 190px !important; } }
    @media (max-width: 760px) { .topbar { padding-right: 176px !important; padding-left: 14px !important; } .nav-links { gap: 5px !important; } }
  
    .hero-weekend-note { display: none !important; }
    .pill.rate-hover {
      position: relative;
      cursor: help;
    }
    .pill.rate-hover::after {
      content: attr(data-weekend-rate);
      position: absolute;
      left: 50%;
      bottom: calc(100% + 10px);
      transform: translate(-50%, 6px);
      opacity: 0;
      pointer-events: none;
      white-space: nowrap;
      min-width: max-content;
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid rgba(247,198,107,.42);
      background: linear-gradient(180deg, rgba(52,35,12,.98), rgba(20,15,8,.98));
      color: #ffe2a1;
      box-shadow: 0 12px 28px rgba(0,0,0,.28), 0 0 18px rgba(247,198,107,.12);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: opacity .16s ease, transform .16s ease;
      z-index: 20;
    }
    .pill.rate-hover:hover::after,
    .pill.rate-hover:focus-visible::after {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .plain-card-link {
      color: inherit;
      text-decoration: none;
    }
    .plain-card-link:hover {
      color: #9dccff;
      text-shadow: 0 0 14px rgba(15,104,234,.8);
    }
    .small-link {
      display: inline-block;
      margin-top: 10px;
      color: #9dccff;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: 12px;
    }


/* ─── V662 DISCORD XP UNIFORM HOVER MOTION ───
   Match Home: every interactive information block lifts 3px, and every
   emoji/icon inside those blocks uses the same 6px lift + 6deg tilt. */
body.ll-discord-xp-page .rate-card,
body.ll-discord-xp-page .dino-feature,
body.ll-discord-xp-page .mod-card,
body.ll-discord-xp-page .qol-item,
body.ll-discord-xp-page .weekend-strip {
  transition-property: transform, border-color, box-shadow, background, filter !important;
  transition-duration: .24s !important;
  transition-timing-function: cubic-bezier(.2,.85,.25,1) !important;
}

body.ll-discord-xp-page .rate-card:hover,
body.ll-discord-xp-page .dino-feature:hover,
body.ll-discord-xp-page .mod-card:hover,
body.ll-discord-xp-page .qol-item:hover,
body.ll-discord-xp-page .weekend-strip:hover,
body.ll-discord-xp-page .ll-reveal.visible.dino-feature:hover {
  transform: translateY(-3px) !important;
}

body.ll-discord-xp-page .dino-feature-icon,
body.ll-discord-xp-page .qol-item-icon,
body.ll-discord-xp-page .weekend-icon {
  transform: translateY(0) rotate(0deg) !important;
  transform-origin: 50% 50% !important;
  transition: transform .24s cubic-bezier(.2,.85,.25,1), filter .24s ease !important;
  will-change: transform;
}

body.ll-discord-xp-page .dino-feature:hover .dino-feature-icon,
body.ll-discord-xp-page .qol-item:hover .qol-item-icon,
body.ll-discord-xp-page .weekend-strip:hover .weekend-icon {
  transform: translateY(-6px) rotate(-6deg) !important;
  filter: drop-shadow(0 0 18px rgba(95,161,255,.62)) !important;
}
