:root {
      color-scheme: dark;
      --bg: #0b0b0d;
      --card: rgba(24, 16, 22, 0.9);
      --card-line: rgba(255, 255, 255, 0.08);
      --accent: #f97316;
      --accent-2: #ec4899;
      --muted: rgba(255, 255, 255, 0.72);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Noto Sans TC", sans-serif;
      background: radial-gradient(circle at top, rgba(79, 13, 23, 0.4), transparent 50%), var(--bg);
      color: #ffffff;
    }
    a { color: inherit; text-decoration: none; }
    .container {
      max-width: 980px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .topbar {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(11, 11, 13, 0.86);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
    }
    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 0;
    }
    .brand {
      font-weight: 800;
      font-size: 20px;
      letter-spacing: 0.6px;
    }
    .brand span { color: #f43f5e; }
    .nav-links {
      display: flex;
      gap: 16px;
      font-weight: 600;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.82);
    }
    .nav-links a { display: inline-flex; align-items: center; gap: 6px; }
    .nav-links a:hover { color: #ffffff; }
    .nav-icon { width: 16px; height: 16px; display: inline-block; }
    .breadcrumb {
      margin: 18px 0 10px;
      font-size: 12px;
      color: var(--muted);
    }
    .breadcrumb a { color: #93c5fd; text-decoration: underline; }
    .article {
      background: var(--card);
      border-radius: 20px;
      border: 1px solid var(--card-line);
      padding: 24px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    }
    .article h1 {
      margin-top: 0;
      font-size: 28px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      -webkit-background-clip: text;
      color: transparent;
    }
    .article-meta {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 14px;
    }
    .article-hero img {
      width: 100%;
      height: auto;
      max-height: 320px;
      object-fit: contain;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.04);
      padding: 10px;
      display: block;
    }
    .intro {
      color: var(--muted);
      line-height: 1.8;
    }
    .toc {
      margin: 16px 0 22px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px dashed rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.04);
      display: grid;
      gap: 6px;
      font-size: 13px;
    }
    .toc a { color: #93c5fd; text-decoration: underline; }
    .article h2 {
      margin-top: 22px;
      font-size: 18px;
    }
    .article p, .article li {
      color: var(--muted);
      line-height: 1.8;
    }
    .article ul { padding-left: 18px; }
    .inline-link { color: #93c5fd; text-decoration: underline; }
    .callout {
      margin: 18px 0;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.05);
    }
    .related {
      margin-top: 20px;
      display: grid;
      gap: 8px;
    }
    .cta {
      margin-top: 20px;
      display: inline-flex;
      align-items: center;
      padding: 8px 14px;
      border-radius: 999px;
      background: #ffffff;
      color: #0b0b0d;
      font-weight: 700;
    }
    @media (max-width: 720px) {
      .nav-links { display: none; }
      .article { padding: 18px; }
    }
  
  /* hh88-home-footer */
.footer {
        background: transparent;
        border-top-color: rgba(255, 255, 255, 0.08);
        color: rgba(226, 232, 240, 0.75);
      }

      .cosmic-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(8px);
        opacity: 0.45;
        pointer-events: none;
        z-index: 1;
      }

      .cosmic-orb.orb-1 {
        width: 220px;
        height: 220px;
        top: 120px;
        left: -60px;
        background: radial-gradient(circle at 30% 30%, rgba(255, 80, 110, 0.6), rgba(15, 15, 20, 0));
      }

      .cosmic-orb.orb-2 {
        width: 260px;
        height: 260px;
        top: 420px;
        right: -80px;
        background: radial-gradient(circle at 30% 30%, rgba(255, 45, 85, 0.5), rgba(10, 10, 16, 0));
      }

      .cosmic-orb.orb-3 {
        width: 180px;
        height: 180px;
        bottom: 220px;
        left: 15%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 120, 90, 0.4), rgba(10, 10, 16, 0));
      }

      .enter {
        opacity: 0;
        transform: translateY(16px);
        animation: fadeUp 0.9s ease forwards;
      }

      .enter.delay-1 {
        animation-delay: 0.15s;
      }

      .enter.delay-2 {
        animation-delay: 0.3s;
      }

      .enter.delay-3 {
        animation-delay: 0.45s;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
        align-items: center;
        position: relative;
        z-index: 1;
      }

      .hero-center {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-center .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
      }

      .hero-center .hero-ticker {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-center .tag-row {
        justify-content: center;
      }

      .hero-center p {
        margin-left: auto;
        margin-right: auto;
        max-width: 640px;
      }

      .hero h1 {
        font-size: 44px;
        line-height: 1.2;
        margin: 0 0 16px;
      }

      .headline-animate {
        background: linear-gradient(90deg, #ff8a00, #f472b6, #4f46e5, #06b6d4);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        background-size: 200% 200%;
        animation: textShift 6s ease infinite;
      }

      .hero p {
        color: var(--muted);
        margin: 0 0 20px;
        line-height: 1.7;
        font-size: 16px;
      }

      .hero-subline {
        display: inline-block;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(79, 70, 229, 0.12);
        color: #4338ca;
        font-weight: 600;
        margin-bottom: 18px;
        animation: float 4s ease-in-out infinite;
      }

      .hero-actions {
        display: flex;
        gap: 12px;
      }

      .btn {
        padding: 12px 20px;
        border-radius: 12px;
        background: linear-gradient(90deg, #ff8a00, #f59e0b);
        color: #0f172a;
        font-weight: 700;
        box-shadow: 0 12px 20px rgba(255, 138, 0, 0.2);
      }

      .btn.secondary {
        background: #fff;
        color: var(--text);
        border: 1px solid var(--border);
        box-shadow: none;
      }

      .btn.small {
        padding: 8px 14px;
        font-size: 14px;
      }

      .btn.ghost {
        background: #fff;
        border: 1px solid rgba(79, 70, 229, 0.2);
        color: #4f46e5;
      }

      .coin-arrow {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 18px;
        border-radius: 999px;
        border: none;
        background: linear-gradient(90deg, #facc15, #f59e0b);
        color: #1e293b;
        font-weight: 800;
        cursor: pointer;
        box-shadow: 0 14px 28px rgba(245, 158, 11, 0.25);
        overflow: hidden;
      }

      .coin-arrow .coin-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #fff3c4, #f59e0b);
        display: grid;
        place-items: center;
        font-size: 14px;
        box-shadow: inset 0 0 6px rgba(15, 23, 42, 0.2);
      }

      .coin-arrow .arrow {
        font-weight: 900;
      }

      .coin {
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #fff, #f59e0b);
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translate(var(--dx), var(--dy));
        animation: coinFly 700ms ease-out forwards;
        pointer-events: none;
      }

      .hero-video {
        width: 100%;
        height: 281px;
        border-radius: 22px;
        background: linear-gradient(120deg, #ffffff, #e0f2fe);
        position: relative;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .hero-video::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.6), transparent 55%),
          radial-gradient(circle at 80% 30%, rgba(245, 158, 11, 0.4), transparent 50%),
          radial-gradient(circle at 40% 80%, rgba(34, 197, 94, 0.35), transparent 45%);
        animation: shimmer 7s ease-in-out infinite;
      }

      .hero-video span {
        position: absolute;
        bottom: 16px;
        right: 18px;
        font-size: 12px;
        color: #64748b;
      }

      .hero-ticker {
        margin-top: 18px;
        overflow: hidden;
        border-radius: 999px;
        border: 1px dashed rgba(79, 70, 229, 0.25);
        background: #fff;
      }

      .tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
      }

      .tag-pill {
        padding: 8px 14px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 13px;
        color: #9f1239;
        background: linear-gradient(90deg, rgba(255, 138, 0, 0.15), rgba(239, 68, 68, 0.18));
        animation: pulse 2.8s ease-in-out infinite;
      }

      .tag-pill:nth-child(2) {
        animation-delay: 0.6s;
      }

      .tag-pill:nth-child(3) {
        animation-delay: 1.2s;
      }

      .floating-badges {
        position: absolute;
        inset: 0;
        pointer-events: none;
      }

      .badge-float {
        position: absolute;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(239, 68, 68, 0.2);
        font-weight: 700;
        color: #b91c1c;
        box-shadow: var(--shadow);
        animation: float 4.5s ease-in-out infinite;
      }

      .badge-float:nth-child(1) {
        top: 18px;
        left: 12%;
      }

      .badge-float:nth-child(2) {
        bottom: 18px;
        left: 52%;
        animation-delay: 1s;
      }

      .badge-float:nth-child(3) {
        top: 30px;
        right: 10%;
        animation-delay: 1.6s;
      }

      .ticker-track {
        display: flex;
        gap: 16px;
        padding: 10px 16px;
        white-space: nowrap;
        animation: ticker 12s linear infinite;
        color: #4338ca;
        font-weight: 600;
      }

      @keyframes shimmer {
        0% {
          transform: translateX(0);
        }
        50% {
          transform: translateX(-20px);
        }
        100% {
          transform: translateX(0);
        }
      }

      @keyframes textShift {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-6px);
        }
      }

      @keyframes ticker {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-40%);
        }
      }

      @keyframes coinFly {
        0% {
          opacity: 1;
        }
        100% {
          opacity: 0;
          transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) scale(0.8);
        }
      }

      @keyframes pulse {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-4px);
        }
      }

      @keyframes navGlow {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes marqueeLeft {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      @keyframes marqueeRight {
        0% {
          transform: translateX(-50%);
        }
        100% {
          transform: translateX(0);
        }
      }

      @keyframes portraitUp {
        0% {
          transform: translateY(0);
        }
        100% {
          transform: translateY(-50%);
        }
      }

      @keyframes portraitDown {
        0% {
          transform: translateY(-50%);
        }
        100% {
          transform: translateY(0);
        }
      }

      .section {
        padding: 70px 0;
        border-top: 1px solid var(--border);
      }

      .section.alt {
        background: linear-gradient(120deg, #f1f5ff, #ffffff);
      }

      .section h2 {
        margin: 0 0 12px;
        font-size: 30px;
      }

      .section-header {
        max-width: 720px;
        margin-bottom: 28px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      .section-header p {
        margin: 0;
      }

      .gradient-text {
        background: linear-gradient(90deg, #ff8a00, #f472b6, #4f46e5);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
      }

      .section-subtitle {
        color: #64748b;
        font-size: 16px;
        margin: 0 0 22px;
      }

      .intro-section .section-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 28px;
      }

      .intro-section {
        padding: 2px 0 8px;
      }

      .intro-section .section-header .gradient-text {
        background: linear-gradient(90deg, #60a5fa, #f43f5e);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        font-size: 46px;
        letter-spacing: 1px;
      }

      .title-ornament {
        position: relative;
        width: 320px;
        height: 14px;
      }

      .title-ornament::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 2px;
        transform: translateY(-50%);
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.12));
      }

      .title-ornament::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 14px;
        height: 14px;
        transform: translate(-50%, -50%) rotate(45deg);
        border: 2px solid rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
      }

      .intro-section .section-header .section-subtitle {
        max-width: 520px;
        margin: 0;
      }

      .intro-text {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        line-height: 1.9;
        color: rgba(226, 232, 240, 0.85);
        text-align: center;
        max-width: none;
        margin: 0;
        background-image: linear-gradient(90deg, #60a5fa, #f43f5e);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .intro-text strong {
        color: inherit;
      }

      .intro-text a {
        color: inherit;
        text-decoration: underline;
        text-underline-offset: 4px;
      }

      .intro-text p {
        color: inherit;
        margin: 0 0 16px;
      }

      .intro-text p:last-child {
        margin-bottom: 0;
      }

      .intro-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        gap: 40px;
        align-items: flex-start;
        max-width: 1100px;
        margin: 0 auto;
      }

      .intro-media {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        align-self: flex-start;
        justify-self: end;
      }

      .intro-media img {
        width: 100%;
        max-width: 300px;
        height: auto;
        display: block;
        margin: -110px 0 4px;
        filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
      }

      .intro-caption {
        font-size: 14px;
        color: rgba(226, 232, 240, 0.8);
        text-align: center;
      }

      .game-marquee {
        display: grid;
        gap: 16px;
        overflow: hidden;
      }

      .marquee-row {
        overflow: hidden;
      }

      .marquee-track {
        display: flex;
        gap: 14px;
        width: max-content;
        animation: marqueeLeft 18s linear infinite;
      }

      .marquee-row.reverse .marquee-track {
        animation-name: marqueeRight;
      }

      .game-card {
        width: 182.55px;
        height: 213.08px;
        background: linear-gradient(150deg, rgba(203, 215, 255, 0.12), rgba(47, 63, 99, 0.35));
        border-radius: 16px;
        padding: 6px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      }

      .game-card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
        border-color: rgba(255, 255, 255, 0.35);
      }

      .game-card:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
      }

      .game-card:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.6);
        outline-offset: 2px;
      }

      .game-thumb {
        width: 170.04px;
        height: 170.04px;
        border-radius: 12px;
        background: linear-gradient(140deg, rgba(96, 165, 250, 0.25), rgba(244, 63, 94, 0.25));
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.35);
      }

      .game-thumb::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--thumb);
        background-size: cover;
        background-position: center;
        filter: saturate(1.05);
        opacity: 0.9;
      }

      .game-thumb::after {
        content: "";
        position: absolute;
        inset: 8px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        pointer-events: none;
      }

      .game-card strong {
        color: #ffffff;
        font-size: 11px;
        line-height: 1.2;
      }

      .game-card .article-meta {
        color: rgba(226, 232, 240, 0.75);
        font-size: 9px;
        line-height: 1.2;
      }

      .article-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        align-items: center;
        margin-bottom: 16px;
      }

      .article-nav a {
        padding: 0;
        border: none;
        background: transparent;
        font-weight: 700;
        color: #e2e8f0;
        letter-spacing: 0.2px;
        box-shadow: none;
        transition: color 0.2s ease, transform 0.2s ease;
      }

      .article-nav a:hover,
      .article-nav a:focus-visible {
        color: #fef9c3;
        transform: translateY(-1px);
      }

      .article-nav a:active {
        transform: translateY(0);
      }

      .article-list {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
      }

      .article-carousel {
        position: relative;
      }

      .article-arrow {
        position: absolute;
        top: 50%;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        background: rgba(15, 23, 42, 0.65);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transform: translateY(-50%);
        transition: transform 0.2s ease, background 0.2s ease;
        z-index: 2;
      }

      .article-arrow.prev {
        left: -16px;
      }

      .article-arrow.next {
        right: -16px;
      }

      .article-arrow:hover,
      .article-arrow:focus-visible {
        background: rgba(15, 23, 42, 0.85);
        transform: translateY(-50%) scale(1.06);
      }

      .article-arrow:active {
        transform: translateY(-50%) scale(0.96);
      }

      .article-arrow svg {
        width: 18px;
        height: 18px;
        fill: #fff;
      }

      .article-card {
        background: #fff;
        border-radius: 16px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        min-height: 130px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        will-change: transform;
      }

      .article-card.is-hidden {
        display: none;
      }

      .article-card.is-active {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 22px 36px rgba(15, 23, 42, 0.22);
        z-index: 1;
      }

      .article-card.is-active:hover {
        transform: translateY(-5px) scale(1.05);
      }

      .article-card:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
      }

      .article-thumb {
        width: 100%;
        height: 120px;
        overflow: hidden;
        background: #f8fafc;
      }
  .article-thumb {
    height: 160px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .article-body {
    padding: 10px 12px 12px;
    display: grid;
    gap: 4px;
  }
  .article-body .section-subtitle {
    font-size: 12px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
.article-card strong {
        font-size: 14px;
        line-height: 1.2;
      }

      .article-card .article-meta {
        font-size: 11px;
      }

      .article-card .section-subtitle {
        margin: 0;
        font-size: 12px;
        line-height: 1.4;
      }
      .article-meta {
        font-size: 12px;
        color: #64748b;
      }

      .article-actions {
        margin-top: 18px;
        display: flex;
        justify-content: center;
      }

      .portrait-wall {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        height: 440px;
        overflow: hidden;
      }

      .portrait-column {
        overflow: hidden;
      }

      .portrait-track {
        display: grid;
        gap: 16px;
        animation: portraitUp 14s linear infinite;
      }

      .portrait-column.reverse .portrait-track {
        animation-name: portraitDown;
      }

      .portrait-card {
        position: relative;
        border-radius: 16px;
        border: 1px solid rgba(15, 23, 42, 0.1);
        background: #ffffff;
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 0;
        text-align: center;
        cursor: pointer;
        font: inherit;
        appearance: none;
        color: #000;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .portrait-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
      }

      .portrait-card:focus-visible {
        outline: 2px solid rgba(59, 130, 246, 0.6);
        outline-offset: 2px;
      }

      .portrait-card:active {
        transform: translateY(-1px) scale(0.99);
      }

      .portrait-card.is-expanded {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 22px 36px rgba(15, 23, 42, 0.22);
        z-index: 2;
      }

      .portrait-photo {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        background: #f8fafc;
      }

      .portrait-info {
        padding: 6px 10px 8px;
        display: grid;
        gap: 2px;
        justify-items: center;
        color: #ffffff;
        opacity: 1;
        background: linear-gradient(180deg, #b60d18 0%, #6a0d13 58%, #1c0508 100%);
        border-radius: 0 0 16px 16px;
      }

      .portrait-info strong {
        font-size: 15px;
        color: #ffffff !important;
      }

      .player-snippet {
        font-size: 13px;
        color: #ffffff !important;
        opacity: 0.9;
      }

      .player-detail {
        display: none;
        font-size: 12px;
        color: #ffffff !important;
        opacity: 0.85;
      }

      .sponsor-links a {
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
      }

      .sponsor-links a:nth-of-type(1) {
        color: #f97316;
      }

      .sponsor-links a:nth-of-type(2) {
        color: #22c55e;
      }

      .sponsor-links a:nth-of-type(3) {
        color: #3b82f6;
      }

      .portrait-card.is-expanded .player-snippet {
        display: none;
      }

      .portrait-card.is-expanded .player-detail {
        display: block;
      }

      .portrait-card strong {
        font-size: 12px;
        line-height: 1.2;
        color: #f8fafc;
      }

      .portrait-card small {
        font-size: 10px;
        line-height: 1.2;
        color: rgba(226, 232, 240, 0.75);
      }

      .logo-strip {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
      }

      .logo-chip {
        background: linear-gradient(135deg, #4c0b14, #7a0f1b, #9f1239);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 14px;
        padding: 12px;
        text-align: center;
        font-weight: 700;
        color: #ffffff;
        box-shadow: 0 16px 28px rgba(15, 23, 42, 0.25);
        display: block;
        transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
      }

      .logo-chip:hover,
      .logo-chip:focus-visible {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 20px 34px rgba(15, 23, 42, 0.3);
        filter: saturate(1.08);
      }

      .logo-chip:active {
        transform: translateY(0) scale(0.98);
      }

      .logo-chip small {
        display: block;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.82);
        margin-top: 6px;
      }

      .trust-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 24px;
        align-items: center;
      }

      .trust-media {
        display: grid;
        gap: 14px;
      }

      .trust-license {
        width: 50%;
        max-width: 100%;
        height: auto;
        border-radius: 16px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
        display: block;
        margin: 0 auto;
      }

      .trust-badges {
        margin-top: 16px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
      }

      .trust-badges img {
        height: 42px;
        width: auto;
        display: block;
        background: transparent;
        border-radius: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
      }

      .trust-badge-item {
        display: grid;
        gap: 8px;
        align-items: start;
        justify-items: start;
      }

      .trust-badge-text {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        color: #ffffff;
      }

      .trust-media .trust-badge-text {
        margin-top: 8px;
        text-align: center;
      }

      .trust-section,
      .trust-section * {
        color: #ffffff !important;
      }

      .trust-section a {
        color: #2563eb !important;
      }

      .trust-section .gradient-text {
        background: linear-gradient(90deg, #ff8a00, #f472b6, #4f46e5);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent !important;
        -webkit-text-fill-color: transparent !important;
      }

      .trust-text {
        margin: 0 0 12px;
        color: #1f2937;
        line-height: 1.8;
      }

      .trust-links a {
        color: #2563eb;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
      }

      .trust-points {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
        color: #334155;
      }

      .trust-points li {
        padding-left: 12px;
        position: relative;
      }

      .trust-points li::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ef4444;
        position: absolute;
        left: 0;
        top: 9px;
      }

      .partner-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin: 12px 0 18px;
      }

      .partner-logo {
        height: 46px;
        width: auto;
        display: inline-block;
      }

      .partner-banner {
        display: block;
        width: min(100%, 900px);
        height: auto;
        margin: 6px auto 0;
        border-radius: 12px;
        box-shadow: var(--shadow);
      }

      .partner-x {
        font-size: 18px;
        color: #ffffff;
      }

      .leicester-logo {
        height: 46px;
        width: 46px;
      }

      .partner-subtitle a {
        color: #2563eb;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
      }

      .cert-bar {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
      }

      .cert-item {
        background: #fff;
        border-radius: 16px;
        padding: 16px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .cert-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(239, 68, 68, 0.12);
        display: grid;
        place-items: center;
        font-weight: 800;
        color: #b91c1c;
      }

      .seal-row {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
      }

      .seal {
        border-radius: 999px;
        padding: 12px;
        text-align: center;
        background: linear-gradient(120deg, #fff7ed, #fee2e2);
        border: 1px dashed rgba(239, 68, 68, 0.35);
        font-weight: 700;
        color: #9f1239;
      }

      .quote-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      .quote-card {
        background: #fff;
        border-radius: 20px;
        padding: 20px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: 170px;
      }

      .quote-card::before {
        content: "“";
        position: absolute;
        top: 10px;
        right: 18px;
        font-size: 36px;
        color: rgba(239, 68, 68, 0.2);
      }

      .quote-card span {
        display: block;
        margin-top: 14px;
        font-weight: 700;
        color: #b91c1c;
      }

      .social-video-block {
        display: flex;
        gap: 24px;
        align-items: center;
        padding: 24px;
        border-radius: 24px;
        background: linear-gradient(135deg, #2d0c12, #4a141a 55%, #6b1e28);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
        color: #ffffff;
      }

      .section.social-proof .section-subtitle {
        color: #ffffff;
      }

      .video-embed {
        flex: 1;
        min-width: 0;
        max-width: 520px;
        width: 100%;
      }

      .ytp-cued-thumbnail-overlay-image {
        width: 100%;
      }

      .video-frame {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        border: 0;
        border-radius: 16px;
        background: transparent;
        display: block;
        object-fit: contain;
      }

      .video-copy {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .video-copy h3 {
        margin: 0;
        font-size: 22px;
      }

      .video-copy p {
        margin: 0;
        color: #ffffff;
        line-height: 1.7;
      }

      .video-highlights {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 8px;
        color: #ffffff;
      }

      .video-note {
        margin: 0;
        font-size: 13px;
        color: #ffffff;
      }

      .social-video-block .link-accent {
        color: #93c5fd;
      }

      .chip-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border-radius: 999px;
        background: #0f172a;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
      }

      .chip-link.light {
        background: #ffffff;
        color: #0f172a;
        border: 1px solid rgba(15, 23, 42, 0.08);
      }


      .link-accent {
        color: #2563eb;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
      }


      .impact-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 24px;
      }

      .impact-panel {
        background: linear-gradient(135deg, #2d0c12, #4a141a 55%, #6b1e28);
        border-radius: 24px;
        padding: 24px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
        display: grid;
        gap: 16px;
        color: #ffffff;
      }

      .impact-head {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .impact-icon {
        width: 34px;
        height: 34px;
      }

      .impact-kicker {
        font-size: 13px;
        font-weight: 700;
        color: #ffffff;
      }

      .impact-panel h3 {
        margin: 6px 0 0;
        font-size: 22px;
      }

      .impact-panel p {
        margin: 0;
        color: #ffffff;
        line-height: 1.7;
      }

      .impact-media {
        margin: 0;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow);
        background: rgba(15, 23, 42, 0.12);
      }

      .impact-media img {
        display: block;
        width: 100%;
        height: 220px;
        object-fit: cover;
      }

      .impact-media figcaption {
        padding: 10px 12px 12px;
        font-size: 13px;
        color: #ffffff;
      }

      .impact-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .impact-stack {
        display: grid;
        gap: 16px;
      }

      .impact-step {
        background: linear-gradient(135deg, #2d0c12, #4a141a 55%, #6b1e28);
        border-radius: 18px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
        display: flex;
        gap: 12px;
        align-items: flex-start;
        color: #ffffff;
      }

      .impact-step strong {
        display: block;
        margin-bottom: 6px;
        color: #ffffff;
      }

      .impact-step p {
        margin: 0;
        color: #ffffff;
        line-height: 1.6;
      }

      .seo-framework {
        background: #fff;
        border-radius: 24px;
        padding: 26px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
      }

      .seo-columns {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      .seo-list a {
        display: inline-flex;
        padding: 6px 0;
        color: #1f2937;
        font-weight: 600;
      }

      .seo-list a:hover {
        color: #b91c1c;
      }

      .section p {
        color: var(--muted);
        margin: 0 0 24px;
      }

      .section.social-proof p {
        color: #ffffff;
      }

      .section .impact-panel p,
      .section .impact-step p,
      .section .impact-media figcaption,
      .section .impact-kicker {
        color: #ffffff;
      }

      .section-header p,
      .section-header .section-subtitle {
        margin: 0;
      }

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

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

      .pill-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
      }

      .pill {
        padding: 6px 12px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 13px;
        color: #4f46e5;
        background: rgba(79, 70, 229, 0.12);
      }

      .icon-slot {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 2px dashed rgba(79, 70, 229, 0.35);
        display: grid;
        place-items: center;
        font-size: 12px;
        color: #64748b;
        margin-bottom: 12px;
        background: rgba(79, 70, 229, 0.05);
      }

      .card {
        background: var(--card);
        border: 1px solid var(--border);
        padding: 22px;
        border-radius: 18px;
        transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: 170px;
      }

      .card:hover {
        transform: translateY(-8px) scale(1.01);
        border-color: rgba(79, 70, 229, 0.3);
        box-shadow: 0 24px 40px rgba(79, 70, 229, 0.18);
      }

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

      .layer-card {
        position: relative;
        background: #fff;
        border-radius: 20px;
        padding: 22px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: 170px;
      }

      .layer-card::before {
        content: "";
        position: absolute;
        inset: 8px;
        border-radius: 16px;
        border: 1px dashed rgba(239, 68, 68, 0.25);
        pointer-events: none;
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 999px;
        background: rgba(79, 70, 229, 0.12);
        color: #4338ca;
        margin-bottom: 10px;
        font-weight: 600;
      }

      .stats {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
      }

      .stat {
        background: linear-gradient(140deg, #ffffff, #e0f2fe);
        border: 1px solid var(--border);
        padding: 18px;
        border-radius: 14px;
        text-align: center;
        box-shadow: var(--shadow);
      }

      .stat strong {
        display: block;
        font-size: 24px;
        color: #0ea5e9;
      }

      .brand-wall {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid var(--border);
        background: linear-gradient(140deg, #ffffff, #fef3c7, #dbeafe);
        box-shadow: var(--shadow);
        height: 320px;
      }

      .brand-wall-track {
        column-count: 4;
        column-gap: 18px;
        padding: 20px;
        animation: wallScroll 14s linear infinite;
      }

      .brand-card {
        break-inside: avoid;
        margin-bottom: 18px;
        border-radius: 18px;
        background: #fff;
        padding: 16px;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
        border: 1px solid rgba(15, 23, 42, 0.06);
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .brand-card .photo {
        width: 100%;
        height: var(--h, 120px);
        border-radius: 14px;
        background: linear-gradient(120deg, #fde68a, #93c5fd);
      }

      .brand-card small {
        color: var(--muted);
      }

      .tab-shell {
        border-radius: 24px;
        background: #fff;
        padding: 24px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .tab-controls {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
      }

      .tab-button {
        border: 1px solid rgba(79, 70, 229, 0.2);
        background: #fff;
        padding: 10px 16px;
        border-radius: 999px;
        font-weight: 600;
        color: #4f46e5;
        cursor: pointer;
      }

      .tab-button.active {
        background: linear-gradient(90deg, #ff8a00, #f472b6);
        color: #0f172a;
        border-color: transparent;
      }

      .tab-panel {
        display: none;
      }

      .tab-panel.active {
        display: block;
      }

      .media-card {
        background: linear-gradient(120deg, #fef3c7, #dbeafe);
        border-radius: 16px;
        padding: 18px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        min-height: 140px;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .media-placeholder {
        flex: 1;
        border-radius: 12px;
        background: linear-gradient(120deg, #fde68a, #93c5fd);
      }

      .cta-banner {
        margin-top: 24px;
        padding: 20px;
        border-radius: 18px;
        background: linear-gradient(120deg, #fff7ed, #e0e7ff);
        border: 1px solid rgba(15, 23, 42, 0.08);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .cta-banner strong {
        font-size: 18px;
      }

      @keyframes wallScroll {
        0% {
          transform: translateY(0);
        }
        100% {
          transform: translateY(-45%);
        }
      }

      .timeline {
        display: grid;
        gap: 16px;
      }

      .timeline-item {
        border-left: 4px solid var(--accent-4);
        padding-left: 16px;
      }

      .faq details {
        background: linear-gradient(135deg, #2d0c12, #3d131a 55%, #4a1721);
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 16px 18px;
        border-radius: 12px;
        margin-bottom: 12px;
        box-shadow: var(--shadow);
        color: #f8fafc;
      }

      .faq summary {
        color: #ffffff;
      }

      .faq p {
        margin: 8px 0 0;
        color: rgba(248, 250, 252, 0.82);
        line-height: 1.7;
      }

      .faq a {
        color: #93c5fd;
        text-decoration: underline;
        text-underline-offset: 3px;
      }

      .footer {
        padding: 48px 0 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(226, 232, 240, 0.88);
        font-size: 14px;
        background: #0b0f18;
      }

      .footer-top {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
        gap: 32px;
      }

      .footer-brand {
        display: grid;
        gap: 16px;
      }

      .footer-logo {
        height: 36px;
        width: auto;
      }

      .footer-brand p {
        margin: 0;
        line-height: 1.7;
        color: rgba(226, 232, 240, 0.78);
      }

      .footer-badge-text {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        align-items: center;
        color: rgba(248, 250, 252, 0.88);
        font-size: 13px;
        font-weight: 600;
      }

      .footer-cert-logos {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
      }

      .footer-cert-logo {
        width: 120px;
        height: auto;
        display: inline-block;
      }

      .footer-badge-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .footer-badge-icon {
        width: 18px;
        height: 18px;
        display: inline-block;
      }

      @media (max-width: 640px) {
        .footer-badge {
          padding: 6px 12px;
          border-radius: 999px;
          font-size: 12px;
        }
      }

      .footer-columns {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 32px;
      }

      .footer-title {
        margin: 0 0 10px;
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
      }

      .footer-list {
        display: grid;
        gap: 8px;
      }

      .footer-list a {
        color: rgba(226, 232, 240, 0.78);
        font-size: 13px;
      }

      .footer-list a:hover {
        color: #ffffff;
      }

      .footer-bottom {
        margin-top: 14px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
        text-align: center;
      }

      .footer-disclaimer {
        max-width: 720px;
        display: grid;
        gap: 4px;
        color: rgba(226, 232, 240, 0.72);
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
      }

      .footer-legal


  /* hh88-live-article */
  body {
    background: radial-gradient(1200px 600px at 10% 20%, rgba(150, 20, 40, 0.35), transparent 60%),
      radial-gradient(900px 480px at 90% 10%, rgba(120, 10, 30, 0.25), transparent 55%),
      linear-gradient(180deg, #050505 0%, #12070e 45%, #1a050a 100%);
    font-family: "Inter", "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  }
  .article h1,
  .article h2 {
    font-family: "Noto Serif TC", serif;
  }
  .cta {
    background: linear-gradient(90deg, #ef4444, #b91c1c);
    border: none;
    color: #ffffff;
  }
  .cta:hover {
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.3);
  }

  /* hh88-home-footer */
.footer {
        background: transparent;
        border-top-color: rgba(255, 255, 255, 0.08);
        color: rgba(226, 232, 240, 0.75);
      }

      .cosmic-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(8px);
        opacity: 0.45;
        pointer-events: none;
        z-index: 1;
      }

      .cosmic-orb.orb-1 {
        width: 220px;
        height: 220px;
        top: 120px;
        left: -60px;
        background: radial-gradient(circle at 30% 30%, rgba(255, 80, 110, 0.6), rgba(15, 15, 20, 0));
      }

      .cosmic-orb.orb-2 {
        width: 260px;
        height: 260px;
        top: 420px;
        right: -80px;
        background: radial-gradient(circle at 30% 30%, rgba(255, 45, 85, 0.5), rgba(10, 10, 16, 0));
      }

      .cosmic-orb.orb-3 {
        width: 180px;
        height: 180px;
        bottom: 220px;
        left: 15%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 120, 90, 0.4), rgba(10, 10, 16, 0));
      }

      .enter {
        opacity: 0;
        transform: translateY(16px);
        animation: fadeUp 0.9s ease forwards;
      }

      .enter.delay-1 {
        animation-delay: 0.15s;
      }

      .enter.delay-2 {
        animation-delay: 0.3s;
      }

      .enter.delay-3 {
        animation-delay: 0.45s;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
        align-items: center;
        position: relative;
        z-index: 1;
      }

      .hero-center {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-center .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
      }

      .hero-center .hero-ticker {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-center .tag-row {
        justify-content: center;
      }

      .hero-center p {
        margin-left: auto;
        margin-right: auto;
        max-width: 640px;
      }

      .hero h1 {
        font-size: 44px;
        line-height: 1.2;
        margin: 0 0 16px;
      }

      .headline-animate {
        background: linear-gradient(90deg, #ff8a00, #f472b6, #4f46e5, #06b6d4);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        background-size: 200% 200%;
        animation: textShift 6s ease infinite;
      }

      .hero p {
        color: var(--muted);
        margin: 0 0 20px;
        line-height: 1.7;
        font-size: 16px;
      }

      .hero-subline {
        display: inline-block;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(79, 70, 229, 0.12);
        color: #4338ca;
        font-weight: 600;
        margin-bottom: 18px;
        animation: float 4s ease-in-out infinite;
      }

      .hero-actions {
        display: flex;
        gap: 12px;
      }

      .btn {
        padding: 12px 20px;
        border-radius: 12px;
        background: linear-gradient(90deg, #ff8a00, #f59e0b);
        color: #0f172a;
        font-weight: 700;
        box-shadow: 0 12px 20px rgba(255, 138, 0, 0.2);
      }

      .btn.secondary {
        background: #fff;
        color: var(--text);
        border: 1px solid var(--border);
        box-shadow: none;
      }

      .btn.small {
        padding: 8px 14px;
        font-size: 14px;
      }

      .btn.ghost {
        background: #fff;
        border: 1px solid rgba(79, 70, 229, 0.2);
        color: #4f46e5;
      }

      .coin-arrow {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 18px;
        border-radius: 999px;
        border: none;
        background: linear-gradient(90deg, #facc15, #f59e0b);
        color: #1e293b;
        font-weight: 800;
        cursor: pointer;
        box-shadow: 0 14px 28px rgba(245, 158, 11, 0.25);
        overflow: hidden;
      }

      .coin-arrow .coin-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #fff3c4, #f59e0b);
        display: grid;
        place-items: center;
        font-size: 14px;
        box-shadow: inset 0 0 6px rgba(15, 23, 42, 0.2);
      }

      .coin-arrow .arrow {
        font-weight: 900;
      }

      .coin {
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #fff, #f59e0b);
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translate(var(--dx), var(--dy));
        animation: coinFly 700ms ease-out forwards;
        pointer-events: none;
      }

      .hero-video {
        width: 100%;
        height: 281px;
        border-radius: 22px;
        background: linear-gradient(120deg, #ffffff, #e0f2fe);
        position: relative;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .hero-video::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.6), transparent 55%),
          radial-gradient(circle at 80% 30%, rgba(245, 158, 11, 0.4), transparent 50%),
          radial-gradient(circle at 40% 80%, rgba(34, 197, 94, 0.35), transparent 45%);
        animation: shimmer 7s ease-in-out infinite;
      }

      .hero-video span {
        position: absolute;
        bottom: 16px;
        right: 18px;
        font-size: 12px;
        color: #64748b;
      }

      .hero-ticker {
        margin-top: 18px;
        overflow: hidden;
        border-radius: 999px;
        border: 1px dashed rgba(79, 70, 229, 0.25);
        background: #fff;
      }

      .tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
      }

      .tag-pill {
        padding: 8px 14px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 13px;
        color: #9f1239;
        background: linear-gradient(90deg, rgba(255, 138, 0, 0.15), rgba(239, 68, 68, 0.18));
        animation: pulse 2.8s ease-in-out infinite;
      }

      .tag-pill:nth-child(2) {
        animation-delay: 0.6s;
      }

      .tag-pill:nth-child(3) {
        animation-delay: 1.2s;
      }

      .floating-badges {
        position: absolute;
        inset: 0;
        pointer-events: none;
      }

      .badge-float {
        position: absolute;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(239, 68, 68, 0.2);
        font-weight: 700;
        color: #b91c1c;
        box-shadow: var(--shadow);
        animation: float 4.5s ease-in-out infinite;
      }

      .badge-float:nth-child(1) {
        top: 18px;
        left: 12%;
      }

      .badge-float:nth-child(2) {
        bottom: 18px;
        left: 52%;
        animation-delay: 1s;
      }

      .badge-float:nth-child(3) {
        top: 30px;
        right: 10%;
        animation-delay: 1.6s;
      }

      .ticker-track {
        display: flex;
        gap: 16px;
        padding: 10px 16px;
        white-space: nowrap;
        animation: ticker 12s linear infinite;
        color: #4338ca;
        font-weight: 600;
      }

      @keyframes shimmer {
        0% {
          transform: translateX(0);
        }
        50% {
          transform: translateX(-20px);
        }
        100% {
          transform: translateX(0);
        }
      }

      @keyframes textShift {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-6px);
        }
      }

      @keyframes ticker {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-40%);
        }
      }

      @keyframes coinFly {
        0% {
          opacity: 1;
        }
        100% {
          opacity: 0;
          transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) scale(0.8);
        }
      }

      @keyframes pulse {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-4px);
        }
      }

      @keyframes navGlow {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes marqueeLeft {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      @keyframes marqueeRight {
        0% {
          transform: translateX(-50%);
        }
        100% {
          transform: translateX(0);
        }
      }

      @keyframes portraitUp {
        0% {
          transform: translateY(0);
        }
        100% {
          transform: translateY(-50%);
        }
      }

      @keyframes portraitDown {
        0% {
          transform: translateY(-50%);
        }
        100% {
          transform: translateY(0);
        }
      }

      .section {
        padding: 70px 0;
        border-top: 1px solid var(--border);
      }

      .section.alt {
        background: linear-gradient(120deg, #f1f5ff, #ffffff);
      }

      .section h2 {
        margin: 0 0 12px;
        font-size: 30px;
      }

      .section-header {
        max-width: 720px;
        margin-bottom: 28px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      .section-header p {
        margin: 0;
      }

      .gradient-text {
        background: linear-gradient(90deg, #ff8a00, #f472b6, #4f46e5);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
      }

      .section-subtitle {
        color: #64748b;
        font-size: 16px;
        margin: 0 0 22px;
      }

      .intro-section .section-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 28px;
      }

      .intro-section {
        padding: 2px 0 8px;
      }

      .intro-section .section-header .gradient-text {
        background: linear-gradient(90deg, #60a5fa, #f43f5e);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        font-size: 46px;
        letter-spacing: 1px;
      }

      .title-ornament {
        position: relative;
        width: 320px;
        height: 14px;
      }

      .title-ornament::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 2px;
        transform: translateY(-50%);
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.12));
      }

      .title-ornament::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 14px;
        height: 14px;
        transform: translate(-50%, -50%) rotate(45deg);
        border: 2px solid rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
      }

      .intro-section .section-header .section-subtitle {
        max-width: 520px;
        margin: 0;
      }

      .intro-text {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        line-height: 1.9;
        color: rgba(226, 232, 240, 0.85);
        text-align: center;
        max-width: none;
        margin: 0;
        background-image: linear-gradient(90deg, #60a5fa, #f43f5e);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .intro-text strong {
        color: inherit;
      }

      .intro-text a {
        color: inherit;
        text-decoration: underline;
        text-underline-offset: 4px;
      }

      .intro-text p {
        color: inherit;
        margin: 0 0 16px;
      }

      .intro-text p:last-child {
        margin-bottom: 0;
      }

      .intro-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        gap: 40px;
        align-items: flex-start;
        max-width: 1100px;
        margin: 0 auto;
      }

      .intro-media {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        align-self: flex-start;
        justify-self: end;
      }

      .intro-media img {
        width: 100%;
        max-width: 300px;
        height: auto;
        display: block;
        margin: -110px 0 4px;
        filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
      }

      .intro-caption {
        font-size: 14px;
        color: rgba(226, 232, 240, 0.8);
        text-align: center;
      }

      .game-marquee {
        display: grid;
        gap: 16px;
        overflow: hidden;
      }

      .marquee-row {
        overflow: hidden;
      }

      .marquee-track {
        display: flex;
        gap: 14px;
        width: max-content;
        animation: marqueeLeft 18s linear infinite;
      }

      .marquee-row.reverse .marquee-track {
        animation-name: marqueeRight;
      }

      .game-card {
        width: 182.55px;
        height: 213.08px;
        background: linear-gradient(150deg, rgba(203, 215, 255, 0.12), rgba(47, 63, 99, 0.35));
        border-radius: 16px;
        padding: 6px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      }

      .game-card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
        border-color: rgba(255, 255, 255, 0.35);
      }

      .game-card:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
      }

      .game-card:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.6);
        outline-offset: 2px;
      }

      .game-thumb {
        width: 170.04px;
        height: 170.04px;
        border-radius: 12px;
        background: linear-gradient(140deg, rgba(96, 165, 250, 0.25), rgba(244, 63, 94, 0.25));
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.35);
      }

      .game-thumb::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: var(--thumb);
        background-size: cover;
        background-position: center;
        filter: saturate(1.05);
        opacity: 0.9;
      }

      .game-thumb::after {
        content: "";
        position: absolute;
        inset: 8px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        pointer-events: none;
      }

      .game-card strong {
        color: #ffffff;
        font-size: 11px;
        line-height: 1.2;
      }

      .game-card .article-meta {
        color: rgba(226, 232, 240, 0.75);
        font-size: 9px;
        line-height: 1.2;
      }

      .article-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        align-items: center;
        margin-bottom: 16px;
      }

      .article-nav a {
        padding: 0;
        border: none;
        background: transparent;
        font-weight: 700;
        color: #e2e8f0;
        letter-spacing: 0.2px;
        box-shadow: none;
        transition: color 0.2s ease, transform 0.2s ease;
      }

      .article-nav a:hover,
      .article-nav a:focus-visible {
        color: #fef9c3;
        transform: translateY(-1px);
      }

      .article-nav a:active {
        transform: translateY(0);
      }

      .article-list {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
      }

      .article-carousel {
        position: relative;
      }

      .article-arrow {
        position: absolute;
        top: 50%;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        background: rgba(15, 23, 42, 0.65);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transform: translateY(-50%);
        transition: transform 0.2s ease, background 0.2s ease;
        z-index: 2;
      }

      .article-arrow.prev {
        left: -16px;
      }

      .article-arrow.next {
        right: -16px;
      }

      .article-arrow:hover,
      .article-arrow:focus-visible {
        background: rgba(15, 23, 42, 0.85);
        transform: translateY(-50%) scale(1.06);
      }

      .article-arrow:active {
        transform: translateY(-50%) scale(0.96);
      }

      .article-arrow svg {
        width: 18px;
        height: 18px;
        fill: #fff;
      }

      .article-card {
        background: #fff;
        border-radius: 16px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        min-height: 130px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        will-change: transform;
      }

      .article-card.is-hidden {
        display: none;
      }

      .article-card.is-active {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 22px 36px rgba(15, 23, 42, 0.22);
        z-index: 1;
      }

      .article-card.is-active:hover {
        transform: translateY(-5px) scale(1.05);
      }

      .article-card:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
      }

      .article-thumb {
        width: 100%;
        height: 120px;
        overflow: hidden;
        background: #f8fafc;
      }
  .article-thumb {
    height: 160px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .article-body {
    padding: 10px 12px 12px;
    display: grid;
    gap: 4px;
  }
  .article-body .section-subtitle {
    font-size: 12px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
.article-card strong {
        font-size: 14px;
        line-height: 1.2;
      }

      .article-card .article-meta {
        font-size: 11px;
      }

      .article-card .section-subtitle {
        margin: 0;
        font-size: 12px;
        line-height: 1.4;
      }
      .article-meta {
        font-size: 12px;
        color: #64748b;
      }

      .article-actions {
        margin-top: 18px;
        display: flex;
        justify-content: center;
      }

      .portrait-wall {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        height: 440px;
        overflow: hidden;
      }

      .portrait-column {
        overflow: hidden;
      }

      .portrait-track {
        display: grid;
        gap: 16px;
        animation: portraitUp 14s linear infinite;
      }

      .portrait-column.reverse .portrait-track {
        animation-name: portraitDown;
      }

      .portrait-card {
        position: relative;
        border-radius: 16px;
        border: 1px solid rgba(15, 23, 42, 0.1);
        background: #ffffff;
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 0;
        text-align: center;
        cursor: pointer;
        font: inherit;
        appearance: none;
        color: #000;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .portrait-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
      }

      .portrait-card:focus-visible {
        outline: 2px solid rgba(59, 130, 246, 0.6);
        outline-offset: 2px;
      }

      .portrait-card:active {
        transform: translateY(-1px) scale(0.99);
      }

      .portrait-card.is-expanded {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 22px 36px rgba(15, 23, 42, 0.22);
        z-index: 2;
      }

      .portrait-photo {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        background: #f8fafc;
      }

      .portrait-info {
        padding: 6px 10px 8px;
        display: grid;
        gap: 2px;
        justify-items: center;
        color: #ffffff;
        opacity: 1;
        background: linear-gradient(180deg, #b60d18 0%, #6a0d13 58%, #1c0508 100%);
        border-radius: 0 0 16px 16px;
      }

      .portrait-info strong {
        font-size: 15px;
        color: #ffffff !important;
      }

      .player-snippet {
        font-size: 13px;
        color: #ffffff !important;
        opacity: 0.9;
      }

      .player-detail {
        display: none;
        font-size: 12px;
        color: #ffffff !important;
        opacity: 0.85;
      }

      .sponsor-links a {
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
      }

      .sponsor-links a:nth-of-type(1) {
        color: #f97316;
      }

      .sponsor-links a:nth-of-type(2) {
        color: #22c55e;
      }

      .sponsor-links a:nth-of-type(3) {
        color: #3b82f6;
      }

      .portrait-card.is-expanded .player-snippet {
        display: none;
      }

      .portrait-card.is-expanded .player-detail {
        display: block;
      }

      .portrait-card strong {
        font-size: 12px;
        line-height: 1.2;
        color: #f8fafc;
      }

      .portrait-card small {
        font-size: 10px;
        line-height: 1.2;
        color: rgba(226, 232, 240, 0.75);
      }

      .logo-strip {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
      }

      .logo-chip {
        background: linear-gradient(135deg, #4c0b14, #7a0f1b, #9f1239);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 14px;
        padding: 12px;
        text-align: center;
        font-weight: 700;
        color: #ffffff;
        box-shadow: 0 16px 28px rgba(15, 23, 42, 0.25);
        display: block;
        transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
      }

      .logo-chip:hover,
      .logo-chip:focus-visible {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 20px 34px rgba(15, 23, 42, 0.3);
        filter: saturate(1.08);
      }

      .logo-chip:active {
        transform: translateY(0) scale(0.98);
      }

      .logo-chip small {
        display: block;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.82);
        margin-top: 6px;
      }

      .trust-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 24px;
        align-items: center;
      }

      .trust-media {
        display: grid;
        gap: 14px;
      }

      .trust-license {
        width: 50%;
        max-width: 100%;
        height: auto;
        border-radius: 16px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
        display: block;
        margin: 0 auto;
      }

      .trust-badges {
        margin-top: 16px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
      }

      .trust-badges img {
        height: 42px;
        width: auto;
        display: block;
        background: transparent;
        border-radius: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
      }

      .trust-badge-item {
        display: grid;
        gap: 8px;
        align-items: start;
        justify-items: start;
      }

      .trust-badge-text {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        color: #ffffff;
      }

      .trust-media .trust-badge-text {
        margin-top: 8px;
        text-align: center;
      }

      .trust-section,
      .trust-section * {
        color: #ffffff !important;
      }

      .trust-section a {
        color: #2563eb !important;
      }

      .trust-section .gradient-text {
        background: linear-gradient(90deg, #ff8a00, #f472b6, #4f46e5);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent !important;
        -webkit-text-fill-color: transparent !important;
      }

      .trust-text {
        margin: 0 0 12px;
        color: #1f2937;
        line-height: 1.8;
      }

      .trust-links a {
        color: #2563eb;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
      }

      .trust-points {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
        color: #334155;
      }

      .trust-points li {
        padding-left: 12px;
        position: relative;
      }

      .trust-points li::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ef4444;
        position: absolute;
        left: 0;
        top: 9px;
      }

      .partner-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin: 12px 0 18px;
      }

      .partner-logo {
        height: 46px;
        width: auto;
        display: inline-block;
      }

      .partner-banner {
        display: block;
        width: min(100%, 900px);
        height: auto;
        margin: 6px auto 0;
        border-radius: 12px;
        box-shadow: var(--shadow);
      }

      .partner-x {
        font-size: 18px;
        color: #ffffff;
      }

      .leicester-logo {
        height: 46px;
        width: 46px;
      }

      .partner-subtitle a {
        color: #2563eb;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
      }

      .cert-bar {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
      }

      .cert-item {
        background: #fff;
        border-radius: 16px;
        padding: 16px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .cert-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(239, 68, 68, 0.12);
        display: grid;
        place-items: center;
        font-weight: 800;
        color: #b91c1c;
      }

      .seal-row {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
      }

      .seal {
        border-radius: 999px;
        padding: 12px;
        text-align: center;
        background: linear-gradient(120deg, #fff7ed, #fee2e2);
        border: 1px dashed rgba(239, 68, 68, 0.35);
        font-weight: 700;
        color: #9f1239;
      }

      .quote-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      .quote-card {
        background: #fff;
        border-radius: 20px;
        padding: 20px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: 170px;
      }

      .quote-card::before {
        content: "“";
        position: absolute;
        top: 10px;
        right: 18px;
        font-size: 36px;
        color: rgba(239, 68, 68, 0.2);
      }

      .quote-card span {
        display: block;
        margin-top: 14px;
        font-weight: 700;
        color: #b91c1c;
      }

      .social-video-block {
        display: flex;
        gap: 24px;
        align-items: center;
        padding: 24px;
        border-radius: 24px;
        background: linear-gradient(135deg, #2d0c12, #4a141a 55%, #6b1e28);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
        color: #ffffff;
      }

      .section.social-proof .section-subtitle {
        color: #ffffff;
      }

      .video-embed {
        flex: 1;
        min-width: 0;
        max-width: 520px;
        width: 100%;
      }

      .ytp-cued-thumbnail-overlay-image {
        width: 100%;
      }

      .video-frame {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        border: 0;
        border-radius: 16px;
        background: transparent;
        display: block;
        object-fit: contain;
      }

      .video-copy {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .video-copy h3 {
        margin: 0;
        font-size: 22px;
      }

      .video-copy p {
        margin: 0;
        color: #ffffff;
        line-height: 1.7;
      }

      .video-highlights {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 8px;
        color: #ffffff;
      }

      .video-note {
        margin: 0;
        font-size: 13px;
        color: #ffffff;
      }

      .social-video-block .link-accent {
        color: #93c5fd;
      }

      .chip-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border-radius: 999px;
        background: #0f172a;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
      }

      .chip-link.light {
        background: #ffffff;
        color: #0f172a;
        border: 1px solid rgba(15, 23, 42, 0.08);
      }


      .link-accent {
        color: #2563eb;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
      }


      .impact-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 24px;
      }

      .impact-panel {
        background: linear-gradient(135deg, #2d0c12, #4a141a 55%, #6b1e28);
        border-radius: 24px;
        padding: 24px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
        display: grid;
        gap: 16px;
        color: #ffffff;
      }

      .impact-head {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .impact-icon {
        width: 34px;
        height: 34px;
      }

      .impact-kicker {
        font-size: 13px;
        font-weight: 700;
        color: #ffffff;
      }

      .impact-panel h3 {
        margin: 6px 0 0;
        font-size: 22px;
      }

      .impact-panel p {
        margin: 0;
        color: #ffffff;
        line-height: 1.7;
      }

      .impact-media {
        margin: 0;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow);
        background: rgba(15, 23, 42, 0.12);
      }

      .impact-media img {
        display: block;
        width: 100%;
        height: 220px;
        object-fit: cover;
      }

      .impact-media figcaption {
        padding: 10px 12px 12px;
        font-size: 13px;
        color: #ffffff;
      }

      .impact-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .impact-stack {
        display: grid;
        gap: 16px;
      }

      .impact-step {
        background: linear-gradient(135deg, #2d0c12, #4a141a 55%, #6b1e28);
        border-radius: 18px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
        display: flex;
        gap: 12px;
        align-items: flex-start;
        color: #ffffff;
      }

      .impact-step strong {
        display: block;
        margin-bottom: 6px;
        color: #ffffff;
      }

      .impact-step p {
        margin: 0;
        color: #ffffff;
        line-height: 1.6;
      }

      .seo-framework {
        background: #fff;
        border-radius: 24px;
        padding: 26px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
      }

      .seo-columns {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      .seo-list a {
        display: inline-flex;
        padding: 6px 0;
        color: #1f2937;
        font-weight: 600;
      }

      .seo-list a:hover {
        color: #b91c1c;
      }

      .section p {
        color: var(--muted);
        margin: 0 0 24px;
      }

      .section.social-proof p {
        color: #ffffff;
      }

      .section .impact-panel p,
      .section .impact-step p,
      .section .impact-media figcaption,
      .section .impact-kicker {
        color: #ffffff;
      }

      .section-header p,
      .section-header .section-subtitle {
        margin: 0;
      }

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

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

      .pill-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
      }

      .pill {
        padding: 6px 12px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 13px;
        color: #4f46e5;
        background: rgba(79, 70, 229, 0.12);
      }

      .icon-slot {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 2px dashed rgba(79, 70, 229, 0.35);
        display: grid;
        place-items: center;
        font-size: 12px;
        color: #64748b;
        margin-bottom: 12px;
        background: rgba(79, 70, 229, 0.05);
      }

      .card {
        background: var(--card);
        border: 1px solid var(--border);
        padding: 22px;
        border-radius: 18px;
        transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: 170px;
      }

      .card:hover {
        transform: translateY(-8px) scale(1.01);
        border-color: rgba(79, 70, 229, 0.3);
        box-shadow: 0 24px 40px rgba(79, 70, 229, 0.18);
      }

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

      .layer-card {
        position: relative;
        background: #fff;
        border-radius: 20px;
        padding: 22px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: 170px;
      }

      .layer-card::before {
        content: "";
        position: absolute;
        inset: 8px;
        border-radius: 16px;
        border: 1px dashed rgba(239, 68, 68, 0.25);
        pointer-events: none;
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 999px;
        background: rgba(79, 70, 229, 0.12);
        color: #4338ca;
        margin-bottom: 10px;
        font-weight: 600;
      }

      .stats {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
      }

      .stat {
        background: linear-gradient(140deg, #ffffff, #e0f2fe);
        border: 1px solid var(--border);
        padding: 18px;
        border-radius: 14px;
        text-align: center;
        box-shadow: var(--shadow);
      }

      .stat strong {
        display: block;
        font-size: 24px;
        color: #0ea5e9;
      }

      .brand-wall {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid var(--border);
        background: linear-gradient(140deg, #ffffff, #fef3c7, #dbeafe);
        box-shadow: var(--shadow);
        height: 320px;
      }

      .brand-wall-track {
        column-count: 4;
        column-gap: 18px;
        padding: 20px;
        animation: wallScroll 14s linear infinite;
      }

      .brand-card {
        break-inside: avoid;
        margin-bottom: 18px;
        border-radius: 18px;
        background: #fff;
        padding: 16px;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
        border: 1px solid rgba(15, 23, 42, 0.06);
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .brand-card .photo {
        width: 100%;
        height: var(--h, 120px);
        border-radius: 14px;
        background: linear-gradient(120deg, #fde68a, #93c5fd);
      }

      .brand-card small {
        color: var(--muted);
      }

      .tab-shell {
        border-radius: 24px;
        background: #fff;
        padding: 24px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .tab-controls {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
      }

      .tab-button {
        border: 1px solid rgba(79, 70, 229, 0.2);
        background: #fff;
        padding: 10px 16px;
        border-radius: 999px;
        font-weight: 600;
        color: #4f46e5;
        cursor: pointer;
      }

      .tab-button.active {
        background: linear-gradient(90deg, #ff8a00, #f472b6);
        color: #0f172a;
        border-color: transparent;
      }

      .tab-panel {
        display: none;
      }

      .tab-panel.active {
        display: block;
      }

      .media-card {
        background: linear-gradient(120deg, #fef3c7, #dbeafe);
        border-radius: 16px;
        padding: 18px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        min-height: 140px;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .media-placeholder {
        flex: 1;
        border-radius: 12px;
        background: linear-gradient(120deg, #fde68a, #93c5fd);
      }

      .cta-banner {
        margin-top: 24px;
        padding: 20px;
        border-radius: 18px;
        background: linear-gradient(120deg, #fff7ed, #e0e7ff);
        border: 1px solid rgba(15, 23, 42, 0.08);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .cta-banner strong {
        font-size: 18px;
      }

      @keyframes wallScroll {
        0% {
          transform: translateY(0);
        }
        100% {
          transform: translateY(-45%);
        }
      }

      .timeline {
        display: grid;
        gap: 16px;
      }

      .timeline-item {
        border-left: 4px solid var(--accent-4);
        padding-left: 16px;
      }

      .faq details {
        background: linear-gradient(135deg, #2d0c12, #3d131a 55%, #4a1721);
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 16px 18px;
        border-radius: 12px;
        margin-bottom: 12px;
        box-shadow: var(--shadow);
        color: #f8fafc;
      }

      .faq summary {
        color: #ffffff;
      }

      .faq p {
        margin: 8px 0 0;
        color: rgba(248, 250, 252, 0.82);
        line-height: 1.7;
      }

      .faq a {
        color: #93c5fd;
        text-decoration: underline;
        text-underline-offset: 3px;
      }

      .footer {
        padding: 48px 0 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(226, 232, 240, 0.88);
        font-size: 14px;
        background: #0b0f18;
      }

      .footer-top {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
        gap: 32px;
      }

      .footer-brand {
        display: grid;
        gap: 16px;
      }

      .footer-logo {
        height: 36px;
        width: auto;
      }

      .footer-brand p {
        margin: 0;
        line-height: 1.7;
        color: rgba(226, 232, 240, 0.78);
      }

      .footer-badge-text {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        align-items: center;
        color: rgba(248, 250, 252, 0.88);
        font-size: 13px;
        font-weight: 600;
      }

      .footer-cert-logos {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
      }

      .footer-cert-logo {
        width: 120px;
        height: auto;
        display: inline-block;
      }

      .footer-badge-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .footer-badge-icon {
        width: 18px;
        height: 18px;
        display: inline-block;
      }

      @media (max-width: 640px) {
        .footer-badge {
          padding: 6px 12px;
          border-radius: 999px;
          font-size: 12px;
        }
      }

      .footer-columns {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 32px;
      }

      .footer-title {
        margin: 0 0 10px;
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
      }

      .footer-list {
        display: grid;
        gap: 8px;
      }

      .footer-list a {
        color: rgba(226, 232, 240, 0.78);
        font-size: 13px;
      }

      .footer-list a:hover {
        color: #ffffff;
      }

      .footer-bottom {
        margin-top: 14px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
        text-align: center;
      }

      .footer-disclaimer {
        max-width: 720px;
        display: grid;
        gap: 4px;
        color: rgba(226, 232, 240, 0.72);
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
      }

      .footer-legal


  /* live-casino-tailwind */
  .live-casino-template {
    --lc-background: oklch(0.145 0 0);
    --lc-foreground: oklch(0.985 0 0);
    --lc-card: oklch(0.145 0 0);
    --lc-card-foreground: oklch(0.985 0 0);
    --lc-popover: oklch(0.145 0 0);
    --lc-popover-foreground: oklch(0.985 0 0);
    --lc-primary: oklch(0.985 0 0);
    --lc-primary-foreground: oklch(0.205 0 0);
    --lc-secondary: oklch(0.269 0 0);
    --lc-secondary-foreground: oklch(0.985 0 0);
    --lc-muted: oklch(0.269 0 0);
    --lc-muted-foreground: oklch(0.708 0 0);
    --lc-accent: oklch(0.269 0 0);
    --lc-accent-foreground: oklch(0.985 0 0);
    --lc-border: oklch(0.269 0 0);
    --lc-input: oklch(0.269 0 0);
    --lc-ring: oklch(0.439 0 0);
    --lc-radius: 0.625rem;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .live-casino-template .font-serif {
    font-family: 'Noto Serif TC', serif;
  }
  .content-block {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 12, 0.6);
    border-radius: 16px;
    padding: 16px;
    color: rgba(226, 232, 240, 0.88);
  }
  .content-block a {
    color: #93c5fd;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  /* hh88-cosmic */
  .starfield {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.6;
  }
  .cosmic-wrap {
    position: relative;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 10% 20%, rgba(150, 20, 40, 0.35), transparent 60%),
      radial-gradient(900px 480px at 90% 10%, rgba(120, 10, 30, 0.25), transparent 55%),
      linear-gradient(180deg, #050505 0%, #12070e 45%, #1a050a 100%);
    color: #e2e8f0;
  }
  .cosmic-wrap .starfield {
    opacity: 0.5;
  }
  .cosmic-content {
    position: relative;
    z-index: 2;
  }
  .cosmic-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.55;
    z-index: 1;
  }
  .cosmic-orb.orb-1 {
    width: 260px;
    height: 260px;
    background: rgba(239, 68, 68, 0.35);
    top: -80px;
    right: 8%;
  }
  .cosmic-orb.orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(248, 113, 113, 0.25);
    bottom: 80px;
    left: 5%;
  }
  .cosmic-orb.orb-3 {
    width: 160px;
    height: 160px;
    background: rgba(244, 63, 94, 0.22);
    top: 40%;
    right: 12%;
  }


  /* hh88-color-tuning */
  .live-casino-template .text-accent { color: #22c55e !important; }
  .live-casino-template .text-muted-foreground { color: #ffffff !important; }
  .live-casino-template .text-foreground { color: #ffffff !important; }
  .live-casino-template h2 { color: #f59e0b; }
  .live-casino-template h3 { color: #fca5a5; }
  .live-casino-template h4 { color: #fde68a; }
  .live-casino-template .game-card-title { color: #b91c1c !important; }
  .live-casino-template .content-block p,
  .live-casino-template .content-block li,
  .live-casino-template .content-block .intro { color: #ffffff !important; }
  .live-casino-template .bg-gradient-to-r.from-primary.via-red-600.to-red-700,
  .live-casino-template .bg-gradient-to-r.from-primary.to-red-700,
  .live-casino-template .bg-gradient-to-r.from-primary.via-red-600.to-red-900 {
    background-image: linear-gradient(90deg, #f6d7d3 0%, #e06b62 45%, #c81e22 100%) !important;
  }
  .live-casino-template .bg-gradient-to-br.from-red-600.to-red-900,
  .live-casino-template .bg-gradient-to-br.from-red-700.to-red-950,
  .live-casino-template .bg-gradient-to-br.from-red-600.to-red-800,
  .live-casino-template .bg-gradient-to-br.from-red-700.to-red-900 {
    background-image: linear-gradient(135deg, #b60d18 0%, #6a0d13 58%, #1c0508 100%) !important;
  }
  .live-casino-template .bg-gradient-to-br.from-primary.via-red-600.to-red-900,
  .live-casino-template .bg-gradient-to-br.from-primary.to-red-800 {
    background-image: linear-gradient(135deg, #f6d7d3 0%, #d85751 52%, #a80f18 100%) !important;
  }

  /* hh88-article-scroll-fix */
  html,
  body {
    height: auto;
    min-height: 100%;
  }
  body.cosmic-wrap {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .cosmic-wrap {
    overflow-x: hidden;
    overflow-y: visible;
  }

  /* hh88-article-scroll-fix-strong */
  html,
  body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
  body.cosmic-wrap {
    overflow-y: auto !important;
  }
  .cosmic-wrap,
  .cosmic-content,
  main.live-casino-template {
    overflow: visible !important;
  }
  .article-hero img,
  .article-body img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* hh88-footer-h5-fix */
  @media (max-width: 960px) {
    .footer-top {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .footer-columns {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 16px;
    }
    .footer-brand {
      text-align: center;
    }
    .footer-cert-logos {
      justify-content: center;
    }
    .footer-badge-text {
      justify-content: center;
    }
  }

  @media (max-width: 640px) {
    .footer {
      padding: 28px 0 22px;
    }
    .footer-top {
      gap: 14px;
    }
    .footer-columns {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px 10px;
    }
    .footer-title {
      font-size: 11px;
      margin-bottom: 6px;
    }
    .footer-list {
      gap: 6px;
    }
    .footer-list a {
      font-size: 10.5px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .footer-badge-text {
      font-size: 12px;
    }
    .footer-brand p {
      font-size: 12px;
      line-height: 1.5;
    }
    .footer-cert-logo {
      width: 96px;
    }
    .footer-bottom {
      margin-top: 16px;
      padding-top: 12px;
      justify-content: center;
      text-align: center;
    }
    .footer-disclaimer {
      font-size: 11px;
      line-height: 1.45;
    }
    .footer-legal {
      font-size: 11px;
      justify-content: center;
    }
  }

  /* hh88-article-nav */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 11, 13, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
  }
  .logo img {
    width: 150px;
    height: auto;
    display: block;
  }
  .nav-toggle {
    display: none;
  }
  .nav-toggle-btn {
    display: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
  }
  .nav .nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav .nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    padding: 6px 4px;
    position: relative;
  }
  .nav-icon {
    width: 18px;
    height: 18px;
  }
  .nav .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #ec4899, #8b5cf6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
  }
  .nav .nav-links a:hover {
    color: #ffffff;
  }
  .nav .nav-links a:hover::after {
    transform: scaleX(1);
  }
  .nav-arrow {
    font-size: 12px;
    opacity: 0.75;
    transition: transform 0.2s ease;
  }
  .nav-item:hover .nav-arrow {
    transform: rotate(180deg);
  }
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    padding: 10px 0;
    border-radius: 14px;
    background: rgba(17, 17, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
  }
  .dropdown a {
    padding: 8px 16px;
    display: block;
    color: rgba(255, 255, 255, 0.82);
  }
  .dropdown a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
  }
  .nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #f97316;
    color: #0b0b0d;
    font-weight: 700;
    padding: 8px 14px;
  }
  .btn.small {
    padding: 6px 12px;
    font-size: 12px;
  }
  .btn.ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
  }
  @media (max-width: 900px) {
    .nav-toggle-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.08);
    }
    .nav .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: flex-start;
      background: rgba(17, 17, 24, 0.98);
      padding: 16px;
      gap: 6px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease;
      display: none;
    }
    .nav-toggle:checked + .nav-toggle-btn + .nav-links {
      display: flex;
      max-height: 520px;
    }
    .nav-item {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-item.is-open .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      position: static;
      box-shadow: none;
      width: 100%;
      margin-top: 6px;
    }
    .dropdown {
      position: static;
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
      display: none;
      width: 100%;
    }
    .nav-item:hover .dropdown {
      display: none;
    }
    .nav-actions {
      display: none;
    }
  }
  @media (max-width: 900px) {
    .nav.nav-open .nav-links {
      display: flex !important;
      max-height: 520px !important;
    }
  }
  .nav .nav-links,
  .nav .nav-links a {
    white-space: nowrap !important;
    word-break: keep-all !important;
  }
  .nav .nav-links {
    flex-wrap: nowrap !important;
  }
  @media (max-width: 720px) {
    .nav .nav-links {
      display: flex !important;
    }
  }
  body.admin-bar .nav {
    top: 32px;
  }
  @media (max-width: 782px) {
    body.admin-bar .nav {
      top: 46px;
    }
  }