/* roulang page: index */
:root {
      --primary: #6C3BFF;
      --secondary: #14D8C5;
      --accent: #FF8A3D;
      --ink: #141225;
      --text: #4C4A5F;
      --muted: #858198;
      --bg: #F6F7FB;
      --bg-soft: #F8F6FF;
      --card: #FFFFFF;
      --dark: #151327;
      --dark-2: #1C1833;
      --line: rgba(20, 18, 39, .08);
      --line-purple: rgba(108, 59, 255, .13);
      --shadow: 0 18px 45px rgba(40, 30, 80, .10);
      --shadow-strong: 0 24px 70px rgba(40, 30, 80, .16);
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --container: 1220px;
      --gradient: linear-gradient(135deg, #6C3BFF 0%, #14D8C5 55%, #FF8A3D 120%);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 0%, rgba(108, 59, 255, .08), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(20, 216, 197, .10), transparent 30%),
        var(--bg);
      line-height: 1.75;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    ::selection {
      color: #fff;
      background: var(--primary);
    }

    .container {
      max-width: var(--container);
    }

    .section {
      padding: 86px 0;
    }

    .section-tight {
      padding: 58px 0;
    }

    .section-title {
      margin-bottom: 34px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border: 1px solid var(--line-purple);
      border-radius: 999px;
      color: var(--primary);
      background: rgba(108, 59, 255, .07);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.2;
    }

    h1,
    h2,
    h3,
    h4 {
      color: var(--ink);
      font-weight: 800;
      letter-spacing: 0;
    }

    h1 {
      font-size: clamp(34px, 4.3vw, 56px);
      line-height: 1.14;
      margin: 18px 0 18px;
    }

    h2 {
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.25;
      margin: 14px 0 12px;
    }

    h3 {
      font-size: 21px;
      line-height: 1.35;
      margin: 0 0 10px;
    }

    p {
      margin: 0;
    }

    .lead-text {
      max-width: 720px;
      color: var(--text);
      font-size: 16px;
      line-height: 1.85;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(20, 18, 39, .07);
    }

    .navbar {
      min-height: 76px;
      padding: 10px 0;
    }

    .navbar-brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--ink);
      font-weight: 900;
      font-size: 20px;
      white-space: nowrap;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      background: var(--gradient);
      display: grid;
      place-items: center;
      color: #fff;
      box-shadow: 0 12px 28px rgba(108, 59, 255, .28);
    }

    .brand-mark i {
      font-size: 22px;
    }

    .navbar-toggler {
      border: 1px solid var(--line-purple);
      border-radius: 14px;
      padding: 8px 10px;
      color: var(--ink);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px rgba(108, 59, 255, .14);
    }

    .navbar-nav {
      gap: 4px;
    }

    .nav-link {
      position: relative;
      color: var(--text);
      font-size: 15px;
      font-weight: 700;
      padding: 10px 13px !important;
      border-radius: 999px;
    }

    .nav-link:hover,
    .nav-link:focus {
      color: var(--primary);
      background: rgba(108, 59, 255, .07);
    }

    .nav-link.active {
      color: var(--primary) !important;
      background: rgba(108, 59, 255, .10);
    }

    .search-shell {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 240px;
      height: 44px;
      padding: 0 14px;
      border: 1px solid rgba(108, 59, 255, .13);
      background: #fff;
      border-radius: 999px;
    }

    .search-shell i {
      color: var(--primary);
    }

    .search-shell input {
      width: 100%;
      border: 0;
      outline: none;
      color: var(--ink);
      background: transparent;
      font-size: 14px;
    }

    .search-shell input::placeholder {
      color: var(--muted);
    }

    .btn-brand,
    .btn-soft,
    .btn-darkline,
    .btn-mini {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn-brand {
      min-height: 46px;
      padding: 13px 20px;
      color: #fff;
      background: var(--gradient);
      box-shadow: 0 14px 30px rgba(108, 59, 255, .25);
    }

    .btn-brand:hover,
    .btn-brand:focus {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(108, 59, 255, .33);
    }

    .btn-soft {
      min-height: 46px;
      padding: 13px 20px;
      color: var(--primary);
      background: rgba(108, 59, 255, .08);
      border: 1px solid rgba(108, 59, 255, .14);
    }

    .btn-soft:hover,
    .btn-soft:focus {
      color: var(--primary);
      background: rgba(108, 59, 255, .13);
      transform: translateY(-2px);
    }

    .btn-darkline {
      color: #fff;
      background: rgba(255, 255, 255, .10);
      border: 1px solid rgba(255, 255, 255, .16);
      padding: 10px 14px;
      font-size: 13px;
    }

    .btn-darkline:hover {
      color: #fff;
      background: rgba(20, 216, 197, .18);
      border-color: rgba(20, 216, 197, .45);
    }

    .btn-mini {
      min-height: 34px;
      padding: 8px 12px;
      color: var(--primary);
      background: rgba(108, 59, 255, .08);
      font-size: 13px;
    }

    .btn-mini:hover {
      color: #fff;
      background: var(--primary);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 64px 0 54px;
      background:
        linear-gradient(90deg, rgba(248, 246, 255, .97), rgba(248, 246, 255, .82)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(108, 59, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 59, 255, .06) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 80%);
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 1;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 24px 0 28px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--text);
      background: rgba(255, 255, 255, .78);
      border: 1px solid rgba(108, 59, 255, .12);
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 8px 24px rgba(40, 30, 80, .06);
    }

    .tag.hot {
      color: #9B440E;
      background: rgba(255, 138, 61, .13);
      border-color: rgba(255, 138, 61, .26);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 18px;
    }

    .hero-note {
      color: var(--muted);
      font-size: 14px;
    }

    .scoreboard {
      position: relative;
      overflow: hidden;
      padding: 24px;
      border-radius: 28px;
      color: #fff;
      background:
        radial-gradient(circle at 22% 5%, rgba(20, 216, 197, .28), transparent 30%),
        radial-gradient(circle at 90% 18%, rgba(255, 138, 61, .20), transparent 24%),
        linear-gradient(145deg, #151327 0%, #211C3E 100%);
      border: 1px solid rgba(255, 255, 255, .12);
      box-shadow: var(--shadow-strong);
    }

    .scoreboard::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 70px;
      right: -70px;
      top: 82px;
      transform: rotate(-18deg);
      background: linear-gradient(90deg, transparent, rgba(20, 216, 197, .22), transparent);
    }

    .scoreboard-head {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .scoreboard h2 {
      color: #fff;
      font-size: 24px;
      margin: 0 0 4px;
    }

    .update-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 11px;
      color: rgba(255,255,255,.86);
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.08);
      font-size: 12px;
      white-space: nowrap;
    }

    .match-card {
      position: relative;
      z-index: 1;
      padding: 15px;
      border: 1px solid rgba(255, 255, 255, .10);
      border-radius: 18px;
      background: rgba(255, 255, 255, .07);
      margin-bottom: 12px;
    }

    .match-meta {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      margin-bottom: 12px;
      color: rgba(255,255,255,.72);
      font-size: 13px;
    }

    .match-body {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 12px;
    }

    .team {
      min-width: 0;
      font-weight: 800;
      color: #fff;
    }

    .team.right {
      text-align: right;
    }

    .score {
      min-width: 72px;
      padding: 8px 10px;
      border-radius: 14px;
      text-align: center;
      background: rgba(20, 216, 197, .14);
      color: var(--secondary);
      font-size: 20px;
      font-weight: 900;
    }

    .status-dot {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .status-dot::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--secondary);
      box-shadow: 0 0 0 5px rgba(20, 216, 197, .12);
    }

    .status-dot.orange::before {
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(255, 138, 61, .12);
    }

    .board-stats {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .board-stat {
      padding: 13px;
      border-radius: 16px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .10);
    }

    .board-stat strong {
      display: block;
      color: #fff;
      font-size: 24px;
      line-height: 1.1;
    }

    .board-stat span {
      color: rgba(255,255,255,.68);
      font-size: 12px;
    }

    .metric-card,
    .plain-card,
    .feature-card,
    .game-card,
    .rank-panel,
    .topic-card,
    .review-card,
    .form-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: 0 12px 36px rgba(40, 30, 80, .07);
    }

    .metric-card {
      height: 100%;
      padding: 22px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .metric-card:hover {
      transform: translateY(-3px);
      border-color: rgba(108, 59, 255, .28);
      box-shadow: var(--shadow);
    }

    .metric-icon {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--gradient);
      margin-bottom: 16px;
    }

    .metric-card.dark {
      color: rgba(255,255,255,.74);
      background: linear-gradient(145deg, #151327, #211C3E);
      border-color: rgba(255,255,255,.12);
    }

    .metric-card.dark h3,
    .metric-card.dark .metric-number {
      color: #fff;
    }

    .metric-number {
      color: var(--primary);
      font-size: 34px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .metric-card h3 {
      font-size: 15px;
      margin-bottom: 4px;
    }

    .metric-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .feature-card {
      height: 100%;
      padding: 24px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .feature-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(108, 59, 255, .09);
      color: var(--primary);
      font-size: 22px;
      margin-bottom: 16px;
    }

    .feature-card:nth-child(2n) .feature-icon {
      color: #079D91;
      background: rgba(20, 216, 197, .12);
    }

    .feature-card:nth-child(3n) .feature-icon {
      color: #C7601F;
      background: rgba(255, 138, 61, .13);
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .small-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 9px;
      border-radius: 999px;
      background: rgba(108, 59, 255, .08);
      color: var(--primary);
      font-size: 12px;
      font-weight: 800;
    }

    .small-badge.cyan {
      background: rgba(20, 216, 197, .12);
      color: #087E75;
    }

    .small-badge.orange {
      background: rgba(255, 138, 61, .13);
      color: #A34B12;
    }

    .table-card {
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .table-card-head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
      padding: 24px 24px 12px;
    }

    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-pills .pill {
      border: 1px solid rgba(108, 59, 255, .13);
      background: rgba(108, 59, 255, .06);
      color: var(--text);
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 13px;
      font-weight: 800;
    }

    .filter-pills .pill.active,
    .filter-pills .pill:hover {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
    }

    .table-responsive {
      padding: 0 12px 12px;
    }

    .data-table {
      margin: 0;
      color: var(--text);
      vertical-align: middle;
      min-width: 920px;
    }

    .data-table thead th {
      padding: 14px 12px;
      border: 0;
      color: var(--muted);
      background: #F7F5FF;
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .data-table tbody td {
      padding: 16px 12px;
      border-color: rgba(20,18,39,.07);
      font-size: 14px;
      white-space: nowrap;
    }

    .data-table tbody tr:hover td {
      background: rgba(108, 59, 255, .045);
    }

    .state {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
    }

    .state.live {
      color: #087E75;
      background: rgba(20, 216, 197, .13);
    }

    .state.soon {
      color: var(--primary);
      background: rgba(108, 59, 255, .10);
    }

    .state.done {
      color: #6C687A;
      background: rgba(20,18,39,.07);
    }

    .state.hot {
      color: #A34B12;
      background: rgba(255, 138, 61, .14);
    }

    .magazine-focus {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      border-radius: 28px;
      box-shadow: var(--shadow);
      background: var(--dark);
    }

    .magazine-focus img,
    .magazine-small img,
    .topic-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .magazine-focus::after,
    .magazine-small::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(20,18,39,.08), rgba(20,18,39,.78));
    }

    .magazine-content {
      position: absolute;
      inset: auto 0 0 0;
      z-index: 1;
      padding: 28px;
      color: #fff;
    }

    .magazine-content h3 {
      color: #fff;
      font-size: 28px;
    }

    .magazine-small {
      position: relative;
      overflow: hidden;
      min-height: 198px;
      border-radius: 22px;
      background: var(--dark);
    }

    .magazine-small .magazine-content {
      padding: 18px;
    }

    .magazine-small h3 {
      font-size: 18px;
    }

    .game-card {
      height: 100%;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .game-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .game-head {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 20px 20px 0;
    }

    .game-symbol {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--gradient);
      font-weight: 900;
    }

    .game-card p {
      padding: 12px 20px 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .game-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 18px 20px 20px;
    }

    .split-panel {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 24px;
      align-items: stretch;
    }

    .rank-panel {
      padding: 24px;
    }

    .rank-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid rgba(20,18,39,.07);
    }

    .rank-item:last-child {
      border-bottom: 0;
    }

    .rank-no {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: var(--text);
      background: rgba(20,18,39,.06);
      font-weight: 900;
    }

    .rank-item:nth-child(-n+3) .rank-no {
      color: #fff;
      background: var(--gradient);
    }

    .rank-main strong {
      display: block;
      color: var(--ink);
      font-weight: 900;
    }

    .rank-main span {
      color: var(--muted);
      font-size: 13px;
    }

    .progress-line {
      width: 116px;
      height: 8px;
      border-radius: 999px;
      background: rgba(108, 59, 255, .09);
      overflow: hidden;
    }

    .progress-line i {
      display: block;
      height: 100%;
      border-radius: 999px;
      background: var(--gradient);
    }

    .player-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .player-card {
      padding: 18px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 10px 30px rgba(40,30,80,.06);
    }

    .player-card strong {
      display: block;
      color: var(--ink);
      font-size: 18px;
      margin-bottom: 4px;
    }

    .player-value {
      color: var(--primary);
      font-size: 28px;
      font-weight: 900;
      line-height: 1.1;
    }

    .masonry {
      columns: 3 260px;
      column-gap: 20px;
    }

    .topic-card {
      display: inline-block;
      width: 100%;
      overflow: hidden;
      margin: 0 0 20px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .topic-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .topic-cover {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #EDEAFB;
    }

    .topic-body {
      padding: 20px;
    }

    .topic-body p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .analysis-list {
      display: grid;
      gap: 14px;
    }

    .analysis-item {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 16px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 10px 28px rgba(40,30,80,.055);
    }

    .analysis-game {
      color: var(--primary);
      font-weight: 900;
    }

    .analysis-item h3 {
      font-size: 18px;
      margin-bottom: 3px;
    }

    .compare-card {
      height: 100%;
      padding: 24px;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, #fff, #FBFAFF);
      border: 1px solid var(--line-purple);
    }

    .compare-card h3 {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .compare-card ul {
      padding-left: 0;
      margin: 16px 0 0;
      list-style: none;
    }

    .compare-card li {
      display: flex;
      gap: 9px;
      padding: 7px 0;
      color: var(--text);
      font-size: 14px;
    }

    .compare-card li i {
      color: var(--secondary);
    }

    .review-card {
      height: 100%;
      padding: 22px;
    }

    .review-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 14px;
    }

    .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--gradient);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .review-user {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .review-user strong {
      display: block;
      color: var(--ink);
    }

    .review-user span,
    .review-time {
      color: var(--muted);
      font-size: 12px;
    }

    .rating {
      color: #A34B12;
      background: rgba(255, 138, 61, .13);
      border-radius: 999px;
      padding: 5px 9px;
      font-weight: 900;
      font-size: 12px;
      white-space: nowrap;
    }

    .review-card p {
      color: var(--text);
      font-size: 14px;
      line-height: 1.75;
    }

    .faq-wrap .accordion-item {
      margin-bottom: 12px;
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 10px 26px rgba(40,30,80,.05);
    }

    .faq-wrap .accordion-button {
      color: var(--ink);
      background: #fff;
      font-weight: 900;
      padding: 18px 20px;
      box-shadow: none;
    }

    .faq-wrap .accordion-button:not(.collapsed) {
      color: var(--primary);
      background: rgba(108, 59, 255, .06);
    }

    .faq-wrap .accordion-button:focus {
      border-color: transparent;
      box-shadow: 0 0 0 4px rgba(108, 59, 255, .12);
    }

    .faq-wrap .accordion-body {
      color: var(--text);
      padding: 0 20px 20px;
      font-size: 15px;
      line-height: 1.8;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      padding: 34px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(108,59,255,.92), rgba(20,216,197,.76)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      box-shadow: var(--shadow-strong);
    }

    .cta-band h2,
    .cta-band h3 {
      color: #fff;
    }

    .cta-band p {
      color: rgba(255,255,255,.82);
    }

    .form-card {
      padding: 24px;
    }

    .form-label {
      color: var(--ink);
      font-weight: 800;
      font-size: 14px;
    }

    .form-control,
    .form-select {
      min-height: 48px;
      border-radius: 14px;
      border: 1px solid rgba(20,18,39,.10);
      color: var(--ink);
      background: #fff;
      box-shadow: none;
    }

    textarea.form-control {
      min-height: 112px;
      resize: vertical;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: rgba(108,59,255,.55);
      box-shadow: 0 0 0 4px rgba(108,59,255,.12);
    }

    .site-footer {
      padding: 58px 0 28px;
      color: rgba(255,255,255,.72);
      background: var(--dark);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255,255,255,.72);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--secondary);
    }

    .footer-bottom {
      margin-top: 36px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.10);
      text-align: center;
      font-size: 13px;
      color: rgba(255,255,255,.62);
    }

    .footer-bottom a {
      color: rgba(255,255,255,.72);
      margin: 0 8px;
    }

    .footer-bottom a:hover {
      color: var(--secondary);
    }

    @media (max-width: 1199.98px) {
      .search-shell {
        min-width: 200px;
      }

      .section {
        padding: 72px 0;
      }
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border-radius: 20px;
        background: #fff;
        box-shadow: var(--shadow);
        border: 1px solid var(--line);
      }

      .navbar-nav {
        gap: 6px;
        margin-bottom: 14px;
      }

      .search-shell {
        width: 100%;
      }

      .hero {
        padding: 50px 0;
      }

      .scoreboard {
        margin-top: 30px;
      }

      .split-panel {
        grid-template-columns: 1fr;
      }

      .analysis-item {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767.98px) {
      .section {
        padding: 54px 0;
      }

      .section-tight {
        padding: 42px 0;
      }

      .table-card-head,
      .scoreboard-head {
        flex-direction: column;
      }

      .board-stats {
        grid-template-columns: 1fr;
      }

      .player-grid {
        grid-template-columns: 1fr;
      }

      .magazine-focus {
        min-height: 340px;
      }

      .magazine-content h3 {
        font-size: 23px;
      }

      .cta-band {
        padding: 24px;
        border-radius: 24px;
      }

      .hero-actions .btn-brand,
      .hero-actions .btn-soft {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .navbar-brand {
        font-size: 18px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
      }

      .tag-row {
        gap: 8px;
      }

      .tag {
        font-size: 12px;
      }

      .match-body {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .team.right {
        text-align: left;
      }

      .score {
        width: max-content;
      }

      .metric-number {
        font-size: 28px;
      }

      .footer-bottom a {
        display: inline-block;
        margin: 4px 6px;
      }
    }

    @media (max-width: 420px) {
      h1 {
        font-size: 31px;
      }

      h2 {
        font-size: 26px;
      }

      .metric-card,
      .feature-card,
      .rank-panel,
      .review-card,
      .form-card {
        padding: 18px;
      }
    }

/* roulang page: category2 */
:root{
      --primary:#6C3BFF;
      --secondary:#14D8C5;
      --accent:#FF8A3D;
      --ink:#141225;
      --text:#4C4A5F;
      --muted:#858198;
      --bg:#F8F6FF;
      --bg-soft:#F6F7FB;
      --card:#FFFFFF;
      --dark:#151327;
      --dark-2:#1C1833;
      --border:rgba(20,18,37,.08);
      --border-purple:rgba(108,59,255,.14);
      --shadow:0 18px 45px rgba(40,30,80,.10);
      --shadow-strong:0 24px 70px rgba(40,30,80,.16);
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --pill:999px;
      --gradient:linear-gradient(135deg,#6C3BFF 0%,#14D8C5 55%,#FF8A3D 120%);
      --gradient-soft:linear-gradient(135deg,rgba(108,59,255,.12),rgba(20,216,197,.10),rgba(255,138,61,.10));
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 5%,rgba(108,59,255,.10),transparent 30%),
        radial-gradient(circle at 88% 18%,rgba(20,216,197,.10),transparent 28%),
        linear-gradient(180deg,#fff 0%,var(--bg) 52%,#fff 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    input,textarea{outline:none}
    section{padding:76px 0}
    .container{max-width:1210px}
    .section-tight{padding:54px 0}
    .section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:28px}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      color:var(--primary);font-weight:800;font-size:14px;
      padding:7px 12px;border-radius:var(--pill);
      background:rgba(108,59,255,.08);border:1px solid rgba(108,59,255,.12);
      margin-bottom:10px;
    }
    .section-title{font-size:34px;line-height:1.24;color:var(--ink);font-weight:900;margin:0}
    .section-desc{max-width:680px;color:var(--muted);margin:10px 0 0;font-size:15.5px}
    .site-header{
      position:sticky;top:0;z-index:1000;
      background:rgba(255,255,255,.92);
      backdrop-filter:saturate(160%) blur(14px);
      border-bottom:1px solid rgba(20,18,37,.07);
      box-shadow:0 10px 30px rgba(30,24,60,.04);
    }
    .navbar{min-height:76px;padding:10px 0}
    .navbar-brand,.footer-brand{
      display:inline-flex;align-items:center;gap:10px;
      color:var(--ink);font-weight:900;font-size:20px;
    }
    .brand-mark{
      width:40px;height:40px;border-radius:14px;
      display:inline-flex;align-items:center;justify-content:center;
      color:#fff;background:var(--gradient);
      box-shadow:0 12px 26px rgba(108,59,255,.26);
    }
    .navbar-toggler{
      border:0;border-radius:14px;background:rgba(108,59,255,.08);
      color:var(--primary);width:44px;height:42px;
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(108,59,255,.14)}
    .navbar-nav{gap:4px}
    .nav-link{
      position:relative;border-radius:var(--pill);
      padding:10px 14px!important;
      color:var(--text);font-weight:700;font-size:14.5px;
    }
    .nav-link:hover{color:var(--primary);background:rgba(108,59,255,.06)}
    .nav-link.active{color:var(--primary);background:rgba(108,59,255,.11)}
    .nav-link.active:after{
      content:"";position:absolute;left:18px;right:18px;bottom:5px;height:2px;
      border-radius:6px;background:var(--gradient);
    }
    .search-shell{
      height:42px;min-width:230px;
      display:flex;align-items:center;gap:9px;
      padding:0 14px;border:1px solid var(--border);
      background:#fff;border-radius:var(--pill);
      color:var(--muted);
      transition:all .22s ease;
    }
    .search-shell input{border:0;background:transparent;width:100%;font-size:14px;color:var(--ink)}
    .search-shell:focus-within{
      border-color:rgba(108,59,255,.45);
      box-shadow:0 0 0 4px rgba(108,59,255,.10);
    }
    .btn-brand,.btn-ghost,.btn-mini,.btn-darkline{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      border-radius:var(--pill);font-weight:800;white-space:nowrap;
      transition:all .24s ease;border:0;
    }
    .btn-brand{
      color:#fff;background:var(--gradient);
      padding:11px 18px;box-shadow:0 14px 30px rgba(108,59,255,.24);
    }
    .btn-brand:hover{color:#fff;transform:translateY(-2px);box-shadow:0 18px 38px rgba(108,59,255,.30)}
    .btn-ghost{
      color:var(--primary);background:#fff;border:1px solid rgba(108,59,255,.18);
      padding:11px 18px;
    }
    .btn-ghost:hover{color:var(--primary);background:rgba(108,59,255,.08);transform:translateY(-2px)}
    .btn-mini{
      font-size:13px;padding:7px 12px;color:var(--primary);
      background:rgba(108,59,255,.08);border:1px solid rgba(108,59,255,.12);
    }
    .btn-mini:hover{background:var(--primary);color:#fff}
    .btn-darkline{
      padding:10px 16px;color:#fff;background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
    }
    .btn-darkline:hover{color:#fff;background:rgba(255,255,255,.18);transform:translateY(-2px)}
    .category-hero{
      position:relative;overflow:hidden;
      padding:58px 0 44px;
      background:
        linear-gradient(135deg,rgba(108,59,255,.10),rgba(255,138,61,.09)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      border-bottom:1px solid rgba(108,59,255,.10);
    }
    .category-hero:before{
      content:"";position:absolute;inset:0;
      background:linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.88) 48%,rgba(255,255,255,.68) 100%);
    }
    .category-hero .container{position:relative;z-index:1}
    .hero-kicker{
      display:inline-flex;gap:8px;align-items:center;
      color:var(--accent);font-weight:900;
      background:rgba(255,138,61,.12);
      border:1px solid rgba(255,138,61,.18);
      border-radius:var(--pill);padding:7px 12px;margin-bottom:14px;
    }
    h1{font-size:46px;line-height:1.16;color:var(--ink);font-weight:950;margin:0 0 16px}
    .hero-summary{font-size:17px;max-width:720px;color:var(--text);margin-bottom:18px}
    .hero-tags{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0 24px}
    .tag{
      display:inline-flex;align-items:center;gap:6px;
      padding:7px 12px;border-radius:var(--pill);
      background:#fff;border:1px solid rgba(20,18,37,.08);
      color:var(--text);font-size:13.5px;font-weight:700;
      box-shadow:0 8px 20px rgba(40,30,80,.05);
    }
    .tag.hot{color:#B65319;background:rgba(255,138,61,.12);border-color:rgba(255,138,61,.18)}
    .tag.live{color:#087B70;background:rgba(20,216,197,.12);border-color:rgba(20,216,197,.18)}
    .hero-panel{
      background:var(--dark);
      border:1px solid rgba(255,255,255,.12);
      border-radius:var(--radius-lg);
      padding:22px;
      box-shadow:0 22px 65px rgba(20,18,39,.22);
      color:#fff;position:relative;overflow:hidden;
    }
    .hero-panel:before{
      content:"";position:absolute;width:190px;height:190px;border-radius:50%;
      background:rgba(20,216,197,.22);right:-80px;top:-80px;filter:blur(4px);
    }
    .hero-panel>*{position:relative;z-index:1}
    .panel-title{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:16px}
    .panel-title strong{font-size:19px}
    .update-pill{font-size:12px;color:#BFFAF3;background:rgba(20,216,197,.13);border:1px solid rgba(20,216,197,.24);border-radius:var(--pill);padding:5px 9px}
    .hero-stat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
    .hero-stat{
      background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.10);
      border-radius:18px;padding:14px;
    }
    .hero-stat span{display:block;color:rgba(255,255,255,.66);font-size:13px}
    .hero-stat b{font-size:28px;color:#fff;line-height:1.2}
    .game-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
    .game-card{
      grid-column:span 4;
      min-height:245px;
      border-radius:var(--radius-lg);
      background:#fff;border:1px solid var(--border-purple);
      box-shadow:var(--shadow);
      overflow:hidden;position:relative;
      transition:all .24s ease;
    }
    .game-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-strong);border-color:rgba(108,59,255,.28)}
    .game-card.wide{grid-column:span 6}
    .game-cover{height:118px;position:relative;overflow:hidden}
    .game-cover img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
    .game-card:hover .game-cover img{transform:scale(1.05)}
    .game-cover:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent,rgba(20,18,37,.48))}
    .game-icon{
      position:absolute;left:18px;bottom:14px;z-index:1;
      width:44px;height:44px;border-radius:16px;background:var(--gradient);
      display:flex;align-items:center;justify-content:center;color:#fff;font-size:21px;
      box-shadow:0 12px 24px rgba(0,0,0,.22);
    }
    .game-body{padding:18px}
    .game-body h3{font-size:21px;font-weight:900;color:var(--ink);margin:0 0 8px}
    .game-body p{font-size:14.5px;color:var(--muted);margin:0 0 14px;line-height:1.65}
    .data-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px}
    .chip{
      font-size:12px;font-weight:800;border-radius:var(--pill);padding:5px 9px;
      color:var(--primary);background:rgba(108,59,255,.08);border:1px solid rgba(108,59,255,.10);
    }
    .chip.orange{color:#B65319;background:rgba(255,138,61,.12);border-color:rgba(255,138,61,.18)}
    .topic-layout{display:grid;grid-template-columns:1.12fr .88fr;gap:22px;align-items:stretch}
    .feature-topic{
      position:relative;min-height:475px;border-radius:var(--radius-lg);
      overflow:hidden;box-shadow:var(--shadow-strong);background:var(--dark);color:#fff;
    }
    .feature-topic img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;opacity:.74}
    .feature-topic:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(20,18,37,.10),rgba(20,18,37,.92))}
    .feature-content{position:absolute;z-index:1;left:26px;right:26px;bottom:26px}
    .feature-content h3{font-size:31px;line-height:1.22;font-weight:950;margin:12px 0;color:#fff}
    .feature-content p{color:rgba(255,255,255,.80);margin-bottom:18px}
    .side-topics{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
    .topic-card{
      background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
      overflow:hidden;box-shadow:var(--shadow);transition:all .24s ease;
    }
    .topic-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-strong)}
    .topic-card img{width:100%;aspect-ratio:16/10;object-fit:cover}
    .topic-card .p{padding:16px}
    .topic-card h3{font-size:18px;font-weight:900;color:var(--ink);margin:0 0 8px}
    .topic-card p{font-size:14px;color:var(--muted);margin:0 0 12px;line-height:1.62}
    .badge-soft{
      display:inline-flex;align-items:center;gap:5px;
      border-radius:var(--pill);padding:5px 9px;
      font-size:12px;font-weight:900;
      color:var(--accent);background:rgba(255,138,61,.12);border:1px solid rgba(255,138,61,.18);
    }
    .table-card,.replay-card,.comment-card,.faq-wrap,.cta-card{
      background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
    }
    .table-card{padding:8px 8px 0;overflow:hidden}
    .custom-table{margin:0;min-width:760px}
    .custom-table thead th{
      background:#FBFAFF;color:var(--ink);font-size:13px;
      padding:16px;border-bottom:1px solid var(--border);white-space:nowrap;
    }
    .custom-table tbody td{
      padding:16px;border-bottom:1px solid rgba(20,18,37,.06);
      color:var(--text);vertical-align:middle;font-size:14px;white-space:nowrap;
    }
    .custom-table tbody tr:hover td{background:rgba(108,59,255,.045)}
    .rank-num{
      width:28px;height:28px;border-radius:10px;
      display:inline-flex;align-items:center;justify-content:center;
      color:#fff;font-weight:900;background:var(--gradient);
    }
    .heat-bar{height:8px;background:rgba(108,59,255,.09);border-radius:var(--pill);overflow:hidden;min-width:130px}
    .heat-bar span{display:block;height:100%;border-radius:var(--pill);background:var(--gradient)}
    .masonry{columns:3 260px;column-gap:18px}
    .masonry-card{
      display:inline-block;width:100%;break-inside:avoid;
      margin:0 0 18px;background:#fff;border:1px solid var(--border);
      border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);
      transition:all .24s ease;
    }
    .masonry-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-strong)}
    .masonry-card img{width:100%;aspect-ratio:16/11;object-fit:cover}
    .masonry-card.tall img{aspect-ratio:4/3}
    .masonry-body{padding:18px}
    .masonry-body h3{font-size:20px;color:var(--ink);font-weight:900;margin:10px 0 8px}
    .masonry-body p{font-size:14.5px;color:var(--muted);line-height:1.65;margin:0 0 14px}
    .replay-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
    .replay-card{padding:22px;display:flex;gap:16px;align-items:flex-start;transition:all .24s ease}
    .replay-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-strong)}
    .replay-icon{
      flex:0 0 48px;height:48px;border-radius:17px;display:flex;align-items:center;justify-content:center;
      background:var(--gradient);color:#fff;font-size:22px;
    }
    .replay-card h3{font-size:19px;font-weight:900;color:var(--ink);margin:0 0 7px}
    .replay-card p{font-size:14.5px;color:var(--muted);margin:0 0 12px;line-height:1.65}
    .comment-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    .comment-card{padding:20px;transition:all .24s ease}
    .comment-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-strong)}
    .comment-top{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:14px}
    .avatar{
      width:42px;height:42px;border-radius:50%;
      display:inline-flex;align-items:center;justify-content:center;
      color:#fff;font-weight:900;background:var(--gradient);
    }
    .user-name{font-weight:900;color:var(--ink);line-height:1.25}
    .user-label{font-size:12px;color:var(--muted)}
    .score{font-size:12px;font-weight:900;color:#B65319;background:rgba(255,138,61,.12);border-radius:var(--pill);padding:4px 8px}
    .comment-card p{font-size:14.5px;color:var(--text);line-height:1.7;margin:0 0 10px}
    .comment-time{font-size:12.5px;color:var(--muted)}
    .faq-wrap{padding:10px}
    .accordion-item{border:0;border-bottom:1px solid rgba(20,18,37,.07);background:transparent}
    .accordion-item:last-child{border-bottom:0}
    .accordion-button{
      padding:18px 18px;color:var(--ink);font-weight:900;background:#fff;border-radius:16px!important;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){color:var(--primary);background:rgba(108,59,255,.07)}
    .accordion-button:focus{box-shadow:0 0 0 4px rgba(108,59,255,.10)!important}
    .accordion-body{padding:0 18px 18px;color:var(--text);font-size:15px;line-height:1.75}
    .cta-section{padding-top:20px}
    .cta-card{
      position:relative;overflow:hidden;padding:34px;
      background:
        linear-gradient(135deg,rgba(21,19,39,.96),rgba(28,24,51,.94)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      color:#fff;border-color:rgba(255,255,255,.10);
    }
    .cta-card:before{content:"";position:absolute;right:-120px;top:-120px;width:260px;height:260px;background:rgba(20,216,197,.24);border-radius:50%}
    .cta-card>*{position:relative;z-index:1}
    .cta-card h2{font-size:32px;font-weight:950;margin:0 0 10px}
    .cta-card p{color:rgba(255,255,255,.74);max-width:690px;margin-bottom:0}
    .mini-form{display:grid;grid-template-columns:1fr 1fr auto;gap:12px;margin-top:22px}
    .mini-form input,.mini-form select{
      height:48px;border-radius:14px;border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.10);color:#fff;padding:0 14px;
    }
    .mini-form input::placeholder{color:rgba(255,255,255,.58)}
    .mini-form input:focus,.mini-form select:focus{border-color:rgba(20,216,197,.65);box-shadow:0 0 0 4px rgba(20,216,197,.12)}
    .mini-form select option{color:var(--ink)}
    .site-footer{
      background:var(--dark);color:rgba(255,255,255,.72);
      padding:56px 0 24px;margin-top:48px;
    }
    .site-footer .brand-mark{box-shadow:none}
    .footer-brand{color:#fff;margin-bottom:14px}
    .site-footer p{max-width:360px;font-size:14.5px;color:rgba(255,255,255,.68)}
    .footer-title{font-size:15px;color:#fff;font-weight:900;margin-bottom:12px}
    .footer-links{display:flex;flex-direction:column;gap:9px}
    .footer-links a{font-size:14px;color:rgba(255,255,255,.68)}
    .footer-links a:hover{color:var(--secondary);transform:translateX(3px)}
    .footer-bottom{
      margin-top:36px;padding-top:22px;border-top:1px solid rgba(255,255,255,.10);
      text-align:center;display:flex;flex-direction:column;gap:7px;
      font-size:13px;color:rgba(255,255,255,.62);
    }
    .footer-bottom a{color:rgba(255,255,255,.72)}
    .footer-bottom a:hover{color:var(--secondary)}
    @media (max-width:1199px){
      .game-card{grid-column:span 6}
      .topic-layout{grid-template-columns:1fr}
      .feature-topic{min-height:390px}
      .comment-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991px){
      section{padding:58px 0}
      .navbar-collapse{
        margin-top:12px;background:#fff;border:1px solid var(--border);
        border-radius:22px;padding:14px;box-shadow:var(--shadow);
      }
      .search-shell{width:100%;min-width:0}
      .nav-link.active:after{display:none}
      h1{font-size:38px}
      .section-title{font-size:30px}
      .hero-panel{margin-top:24px}
      .side-topics{grid-template-columns:1fr 1fr}
      .replay-grid{grid-template-columns:1fr}
      .mini-form{grid-template-columns:1fr}
    }
    @media (max-width:767px){
      section{padding:48px 0}
      .category-hero{padding:44px 0 38px}
      h1{font-size:32px}
      .hero-summary{font-size:15.5px}
      .section-head{display:block}
      .game-grid{display:block}
      .game-card,.game-card.wide{margin-bottom:16px}
      .hero-stat-grid{grid-template-columns:1fr 1fr}
      .side-topics{grid-template-columns:1fr}
      .feature-topic{min-height:355px}
      .feature-content h3{font-size:25px}
      .comment-grid{grid-template-columns:1fr}
      .masonry{columns:1}
      .cta-card{padding:24px}
      .cta-card h2{font-size:26px}
    }
    @media (max-width:520px){
      .container{padding-left:18px;padding-right:18px}
      .hero-stat-grid{grid-template-columns:1fr}
      .hero-tags{gap:8px}
      .tag{font-size:12.5px;padding:6px 10px}
      .section-title{font-size:26px}
      .replay-card{display:block}
      .replay-icon{margin-bottom:12px}
      .footer-bottom{font-size:12.5px}
    }

/* roulang page: category1 */
:root{
      --primary:#6C3BFF;
      --secondary:#14D8C5;
      --accent:#FF8A3D;
      --ink:#141225;
      --text:#4C4A5F;
      --muted:#858198;
      --bg:#F6F7FB;
      --soft:#F8F6FF;
      --card:#FFFFFF;
      --dark:#151327;
      --dark-2:#1C1833;
      --line:rgba(20,18,39,.08);
      --primary-line:rgba(108,59,255,.14);
      --shadow:0 18px 45px rgba(40,30,80,.10);
      --shadow-strong:0 24px 70px rgba(35,27,72,.16);
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --pill:999px;
      --container:1200px;
      --gradient:linear-gradient(135deg,#6C3BFF 0%,#14D8C5 55%,#FF8A3D 120%);
      --cyan-soft:rgba(20,216,197,.12);
      --purple-soft:rgba(108,59,255,.10);
      --orange-soft:rgba(255,138,61,.13);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 10% 5%,rgba(108,59,255,.08),transparent 30%),
        radial-gradient(circle at 88% 18%,rgba(20,216,197,.10),transparent 28%),
        var(--bg);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(20,216,197,.35);
      outline-offset:3px;
      border-radius:12px;
    }
    .container{max-width:var(--container)}
    .section{padding:78px 0}
    .section-sm{padding:54px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:22px;
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-size:14px;
      font-weight:800;
      padding:7px 12px;
      border-radius:var(--pill);
      background:var(--purple-soft);
      margin-bottom:12px;
    }
    h1,h2,h3,h4{color:var(--ink);font-weight:900;letter-spacing:0;margin:0}
    h1{font-size:46px;line-height:1.14}
    h2{font-size:32px;line-height:1.25}
    h3{font-size:22px;line-height:1.35}
    p{margin:0}
    .lead-text{font-size:17px;color:var(--text);line-height:1.85}
    .muted{color:var(--muted)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(16px);
      border-bottom:1px solid var(--line);
      box-shadow:0 8px 24px rgba(35,27,72,.04);
    }
    .navbar{min-height:76px;padding:12px 0}
    .navbar-brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      color:var(--ink);
      font-size:21px;
      white-space:nowrap;
    }
    .brand-mark{
      width:40px;
      height:40px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      color:#fff;
      background:var(--gradient);
      box-shadow:0 12px 26px rgba(108,59,255,.25);
      position:relative;
      overflow:hidden;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:5px;
      border:1px solid rgba(255,255,255,.42);
      border-radius:11px;
    }
    .navbar-toggler{
      border:0;
      width:42px;
      height:42px;
      border-radius:14px;
      background:var(--purple-soft);
      color:var(--primary);
      box-shadow:none!important;
    }
    .navbar-toggler i{font-size:25px}
    .navbar-nav{gap:4px}
    .nav-link{
      position:relative;
      color:var(--text);
      font-weight:800;
      font-size:15px;
      padding:10px 14px!important;
      border-radius:var(--pill);
    }
    .nav-link:hover{color:var(--primary);background:var(--purple-soft)}
    .nav-link.active{
      color:var(--primary)!important;
      background:rgba(108,59,255,.12);
    }
    .nav-link.active:after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:4px;
      height:3px;
      border-radius:var(--pill);
      background:var(--gradient);
    }
    .search-shell{
      height:44px;
      min-width:230px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      border:1px solid var(--line);
      border-radius:var(--pill);
      background:#fff;
      color:var(--muted);
      transition:.22s ease;
    }
    .search-shell:focus-within{
      border-color:rgba(108,59,255,.38);
      box-shadow:0 0 0 5px rgba(108,59,255,.08);
    }
    .search-shell input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--ink);
      font-size:14px;
    }
    .btn-brand,.btn-ghost,.btn-live,.btn-small{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:0;
      cursor:pointer;
      font-weight:900;
      white-space:nowrap;
      transition:all .24s ease;
      text-decoration:none;
    }
    .btn-brand{
      min-height:44px;
      padding:10px 18px;
      border-radius:var(--pill);
      color:#fff;
      background:var(--gradient);
      box-shadow:0 14px 30px rgba(108,59,255,.22);
    }
    .btn-brand:hover{transform:translateY(-2px);color:#fff;box-shadow:0 18px 38px rgba(108,59,255,.30)}
    .btn-ghost{
      min-height:44px;
      padding:10px 18px;
      border-radius:var(--pill);
      color:var(--primary);
      background:#fff;
      border:1px solid rgba(108,59,255,.18);
    }
    .btn-ghost:hover{background:rgba(108,59,255,.08);color:var(--primary);transform:translateY(-2px)}
    .btn-live{
      min-height:36px;
      padding:7px 13px;
      border-radius:var(--pill);
      color:#fff;
      background:linear-gradient(135deg,var(--accent),#ffb36d);
      box-shadow:0 10px 22px rgba(255,138,61,.22);
      font-size:13px;
    }
    .btn-live:hover{color:#fff;transform:translateY(-2px)}
    .btn-small{
      min-height:32px;
      padding:6px 11px;
      border-radius:var(--pill);
      color:var(--primary);
      background:var(--purple-soft);
      font-size:13px;
    }
    .btn-small:hover{background:rgba(108,59,255,.16);color:var(--primary)}
    .page-hero{
      position:relative;
      padding:54px 0 36px;
      overflow:hidden;
      border-bottom:1px solid var(--line);
      background:
        linear-gradient(135deg,rgba(255,255,255,.96),rgba(248,246,255,.88)),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
    }
    .page-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(108,59,255,.045) 1px,transparent 1px),
        linear-gradient(90deg,rgba(108,59,255,.045) 1px,transparent 1px);
      background-size:28px 28px;
      mask-image:linear-gradient(90deg,#000 0%,transparent 85%);
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:1}
    .breadcrumb-lite{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:var(--muted);
      font-size:14px;
      margin-bottom:18px;
    }
    .breadcrumb-lite a:hover{color:var(--primary)}
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:20px;
    }
    .tag,.status-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 12px;
      border-radius:var(--pill);
      font-size:13px;
      font-weight:800;
      border:1px solid var(--line);
      background:#fff;
      color:var(--text);
    }
    .tag.hot{border-color:rgba(255,138,61,.26);background:var(--orange-soft);color:#b85b19}
    .tag.live{border-color:rgba(20,216,197,.32);background:var(--cyan-soft);color:#088d82}
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}
    .hero-panel{
      background:var(--dark);
      color:rgba(255,255,255,.78);
      border-radius:var(--radius-lg);
      padding:22px;
      border:1px solid rgba(255,255,255,.10);
      box-shadow:var(--shadow-strong);
      position:relative;
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      width:220px;
      height:220px;
      right:-70px;
      top:-90px;
      background:radial-gradient(circle,rgba(20,216,197,.35),transparent 62%);
    }
    .panel-title{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      color:#fff;
      font-weight:900;
      margin-bottom:18px;
    }
    .update-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:6px 10px;
      border-radius:var(--pill);
      color:#8ff4ea;
      background:rgba(20,216,197,.12);
      font-size:12px;
      font-weight:800;
    }
    .hero-stat-grid{
      position:relative;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
    }
    .hero-stat{
      padding:15px;
      border-radius:16px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.10);
    }
    .hero-stat strong{
      display:block;
      color:#fff;
      font-size:28px;
      line-height:1.1;
    }
    .hero-stat span{font-size:13px;color:rgba(255,255,255,.66)}
    .metric-card,.content-card,.table-card,.rank-card,.note-card,.faq-wrap,.cta-card,.review-card{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
    }
    .metric-card{
      height:100%;
      padding:22px;
      transition:.24s ease;
    }
    .metric-card:hover{
      transform:translateY(-3px);
      border-color:rgba(108,59,255,.28);
      box-shadow:var(--shadow-strong);
    }
    .metric-icon{
      width:42px;
      height:42px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:15px;
      color:#fff;
      background:var(--gradient);
      margin-bottom:14px;
    }
    .metric-value{
      color:var(--ink);
      font-size:34px;
      line-height:1.1;
      font-weight:950;
    }
    .metric-label{font-weight:900;color:var(--ink);margin-top:5px}
    .metric-desc{font-size:14px;color:var(--muted);line-height:1.55;margin-top:4px}
    .filter-bar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding:16px;
      border-radius:var(--radius-md);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 12px 34px rgba(40,30,80,.06);
      margin-bottom:18px;
    }
    .filter-tabs{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .filter-tab{
      border:0;
      padding:8px 13px;
      border-radius:var(--pill);
      background:var(--soft);
      color:var(--text);
      font-size:14px;
      font-weight:850;
      transition:.22s ease;
    }
    .filter-tab:hover,.filter-tab.active{
      color:#fff;
      background:var(--gradient);
      box-shadow:0 10px 22px rgba(108,59,255,.18);
    }
    .data-time{
      display:inline-flex;
      align-items:center;
      gap:7px;
      font-size:13px;
      font-weight:800;
      color:#078f83;
      padding:8px 12px;
      border-radius:var(--pill);
      background:var(--cyan-soft);
    }
    .table-card{
      padding:0;
      overflow:hidden;
    }
    .table-title{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      align-items:center;
      padding:22px 24px;
      border-bottom:1px solid var(--line);
    }
    .table-title h3{font-size:21px}
    .table-responsive{border-radius:0}
    .schedule-table{
      margin:0;
      min-width:980px;
      color:var(--text);
      vertical-align:middle;
    }
    .schedule-table thead th{
      padding:15px 18px;
      background:#FBFAFF;
      color:var(--ink);
      font-size:13px;
      font-weight:950;
      border-bottom:1px solid var(--line);
      white-space:nowrap;
    }
    .schedule-table tbody td{
      padding:17px 18px;
      border-bottom:1px solid rgba(20,18,39,.06);
      font-size:14px;
      white-space:nowrap;
    }
    .schedule-table tbody tr{transition:.18s ease}
    .schedule-table tbody tr:hover{background:rgba(20,216,197,.055)}
    .game-cell{
      display:flex;
      align-items:center;
      gap:9px;
      font-weight:900;
      color:var(--ink);
    }
    .game-dot{
      width:11px;
      height:11px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(108,59,255,.10);
    }
    .score{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:56px;
      padding:5px 9px;
      border-radius:10px;
      color:var(--ink);
      font-weight:950;
      background:#F1EEFF;
    }
    .status-pill{padding:6px 10px;border:0}
    .status-live{color:#078f83;background:var(--cyan-soft)}
    .status-live:before,.status-hot:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--secondary);
      box-shadow:0 0 0 4px rgba(20,216,197,.14);
    }
    .status-soon{color:var(--primary);background:var(--purple-soft)}
    .status-done{color:#68657a;background:rgba(20,18,39,.07)}
    .status-hot{color:#b85b19;background:var(--orange-soft)}
    .side-grid{display:grid;gap:18px}
    .note-card{padding:24px}
    .note-list{display:grid;gap:14px;margin-top:18px}
    .note-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:16px;
      background:#FBFAFF;
      border:1px solid rgba(108,59,255,.08);
    }
    .note-item i{
      width:32px;
      height:32px;
      flex:0 0 auto;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:12px;
      color:var(--primary);
      background:var(--purple-soft);
    }
    .note-item strong{display:block;color:var(--ink);font-weight:900}
    .note-item span{display:block;color:var(--muted);font-size:14px;line-height:1.55}
    .live-entry{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:center;
      padding:16px;
      border:1px solid var(--line);
      border-radius:18px;
      background:#fff;
      transition:.22s ease;
    }
    .live-entry:hover{transform:translateY(-2px);border-color:rgba(20,216,197,.32);box-shadow:0 14px 32px rgba(20,216,197,.09)}
    .live-entry + .live-entry{margin-top:12px}
    .live-entry strong{color:var(--ink)}
    .live-entry small{color:var(--muted)}
    .rank-card{padding:24px}
    .rank-list{display:grid;gap:14px;margin-top:18px}
    .rank-row{
      display:grid;
      grid-template-columns:42px 1fr auto;
      gap:12px;
      align-items:center;
      padding:14px;
      border-radius:17px;
      background:#FBFAFF;
      border:1px solid rgba(20,18,39,.06);
    }
    .rank-no{
      width:34px;
      height:34px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:13px;
      color:#fff;
      background:var(--gradient);
      font-weight:950;
    }
    .rank-row:nth-child(n+4) .rank-no{background:#ECEAF6;color:var(--text)}
    .rank-name{font-weight:900;color:var(--ink)}
    .rank-meta{font-size:13px;color:var(--muted)}
    .rank-score{
      min-width:58px;
      text-align:right;
      color:var(--primary);
      font-weight:950;
    }
    .progress-lite{
      height:7px;
      background:#ECEAF6;
      border-radius:var(--pill);
      overflow:hidden;
      margin-top:8px;
    }
    .progress-lite span{
      display:block;
      height:100%;
      border-radius:var(--pill);
      background:var(--gradient);
    }
    .feature-card{
      position:relative;
      min-height:240px;
      overflow:hidden;
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      border:1px solid var(--line);
      background:#fff;
    }
    .feature-card img{
      width:100%;
      height:100%;
      min-height:240px;
      object-fit:cover;
      aspect-ratio:16/9;
    }
    .feature-overlay{
      position:absolute;
      inset:auto 0 0;
      padding:24px;
      background:linear-gradient(0deg,rgba(20,18,39,.86),rgba(20,18,39,.08));
      color:#fff;
    }
    .feature-overlay h3{color:#fff;margin-bottom:8px}
    .mini-card{
      height:100%;
      padding:22px;
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      background:#fff;
      box-shadow:0 14px 36px rgba(40,30,80,.07);
      transition:.22s ease;
    }
    .mini-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
    .mini-card h3{font-size:20px;margin:10px 0 8px}
    .mini-card p{font-size:14px;color:var(--muted);line-height:1.65}
    .analysis-strip{
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,#151327,#241f45);
      color:rgba(255,255,255,.76);
      padding:28px;
      overflow:hidden;
      position:relative;
      border:1px solid rgba(255,255,255,.10);
      box-shadow:var(--shadow-strong);
    }
    .analysis-strip:after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-80px;
      bottom:-120px;
      background:radial-gradient(circle,rgba(255,138,61,.30),transparent 63%);
    }
    .analysis-strip h2{color:#fff}
    .analysis-items{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:22px;
    }
    .analysis-item{
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.10);
    }
    .analysis-item strong{display:block;color:#fff;margin-bottom:6px}
    .analysis-item span{font-size:14px;color:rgba(255,255,255,.66)}
    .review-card{
      height:100%;
      padding:22px;
      transition:.22s ease;
    }
    .review-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-strong)}
    .review-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      margin-bottom:14px;
    }
    .avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-weight:950;
      background:var(--gradient);
      flex:0 0 auto;
    }
    .review-name{font-weight:950;color:var(--ink)}
    .review-tag{font-size:12px;color:var(--muted)}
    .rating{
      padding:5px 9px;
      border-radius:var(--pill);
      color:#b85b19;
      background:var(--orange-soft);
      font-size:13px;
      font-weight:900;
    }
    .review-card p{font-size:14px;line-height:1.7;color:var(--text)}
    .review-time{margin-top:12px;font-size:13px;color:var(--muted)}
    .faq-wrap{padding:10px;overflow:hidden}
    .accordion-item{
      border:0!important;
      border-bottom:1px solid var(--line)!important;
      background:transparent;
    }
    .accordion-item:last-child{border-bottom:0!important}
    .accordion-button{
      padding:20px 18px;
      font-weight:950;
      color:var(--ink);
      background:#fff;
      box-shadow:none!important;
      border-radius:16px!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary);
      background:rgba(108,59,255,.06);
    }
    .accordion-button::after{
      background-size:16px;
      filter:hue-rotate(220deg) saturate(1.5);
    }
    .accordion-body{
      padding:0 18px 20px;
      color:var(--text);
      font-size:15px;
      line-height:1.8;
    }
    .cta-card{
      position:relative;
      overflow:hidden;
      padding:34px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.95),rgba(248,246,255,.94)),
        url('/assets/images/coverpic/cover-2.webp') center/cover no-repeat;
    }
    .cta-card:before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 86% 15%,rgba(20,216,197,.18),transparent 30%);
      pointer-events:none;
    }
    .cta-card .row{position:relative;z-index:1}
    .form-card{
      padding:22px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 14px 36px rgba(40,30,80,.08);
    }
    .form-control,.form-select{
      min-height:48px;
      border-radius:14px;
      border:1px solid rgba(20,18,39,.10);
      color:var(--ink);
      box-shadow:none!important;
    }
    textarea.form-control{min-height:96px}
    .form-control:focus,.form-select:focus{
      border-color:rgba(108,59,255,.48);
      box-shadow:0 0 0 5px rgba(108,59,255,.08)!important;
    }
    .site-footer{
      background:var(--dark);
      color:rgba(255,255,255,.72);
      padding:58px 0 26px;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .site-footer .footer-brand{color:#fff;margin-bottom:16px}
    .site-footer p{font-size:14px;line-height:1.8;color:rgba(255,255,255,.66)}
    .footer-title{
      color:#fff;
      font-weight:950;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.68);
      font-size:14px;
    }
    .footer-links a:hover{color:var(--secondary);transform:translateX(3px)}
    .footer-bottom{
      margin-top:36px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.10);
      text-align:center;
      display:grid;
      gap:7px;
      color:rgba(255,255,255,.56);
      font-size:13px;
    }
    .footer-bottom a{color:rgba(255,255,255,.68)}
    .footer-bottom a:hover{color:var(--secondary)}
    @media (max-width:1199.98px){
      h1{font-size:40px}
      .search-shell{min-width:190px}
      .analysis-items{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991.98px){
      .navbar-collapse{
        margin-top:14px;
        padding:16px;
        background:#fff;
        border:1px solid var(--line);
        border-radius:22px;
        box-shadow:var(--shadow);
      }
      .navbar-nav{gap:6px;margin-bottom:14px}
      .search-shell{width:100%}
      .page-hero{padding:42px 0 28px}
      h1{font-size:36px}
      h2{font-size:29px}
      .hero-panel{margin-top:24px}
      .section{padding:62px 0}
      .section-head{align-items:flex-start;flex-direction:column}
    }
    @media (max-width:767.98px){
      body{line-height:1.7}
      .section{padding:52px 0}
      .section-sm{padding:42px 0}
      h1{font-size:32px}
      h2{font-size:26px}
      h3{font-size:20px}
      .lead-text{font-size:16px}
      .hero-stat-grid,.analysis-items{grid-template-columns:1fr}
      .filter-bar{align-items:flex-start}
      .table-title{padding:18px}
      .schedule-table thead th,.schedule-table tbody td{padding:13px 14px}
      .rank-row{grid-template-columns:36px 1fr;gap:10px}
      .rank-score{grid-column:2;text-align:left}
      .cta-card{padding:22px}
    }
    @media (max-width:520px){
      .navbar{min-height:68px}
      .brand-mark{width:36px;height:36px;border-radius:13px}
      .navbar-brand{font-size:19px}
      .hero-actions .btn-brand,.hero-actions .btn-ghost{width:100%}
      .metric-value{font-size:30px}
      .filter-tabs{width:100%;overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}
      .filter-tab{flex:0 0 auto}
      .live-entry{align-items:flex-start;flex-direction:column}
      .btn-live,.btn-small{width:100%}
    }
    @media (max-width:420px){
      h1{font-size:30px}
      .hero-tags .tag{font-size:12px}
      .metric-card,.note-card,.rank-card,.review-card{padding:18px}
      .section-kicker{font-size:13px}
    }

/* roulang page: category4 */
:root{
      --primary:#6C3BFF;
      --secondary:#14D8C5;
      --accent:#FF8A3D;
      --ink:#141225;
      --text:#4C4A5F;
      --muted:#858198;
      --bg:#F7F6FF;
      --soft:#F2F4FB;
      --card:#FFFFFF;
      --dark:#151327;
      --dark-2:#1C1833;
      --border:rgba(20,18,37,.09);
      --border-purple:rgba(108,59,255,.14);
      --shadow:0 18px 45px rgba(40,30,80,.10);
      --shadow-strong:0 24px 70px rgba(20,18,39,.16);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --gradient:linear-gradient(135deg,#6C3BFF 0%,#14D8C5 55%,#FF8A3D 120%);
      --gradient-soft:linear-gradient(135deg,rgba(108,59,255,.12),rgba(20,216,197,.10),rgba(255,138,61,.10));
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 8%,rgba(108,59,255,.10),transparent 34%),
        radial-gradient(circle at 88% 18%,rgba(20,216,197,.10),transparent 32%),
        linear-gradient(180deg,#fff 0%,var(--bg) 42%,#fff 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(108,59,255,.18);color:var(--ink)}
    .container{max-width:1220px}
    .section{padding:78px 0}
    .section-tight{padding:54px 0}
    .section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:28px}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      background:rgba(108,59,255,.09);
      color:var(--primary);
      font-size:13px;
      font-weight:700;
      margin-bottom:12px;
    }
    .section-title{font-size:34px;line-height:1.25;color:var(--ink);font-weight:850;margin:0}
    .section-desc{max-width:660px;margin:10px 0 0;color:var(--muted);font-size:15px}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(255,255,255,.92);
      backdrop-filter:saturate(180%) blur(14px);
      border-bottom:1px solid rgba(20,18,37,.08);
      box-shadow:0 8px 26px rgba(20,18,37,.04);
    }
    .navbar{min-height:76px;padding:10px 0}
    .navbar-brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:11px;
      color:var(--ink);
      font-weight:900;
      letter-spacing:0;
    }
    .brand-mark{
      width:40px;
      height:40px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      color:#fff;
      background:var(--gradient);
      box-shadow:0 12px 28px rgba(108,59,255,.26);
      flex:0 0 auto;
    }
    .navbar-brand span:last-child{font-size:20px}
    .navbar-toggler{
      border:0;
      width:44px;
      height:44px;
      border-radius:14px;
      background:rgba(108,59,255,.08);
      color:var(--primary);
      box-shadow:none!important;
    }
    .navbar-toggler:focus{outline:3px solid rgba(108,59,255,.18)}
    .navbar-nav{gap:6px}
    .nav-link{
      position:relative;
      color:var(--text);
      font-size:15px;
      font-weight:700;
      padding:10px 14px!important;
      border-radius:var(--radius-pill);
    }
    .nav-link:hover{color:var(--primary);background:rgba(108,59,255,.06)}
    .nav-link.active{
      color:var(--primary)!important;
      background:rgba(108,59,255,.10);
    }
    .nav-link.active:after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:4px;
      height:3px;
      border-radius:99px;
      background:var(--gradient);
    }
    .search-shell{
      height:42px;
      min-width:230px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      border:1px solid var(--border);
      border-radius:var(--radius-pill);
      background:#fff;
      color:var(--muted);
      transition:all .22s ease;
    }
    .search-shell:focus-within{
      border-color:rgba(108,59,255,.45);
      box-shadow:0 0 0 4px rgba(108,59,255,.10);
    }
    .search-shell input{
      width:100%;
      border:0;
      outline:0;
      color:var(--ink);
      background:transparent;
      font-size:14px;
    }
    .btn-brand,.btn-soft,.btn-darkline,.btn-mini{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:0;
      border-radius:var(--radius-pill);
      font-weight:800;
      line-height:1;
      transition:all .22s ease;
      white-space:nowrap;
    }
    .btn-brand{
      min-height:44px;
      padding:13px 18px;
      color:#fff;
      background:var(--gradient);
      box-shadow:0 14px 30px rgba(108,59,255,.22);
    }
    .btn-brand:hover{color:#fff;transform:translateY(-2px);box-shadow:0 18px 38px rgba(108,59,255,.30)}
    .btn-soft{
      min-height:44px;
      padding:13px 18px;
      color:var(--primary);
      background:rgba(108,59,255,.09);
      border:1px solid rgba(108,59,255,.14);
    }
    .btn-soft:hover{color:var(--primary);background:rgba(108,59,255,.14);transform:translateY(-2px)}
    .btn-darkline{
      min-height:42px;
      padding:12px 16px;
      color:#fff;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.08);
    }
    .btn-darkline:hover{color:#fff;background:rgba(255,255,255,.14);transform:translateY(-2px)}
    .btn-mini{
      min-height:32px;
      padding:9px 12px;
      color:var(--primary);
      background:rgba(108,59,255,.08);
      font-size:13px;
    }
    .btn-mini:hover{background:rgba(108,59,255,.14);color:var(--primary)}
    a:focus-visible,.btn-brand:focus-visible,.btn-soft:focus-visible,.btn-mini:focus-visible,input:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(20,216,197,.28);
      outline-offset:3px;
    }

    .compact-hero{
      position:relative;
      padding:56px 0 42px;
      overflow:hidden;
      background:
        linear-gradient(135deg,rgba(255,255,255,.96),rgba(248,246,255,.84)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      border-bottom:1px solid rgba(20,18,37,.08);
    }
    .compact-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(108,59,255,.08) 1px,transparent 1px),
        linear-gradient(90deg,rgba(20,216,197,.07) 1px,transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(90deg,#000 0%,transparent 85%);
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:1}
    .breadcrumb-lite{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      color:var(--muted);
      font-size:14px;
      font-weight:650;
    }
    .breadcrumb-lite a:hover{color:var(--primary)}
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:var(--radius-pill);
      background:#fff;
      border:1px solid rgba(108,59,255,.14);
      color:var(--primary);
      font-size:13px;
      font-weight:800;
      box-shadow:0 10px 24px rgba(40,30,80,.07);
      margin-bottom:16px;
    }
    .compact-hero h1{
      max-width:780px;
      color:var(--ink);
      font-size:46px;
      line-height:1.15;
      font-weight:900;
      margin:0 0 14px;
    }
    .compact-hero .lead{
      max-width:760px;
      color:#4f4b63;
      font-size:17px;
      line-height:1.8;
      margin:0 0 20px;
    }
    .tag-row{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 0}
    .tag-chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      border:1px solid rgba(20,18,37,.08);
      background:rgba(255,255,255,.84);
      color:var(--text);
      font-size:13px;
      font-weight:750;
    }
    .hero-panel{
      position:relative;
      z-index:1;
      border-radius:var(--radius-xl);
      padding:24px;
      color:#fff;
      background:
        radial-gradient(circle at 86% 8%,rgba(20,216,197,.22),transparent 32%),
        radial-gradient(circle at 10% 90%,rgba(255,138,61,.18),transparent 36%),
        linear-gradient(145deg,var(--dark),var(--dark-2));
      box-shadow:var(--shadow-strong);
      border:1px solid rgba(255,255,255,.10);
    }
    .hero-panel-top{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-bottom:18px}
    .hero-panel-title{font-size:18px;font-weight:900}
    .update-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 10px;
      border-radius:var(--radius-pill);
      background:rgba(20,216,197,.14);
      color:#BFFFF7;
      font-size:12px;
      font-weight:800;
    }
    .update-pill i{color:var(--secondary)}
    .hero-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
    .hero-stat{
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
    }
    .hero-stat b{display:block;font-size:30px;line-height:1;color:#fff;margin-bottom:7px}
    .hero-stat span{font-size:13px;color:rgba(255,255,255,.70)}
    .hero-note{
      margin-top:14px;
      padding:14px 16px;
      border-radius:18px;
      background:rgba(255,255,255,.07);
      color:rgba(255,255,255,.76);
      font-size:13px;
    }

    .info-card,.analysis-card,.side-card,.table-card,.timeline-card,.comment-card,.faq-wrap,.cta-panel{
      background:var(--card);
      border:1px solid var(--border);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
    }
    .info-card{padding:26px;height:100%;transition:all .22s ease}
    .info-card:hover{transform:translateY(-4px);border-color:rgba(108,59,255,.22);box-shadow:0 22px 55px rgba(40,30,80,.13)}
    .icon-bubble{
      width:48px;height:48px;border-radius:16px;
      display:inline-flex;align-items:center;justify-content:center;
      background:var(--gradient);
      color:#fff;
      box-shadow:0 12px 28px rgba(108,59,255,.22);
      margin-bottom:16px;
      font-size:20px;
    }
    .info-card h3{font-size:20px;color:var(--ink);font-weight:850;margin:0 0 10px}
    .info-card p{margin:0;color:var(--muted);font-size:14px}
    .mini-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
    .metric-tile{
      padding:20px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--border-purple);
      box-shadow:0 14px 34px rgba(40,30,80,.07);
    }
    .metric-tile .num{font-size:32px;line-height:1;font-weight:900;color:var(--primary);margin-bottom:8px}
    .metric-tile .label{color:var(--ink);font-weight:850;margin-bottom:4px}
    .metric-tile .desc{color:var(--muted);font-size:13px}
    .content-layout{align-items:flex-start}
    .main-stream{display:flex;flex-direction:column;gap:22px}
    .timeline-card{padding:26px;position:relative;overflow:hidden}
    .timeline-card:before{
      content:"";
      position:absolute;left:38px;top:86px;bottom:30px;width:2px;
      background:linear-gradient(var(--secondary),rgba(108,59,255,.10));
    }
    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:78px 1fr;
      gap:18px;
      padding:20px 0;
      border-bottom:1px solid rgba(20,18,37,.07);
    }
    .timeline-item:last-child{border-bottom:0;padding-bottom:0}
    .time-dot{
      position:relative;
      z-index:1;
      width:54px;height:54px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      background:rgba(20,216,197,.12);
      color:var(--secondary);
      font-weight:900;
      border:1px solid rgba(20,216,197,.22);
    }
    .timeline-body h3{font-size:20px;color:var(--ink);font-weight:900;margin:0 0 8px}
    .timeline-body p{font-size:14px;color:var(--muted);margin:0 0 12px}
    .label-line{display:flex;flex-wrap:wrap;gap:8px}
    .label{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:var(--radius-pill);
      background:rgba(108,59,255,.08);
      color:var(--primary);
      font-size:12px;
      font-weight:800;
    }
    .label.green{background:rgba(20,216,197,.12);color:#08A997}
    .label.orange{background:rgba(255,138,61,.13);color:#D9671E}
    .label.dark{background:rgba(20,18,37,.08);color:var(--ink)}
    .analysis-card{
      overflow:hidden;
      transition:all .22s ease;
    }
    .analysis-card:hover{transform:translateY(-3px);box-shadow:0 24px 60px rgba(40,30,80,.13)}
    .analysis-image{position:relative;aspect-ratio:16/8;overflow:hidden}
    .analysis-image img{width:100%;height:100%;object-fit:cover}
    .analysis-image:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 30%,rgba(20,18,37,.78))}
    .analysis-image .image-caption{
      position:absolute;left:20px;right:20px;bottom:18px;z-index:1;color:#fff;
      display:flex;justify-content:space-between;align-items:center;gap:12px;
    }
    .image-caption strong{font-size:20px}
    .analysis-body{padding:22px}
    .analysis-body p{margin:0 0 15px;color:var(--muted);font-size:14px}
    .review-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
    .review-card{
      padding:20px;
      border:1px solid rgba(20,18,37,.08);
      border-radius:22px;
      background:linear-gradient(180deg,#fff,rgba(248,246,255,.72));
    }
    .review-card h3{font-size:18px;color:var(--ink);font-weight:900;margin:0 0 8px}
    .review-card p{color:var(--muted);font-size:14px;margin:0 0 14px}
    .progress-lite{height:8px;border-radius:99px;background:rgba(20,18,37,.08);overflow:hidden}
    .progress-lite span{display:block;height:100%;border-radius:99px;background:var(--gradient)}
    .table-card{padding:24px}
    .table-toolbar{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-bottom:18px;flex-wrap:wrap}
    .filter-pills{display:flex;flex-wrap:wrap;gap:8px}
    .filter-pills .pill{
      padding:8px 12px;
      border-radius:var(--radius-pill);
      background:rgba(20,18,37,.05);
      color:var(--text);
      font-size:13px;
      font-weight:800;
      border:1px solid transparent;
    }
    .filter-pills .pill.active,.filter-pills .pill:hover{background:rgba(108,59,255,.10);border-color:rgba(108,59,255,.18);color:var(--primary)}
    .data-table{margin:0;min-width:850px}
    .data-table thead th{
      color:var(--ink);
      font-size:13px;
      white-space:nowrap;
      background:rgba(108,59,255,.06);
      border-bottom:0;
      padding:14px 16px;
    }
    .data-table tbody td{
      padding:16px;
      border-top:1px solid rgba(20,18,37,.07);
      color:var(--text);
      vertical-align:middle;
      font-size:14px;
    }
    .data-table tbody tr:hover{background:rgba(20,216,197,.05)}
    .status-dot{
      display:inline-flex;align-items:center;gap:7px;
      padding:6px 10px;border-radius:999px;font-size:12px;font-weight:850;
    }
    .status-dot:before{content:"";width:8px;height:8px;border-radius:50%;background:currentColor}
    .status-dot.hot{color:#D9671E;background:rgba(255,138,61,.12)}
    .status-dot.live{color:#08A997;background:rgba(20,216,197,.12)}
    .status-dot.patch{color:var(--primary);background:rgba(108,59,255,.10)}
    .side-stack{display:flex;flex-direction:column;gap:18px;position:sticky;top:96px}
    .side-card{padding:22px}
    .side-title{font-size:18px;color:var(--ink);font-weight:900;margin:0 0 16px}
    .hot-list{display:flex;flex-direction:column;gap:12px}
    .hot-item{
      display:grid;
      grid-template-columns:34px 1fr auto;
      gap:10px;
      align-items:center;
      padding:12px;
      border-radius:18px;
      background:rgba(20,18,37,.035);
      border:1px solid transparent;
    }
    .hot-item:hover{background:rgba(108,59,255,.07);border-color:rgba(108,59,255,.12)}
    .hot-index{
      width:30px;height:30px;border-radius:12px;
      display:flex;align-items:center;justify-content:center;
      background:#fff;color:var(--primary);font-weight:900;box-shadow:0 8px 20px rgba(40,30,80,.08);
    }
    .hot-item:nth-child(-n+3) .hot-index{background:var(--gradient);color:#fff}
    .hot-main b{display:block;color:var(--ink);font-size:14px;line-height:1.25;margin-bottom:2px}
    .hot-main span{font-size:12px;color:var(--muted)}
    .hot-score{font-size:13px;font-weight:900;color:var(--accent)}
    .tag-cloud{display:flex;flex-wrap:wrap;gap:9px}
    .tag-cloud a{
      padding:8px 11px;
      border-radius:999px;
      background:rgba(108,59,255,.07);
      color:var(--text);
      font-size:13px;
      font-weight:750;
      border:1px solid rgba(108,59,255,.08);
    }
    .tag-cloud a:hover{background:var(--primary);color:#fff}
    .cover-card{
      position:relative;
      overflow:hidden;
      min-height:220px;
      border-radius:24px;
      background:var(--dark);
      color:#fff;
    }
    .cover-card img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;opacity:.62}
    .cover-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(20,18,37,.12),rgba(20,18,37,.86))}
    .cover-card .cover-content{position:absolute;left:20px;right:20px;bottom:20px;z-index:1}
    .cover-content h3{font-size:20px;font-weight:900;margin:0 0 8px}
    .cover-content p{font-size:13px;color:rgba(255,255,255,.76);margin:0}
    .comment-card{padding:22px;height:100%}
    .comment-head{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;margin-bottom:13px}
    .avatar{
      width:44px;height:44px;border-radius:50%;
      display:flex;align-items:center;justify-content:center;
      color:#fff;font-weight:900;background:var(--gradient);
      flex:0 0 auto;
    }
    .comment-user{display:flex;gap:12px;align-items:center}
    .comment-user b{display:block;color:var(--ink);line-height:1.25}
    .comment-user span{font-size:12px;color:var(--muted)}
    .rating{padding:5px 9px;border-radius:999px;background:rgba(255,138,61,.13);color:#D9671E;font-size:12px;font-weight:900}
    .comment-card p{font-size:14px;color:var(--text);margin:0 0 12px}
    .comment-time{font-size:12px;color:var(--muted)}
    .faq-wrap{padding:10px}
    .accordion-item{border:0;border-bottom:1px solid rgba(20,18,37,.07);background:transparent}
    .accordion-item:last-child{border-bottom:0}
    .accordion-button{
      padding:20px 18px;
      color:var(--ink);
      font-weight:850;
      background:transparent;
      box-shadow:none!important;
      border-radius:18px!important;
    }
    .accordion-button:not(.collapsed){color:var(--primary);background:rgba(108,59,255,.07)}
    .accordion-button:focus{box-shadow:none;outline:3px solid rgba(108,59,255,.12)}
    .accordion-button::after{filter:hue-rotate(240deg);opacity:.7}
    .accordion-body{padding:0 18px 20px;color:var(--muted);font-size:14px}
    .cta-panel{
      position:relative;
      overflow:hidden;
      padding:34px;
      background:
        radial-gradient(circle at 85% 20%,rgba(20,216,197,.18),transparent 30%),
        linear-gradient(135deg,var(--dark),var(--dark-2));
      color:#fff;
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      width:260px;height:260px;right:-120px;bottom:-130px;
      border-radius:50%;
      background:rgba(255,138,61,.16);
    }
    .cta-panel h2{font-size:34px;font-weight:900;line-height:1.25;margin:0 0 12px}
    .cta-panel p{color:rgba(255,255,255,.76);margin:0 0 22px;max-width:720px}
    .cta-actions{display:flex;flex-wrap:wrap;gap:12px}
    .contact-mini{
      padding:20px;border-radius:24px;background:#fff;border:1px solid var(--border);box-shadow:var(--shadow);
    }
    .form-control,.form-select{
      height:48px;
      border-radius:14px;
      border:1px solid rgba(20,18,37,.10);
      color:var(--ink);
      box-shadow:none!important;
      font-size:14px;
    }
    textarea.form-control{height:auto;min-height:104px}
    .form-control:focus,.form-select:focus{
      border-color:rgba(108,59,255,.55);
      box-shadow:0 0 0 4px rgba(108,59,255,.10)!important;
    }

    .site-footer{
      margin-top:72px;
      padding:56px 0 26px;
      background:
        radial-gradient(circle at 12% 12%,rgba(108,59,255,.28),transparent 32%),
        linear-gradient(180deg,#151327,#100F1C);
      color:rgba(255,255,255,.72);
    }
    .footer-brand{color:#fff;margin-bottom:16px}
    .footer-brand:hover{color:#fff}
    .site-footer p{font-size:14px;max-width:420px;margin:0;color:rgba(255,255,255,.68)}
    .footer-title{color:#fff;font-weight:900;margin-bottom:14px}
    .footer-links{display:flex;flex-direction:column;gap:9px}
    .footer-links a{font-size:14px;color:rgba(255,255,255,.68)}
    .footer-links a:hover{color:var(--secondary);transform:translateX(3px)}
    .footer-bottom{
      margin-top:38px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:7px;
      text-align:center;
      font-size:13px;
      color:rgba(255,255,255,.62);
    }
    .footer-bottom a{color:rgba(255,255,255,.72)}
    .footer-bottom a:hover{color:var(--secondary)}

    @media (max-width:1199.98px){
      .compact-hero h1{font-size:40px}
      .mini-metrics{grid-template-columns:repeat(2,1fr)}
      .side-stack{position:static}
    }
    @media (max-width:991.98px){
      .navbar-collapse{
        margin-top:12px;
        padding:16px;
        border-radius:24px;
        background:#fff;
        box-shadow:var(--shadow);
        border:1px solid var(--border);
      }
      .search-shell{min-width:100%;width:100%}
      .nav-link.active:after{display:none}
      .section{padding:60px 0}
      .section-head{align-items:flex-start;flex-direction:column}
      .hero-panel{margin-top:24px}
      .content-layout{gap:26px}
    }
    @media (max-width:767.98px){
      .compact-hero{padding:42px 0 34px}
      .compact-hero h1{font-size:34px}
      .compact-hero .lead{font-size:15px}
      .hero-stats,.mini-metrics,.review-grid{grid-template-columns:1fr}
      .section-title{font-size:28px}
      .timeline-item{grid-template-columns:54px 1fr;gap:14px}
      .timeline-card:before{left:26px}
      .image-caption{flex-direction:column;align-items:flex-start!important}
      .cta-panel{padding:26px}
      .cta-panel h2{font-size:28px}
    }
    @media (max-width:520px){
      .navbar-brand span:last-child{font-size:18px}
      .brand-mark{width:38px;height:38px}
      .compact-hero h1{font-size:30px}
      .tag-chip{font-size:12px}
      .btn-brand,.btn-soft,.btn-darkline{width:100%}
      .metric-tile .num{font-size:28px}
      .table-card,.timeline-card,.info-card{padding:20px}
      .section{padding:50px 0}
    }

/* roulang page: category3 */
:root{
      --primary:#6C3BFF;
      --secondary:#14D8C5;
      --accent:#FF8A3D;
      --ink:#141225;
      --text:#4C4A5F;
      --muted:#858198;
      --bg:#F7F6FF;
      --bg-soft:#F6F7FB;
      --card:#FFFFFF;
      --dark:#151327;
      --dark-2:#1C1833;
      --line:rgba(20,18,37,.08);
      --line-purple:rgba(108,59,255,.13);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --shadow:0 18px 45px rgba(40,30,80,.10);
      --shadow-strong:0 24px 70px rgba(31,22,74,.16);
      --gradient:linear-gradient(135deg,#6C3BFF 0%,#14D8C5 56%,#FF8A3D 120%);
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%,rgba(108,59,255,.10),transparent 28%),
        radial-gradient(circle at 88% 16%,rgba(20,216,197,.12),transparent 24%),
        linear-gradient(180deg,#fff 0%,var(--bg) 42%,#fff 100%);
      line-height:1.75;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    a:hover{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    input,textarea{outline:none}
    section{position:relative;padding:78px 0}
    .container{max-width:var(--container)}
    .section-compact{padding:56px 0}
    .section-title{
      margin-bottom:30px;
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 12px;
      border-radius:999px;
      background:rgba(108,59,255,.08);
      color:var(--primary);
      font-size:13px;
      font-weight:800;
      margin-bottom:12px;
    }
    .section-title h2{
      color:var(--ink);
      font-size:34px;
      line-height:1.24;
      font-weight:900;
      margin:0;
      letter-spacing:0;
    }
    .section-title p{
      margin:10px 0 0;
      color:var(--muted);
      max-width:660px;
      font-size:15px;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.92);
      backdrop-filter:saturate(150%) blur(14px);
      border-bottom:1px solid rgba(20,18,37,.07);
      box-shadow:0 10px 30px rgba(31,22,74,.05);
    }
    .navbar{min-height:76px;padding:10px 0}
    .navbar-brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--ink);
      font-size:21px;
      font-weight:950;
      letter-spacing:0;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:13px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:var(--gradient);
      box-shadow:0 12px 24px rgba(108,59,255,.24);
      flex:0 0 auto;
    }
    .navbar-toggler{
      border:0;
      width:44px;
      height:44px;
      border-radius:14px;
      background:rgba(108,59,255,.08);
      color:var(--primary);
      box-shadow:none!important;
    }
    .navbar-toggler i{font-size:26px}
    .navbar-nav{gap:6px}
    .nav-link{
      position:relative;
      color:var(--text);
      font-size:15px;
      font-weight:750;
      padding:10px 14px!important;
      border-radius:999px;
    }
    .nav-link:hover{
      color:var(--primary);
      background:rgba(108,59,255,.07);
    }
    .nav-link.active{
      color:var(--primary)!important;
      background:rgba(108,59,255,.10);
    }
    .nav-link.active::after{
      content:"";
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      bottom:4px;
      width:20px;
      height:3px;
      border-radius:999px;
      background:var(--gradient);
    }
    .search-shell{
      height:44px;
      min-width:230px;
      padding:0 14px;
      border:1px solid rgba(108,59,255,.14);
      background:#fff;
      border-radius:999px;
      display:flex;
      align-items:center;
      gap:9px;
      color:var(--muted);
      transition:all .22s ease;
    }
    .search-shell:focus-within{
      border-color:rgba(108,59,255,.55);
      box-shadow:0 0 0 4px rgba(108,59,255,.10);
    }
    .search-shell input{
      border:0;
      width:100%;
      min-width:0;
      color:var(--ink);
      background:transparent;
      font-size:14px;
    }
    .search-shell input::placeholder{color:#aaa5bb}
    .btn-brand,.btn-ghost,.btn-darkline,.btn-mini{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:0;
      border-radius:999px;
      font-weight:850;
      line-height:1;
      white-space:nowrap;
      transition:all .22s ease;
    }
    .btn-brand{
      min-height:44px;
      padding:13px 20px;
      color:#fff!important;
      background:var(--gradient);
      box-shadow:0 14px 32px rgba(108,59,255,.24);
    }
    .btn-brand:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(108,59,255,.30);
      color:#fff;
    }
    .btn-ghost{
      min-height:44px;
      padding:12px 18px;
      color:var(--primary);
      background:rgba(108,59,255,.08);
      border:1px solid rgba(108,59,255,.16);
    }
    .btn-ghost:hover{
      transform:translateY(-2px);
      background:rgba(108,59,255,.13);
      color:var(--primary);
    }
    .btn-darkline{
      min-height:42px;
      padding:12px 18px;
      color:#fff;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
    }
    .btn-darkline:hover{background:rgba(255,255,255,.18);color:#fff;transform:translateY(-2px)}
    .btn-mini{
      padding:8px 12px;
      min-height:34px;
      font-size:13px;
      color:var(--primary);
      background:rgba(108,59,255,.08);
      border:1px solid rgba(108,59,255,.12);
    }
    .btn-mini:hover{background:rgba(108,59,255,.14);transform:translateY(-1px)}
    .btn-brand:focus,.btn-ghost:focus,.btn-mini:focus{
      outline:0;
      box-shadow:0 0 0 4px rgba(108,59,255,.15),0 14px 32px rgba(108,59,255,.18);
    }

    .page-hero{
      padding:58px 0 46px;
      overflow:hidden;
    }
    .page-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.92),rgba(255,255,255,.72)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      z-index:-2;
    }
    .page-hero::after{
      content:"";
      position:absolute;
      right:-120px;
      top:16px;
      width:430px;
      height:430px;
      background:radial-gradient(circle,rgba(108,59,255,.18),rgba(20,216,197,.10),transparent 68%);
      z-index:-1;
    }
    .hero-panel{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(108,59,255,.13);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:30px;
      overflow:hidden;
    }
    .breadcrumb-lite{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:13px;
      margin-bottom:18px;
      font-weight:700;
    }
    .breadcrumb-lite a{color:var(--primary)}
    .page-hero h1{
      color:var(--ink);
      font-size:46px;
      line-height:1.14;
      font-weight:950;
      margin:0 0 16px;
    }
    .hero-desc{
      max-width:720px;
      color:var(--text);
      font-size:17px;
      margin:0 0 22px;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:20px 0 24px;
    }
    .tag-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 12px;
      border-radius:999px;
      color:var(--text);
      background:#fff;
      border:1px solid rgba(20,18,37,.08);
      box-shadow:0 8px 22px rgba(40,30,80,.05);
      font-size:13px;
      font-weight:800;
    }
    .tag-chip.hot{color:var(--accent);background:rgba(255,138,61,.10);border-color:rgba(255,138,61,.18)}
    .tag-chip.live{color:#009e8e;background:rgba(20,216,197,.12);border-color:rgba(20,216,197,.24)}
    .update-note{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:12px;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      margin-top:18px;
    }
    .pulse-dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--secondary);
      box-shadow:0 0 0 7px rgba(20,216,197,.12);
      display:inline-block;
    }
    .hero-dashboard{
      background:var(--dark);
      border-radius:var(--radius-xl);
      padding:24px;
      color:#fff;
      box-shadow:0 22px 60px rgba(20,18,39,.22);
      border:1px solid rgba(255,255,255,.10);
      position:relative;
      overflow:hidden;
      min-height:100%;
    }
    .hero-dashboard::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:radial-gradient(circle at 88% 8%,rgba(20,216,197,.28),transparent 32%),radial-gradient(circle at 10% 90%,rgba(108,59,255,.36),transparent 38%);
      pointer-events:none;
    }
    .hero-dashboard>*{position:relative}
    .dashboard-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .dashboard-head h2{
      margin:0;
      font-size:20px;
      font-weight:900;
      color:#fff;
    }
    .dashboard-badge{
      border-radius:999px;
      padding:7px 10px;
      color:#071f1d;
      background:var(--secondary);
      font-size:12px;
      font-weight:900;
    }
    .hero-stat-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-bottom:18px;
    }
    .hero-stat{
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
    }
    .hero-stat strong{
      display:block;
      font-size:26px;
      line-height:1.1;
      font-weight:950;
      color:#fff;
      margin-bottom:4px;
    }
    .hero-stat span{color:rgba(255,255,255,.68);font-size:13px}
    .team-snapshot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.10);
      margin-top:12px;
    }
    .team-snapshot .team-name{font-weight:900;color:#fff}
    .team-snapshot .team-meta{font-size:12px;color:rgba(255,255,255,.64)}
    .trend-mini{
      width:86px;
      height:34px;
      border-radius:999px;
      background:
        linear-gradient(135deg,rgba(20,216,197,.22),rgba(108,59,255,.18)),
        repeating-linear-gradient(90deg,transparent 0 13px,rgba(255,255,255,.12) 14px 15px);
      position:relative;
      flex:0 0 auto;
    }
    .trend-mini::after{
      content:"";
      position:absolute;
      left:12px;
      right:12px;
      top:18px;
      height:3px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--secondary),var(--accent));
      transform:skewY(-12deg);
    }

    .metric-strip{
      padding-top:34px;
      padding-bottom:24px;
    }
    .metric-card{
      height:100%;
      padding:22px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line-purple);
      box-shadow:0 12px 34px rgba(40,30,80,.07);
      transition:all .22s ease;
    }
    .metric-card:hover{
      transform:translateY(-4px);
      border-color:rgba(108,59,255,.32);
      box-shadow:var(--shadow);
    }
    .metric-icon{
      width:42px;
      height:42px;
      border-radius:15px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(108,59,255,.10);
      color:var(--primary);
      font-size:20px;
      margin-bottom:14px;
    }
    .metric-card.alt .metric-icon{background:rgba(20,216,197,.13);color:#069d90}
    .metric-card.hot .metric-icon{background:rgba(255,138,61,.13);color:var(--accent)}
    .metric-value{
      color:var(--ink);
      font-size:31px;
      line-height:1.1;
      font-weight:950;
      margin-bottom:6px;
    }
    .metric-label{color:var(--muted);font-size:14px;font-weight:700}

    .filter-card,.table-card,.content-card,.rank-card,.player-card,.cta-card{
      background:#fff;
      border:1px solid var(--line-purple);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
    }
    .filter-card{
      padding:18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      margin-bottom:22px;
    }
    .filter-tabs{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .filter-tabs button{
      border:1px solid rgba(108,59,255,.13);
      background:#fff;
      color:var(--text);
      border-radius:999px;
      padding:9px 14px;
      font-size:14px;
      font-weight:850;
      transition:all .2s ease;
    }
    .filter-tabs button:hover,.filter-tabs button.active{
      color:var(--primary);
      background:rgba(108,59,255,.09);
      border-color:rgba(108,59,255,.26);
    }
    .view-tools{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:13px;
      font-weight:750;
    }
    .table-card{padding:0;overflow:hidden}
    .table-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:22px 24px;
      border-bottom:1px solid var(--line);
    }
    .table-head h2{
      margin:0;
      color:var(--ink);
      font-size:22px;
      font-weight:950;
    }
    .table-responsive{border-radius:0 0 var(--radius-xl) var(--radius-xl)}
    .data-table{
      margin:0;
      min-width:920px;
      vertical-align:middle;
    }
    .data-table thead th{
      background:#F8F6FF;
      color:#5d5870;
      font-size:13px;
      font-weight:900;
      border:0;
      padding:15px 18px;
      white-space:nowrap;
    }
    .data-table tbody td{
      padding:17px 18px;
      border-color:rgba(20,18,37,.06);
      color:var(--text);
      font-size:14px;
      white-space:nowrap;
    }
    .data-table tbody tr{
      transition:background .18s ease;
    }
    .data-table tbody tr:hover{
      background:rgba(108,59,255,.045);
    }
    .team-cell{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      color:var(--ink);
    }
    .team-logo{
      width:34px;
      height:34px;
      border-radius:12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--gradient);
      color:#fff;
      font-size:13px;
      font-weight:950;
      box-shadow:0 10px 20px rgba(108,59,255,.16);
    }
    .status-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;
      font-weight:900;
    }
    .status-badge.up{background:rgba(20,216,197,.13);color:#008f82}
    .status-badge.hot{background:rgba(255,138,61,.13);color:#d96110}
    .status-badge.steady{background:rgba(108,59,255,.10);color:var(--primary)}
    .status-badge.gray{background:rgba(20,18,37,.06);color:#706b84}
    .progress-wrap{
      min-width:112px;
    }
    .progress-label{
      display:flex;
      justify-content:space-between;
      gap:8px;
      font-size:12px;
      font-weight:850;
      color:var(--muted);
      margin-bottom:5px;
    }
    .progress{
      height:8px;
      border-radius:999px;
      background:rgba(108,59,255,.09);
    }
    .progress-bar{
      background:var(--gradient);
      border-radius:999px;
    }

    .rank-card{padding:24px;height:100%}
    .rank-list{
      display:flex;
      flex-direction:column;
      gap:13px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .rank-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:12px;
      padding:13px;
      border-radius:18px;
      background:#FAFAFF;
      border:1px solid rgba(20,18,37,.06);
      transition:all .2s ease;
    }
    .rank-item:hover{
      transform:translateX(3px);
      background:rgba(108,59,255,.055);
      border-color:rgba(108,59,255,.15);
    }
    .rank-no{
      width:34px;
      height:34px;
      border-radius:13px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:#eceaf6;
      color:#6b6680;
      font-weight:950;
      font-size:14px;
    }
    .rank-item:nth-child(-n+3) .rank-no{background:var(--gradient);color:#fff}
    .rank-name{font-weight:950;color:var(--ink);line-height:1.25}
    .rank-sub{font-size:12px;color:var(--muted);font-weight:700}
    .rank-score{font-weight:950;color:var(--primary)}
    .player-card{
      height:100%;
      padding:22px;
      transition:all .22s ease;
      overflow:hidden;
      position:relative;
    }
    .player-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-strong)}
    .player-card::after{
      content:"";
      position:absolute;
      right:-40px;
      top:-44px;
      width:130px;
      height:130px;
      border-radius:50%;
      background:rgba(108,59,255,.08);
    }
    .player-head{
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .avatar{
      width:56px;
      height:56px;
      border-radius:20px;
      background:var(--gradient);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:20px;
      font-weight:950;
      box-shadow:0 14px 32px rgba(108,59,255,.20);
    }
    .player-name{font-size:19px;font-weight:950;color:var(--ink);line-height:1.2}
    .player-role{font-size:13px;color:var(--muted);font-weight:750}
    .player-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      position:relative;
      z-index:1;
    }
    .player-stat{
      padding:12px 10px;
      border-radius:16px;
      background:#F8F6FF;
      text-align:center;
    }
    .player-stat strong{display:block;color:var(--ink);font-size:18px;font-weight:950;line-height:1.15}
    .player-stat span{font-size:12px;color:var(--muted);font-weight:750}

    .visual-card{
      overflow:hidden;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--line-purple);
      box-shadow:var(--shadow);
      height:100%;
    }
    .visual-card img{
      width:100%;
      aspect-ratio:16/10;
      object-fit:cover;
    }
    .visual-body{padding:24px}
    .visual-body h3{font-size:22px;font-weight:950;color:var(--ink);margin:0 0 10px}
    .visual-body p{color:var(--muted);margin:0 0 18px;font-size:15px}
    .insight-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .insight-list li{
      display:flex;
      gap:12px;
      padding:14px;
      background:#fff;
      border:1px solid rgba(20,18,37,.07);
      border-radius:18px;
      box-shadow:0 8px 22px rgba(40,30,80,.05);
    }
    .insight-list i{
      width:34px;
      height:34px;
      border-radius:13px;
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      background:rgba(20,216,197,.12);
      color:#009e8e;
    }
    .insight-list strong{display:block;color:var(--ink);font-weight:950;margin-bottom:2px}
    .insight-list span{font-size:13px;color:var(--muted);font-weight:700}

    .trend-board{
      background:var(--dark-2);
      color:#fff;
      border-radius:var(--radius-xl);
      padding:28px;
      box-shadow:0 22px 60px rgba(20,18,39,.18);
      border:1px solid rgba(255,255,255,.10);
      overflow:hidden;
      position:relative;
    }
    .trend-board::before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 80% 10%,rgba(20,216,197,.22),transparent 32%);
      pointer-events:none;
    }
    .trend-board>*{position:relative}
    .bars{
      display:grid;
      gap:16px;
      margin-top:20px;
    }
    .bar-row{
      display:grid;
      grid-template-columns:120px 1fr 54px;
      align-items:center;
      gap:12px;
    }
    .bar-row span{font-size:13px;color:rgba(255,255,255,.74);font-weight:800}
    .bar-line{
      height:12px;
      border-radius:999px;
      background:rgba(255,255,255,.10);
      overflow:hidden;
    }
    .bar-fill{
      height:100%;
      border-radius:999px;
      background:var(--gradient);
    }

    .comment-card{
      height:100%;
      padding:20px;
      background:#fff;
      border:1px solid rgba(108,59,255,.12);
      border-radius:var(--radius-lg);
      box-shadow:0 12px 32px rgba(40,30,80,.07);
      transition:all .2s ease;
    }
    .comment-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
    .comment-head{
      display:flex;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .comment-user{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .comment-avatar{
      width:40px;
      height:40px;
      border-radius:50%;
      background:linear-gradient(135deg,rgba(108,59,255,.96),rgba(20,216,197,.95));
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:950;
      flex:0 0 auto;
    }
    .comment-name{font-weight:950;color:var(--ink);line-height:1.15}
    .comment-tag{font-size:12px;color:var(--muted);font-weight:700}
    .rating{
      display:inline-flex;
      align-items:center;
      gap:4px;
      height:28px;
      padding:0 9px;
      border-radius:999px;
      background:rgba(255,138,61,.11);
      color:#d96210;
      font-size:12px;
      font-weight:950;
      white-space:nowrap;
    }
    .comment-card p{margin:0 0 10px;color:var(--text);font-size:14px;line-height:1.7}
    .comment-time{color:var(--muted);font-size:12px;font-weight:700}

    .faq-wrap .accordion-item{
      border:1px solid rgba(108,59,255,.12)!important;
      border-radius:18px!important;
      overflow:hidden;
      margin-bottom:12px;
      background:#fff;
      box-shadow:0 8px 24px rgba(40,30,80,.05);
    }
    .faq-wrap .accordion-button{
      color:var(--ink);
      font-weight:900;
      background:#fff;
      padding:18px 20px;
      box-shadow:none!important;
    }
    .faq-wrap .accordion-button:not(.collapsed){
      color:var(--primary);
      background:rgba(108,59,255,.06);
    }
    .faq-wrap .accordion-button:focus{
      border-color:transparent;
      box-shadow:0 0 0 4px rgba(108,59,255,.10)!important;
    }
    .faq-wrap .accordion-body{
      color:var(--text);
      padding:0 20px 20px;
      font-size:15px;
    }

    .cta-section{padding-top:64px}
    .cta-card{
      padding:30px;
      overflow:hidden;
      position:relative;
    }
    .cta-card::before{
      content:"";
      position:absolute;
      right:-100px;
      bottom:-140px;
      width:360px;
      height:360px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(108,59,255,.15),transparent 68%);
    }
    .cta-card>*{position:relative}
    .form-control,.form-select{
      height:50px;
      border-radius:14px;
      border:1px solid rgba(108,59,255,.14);
      color:var(--ink);
      box-shadow:none!important;
      font-size:14px;
      background:#fff;
    }
    textarea.form-control{height:auto;min-height:116px;resize:vertical}
    .form-control:focus,.form-select:focus{
      border-color:rgba(108,59,255,.58);
      box-shadow:0 0 0 4px rgba(108,59,255,.10)!important;
    }
    .form-label{
      color:var(--ink);
      font-weight:850;
      font-size:14px;
      margin-bottom:7px;
    }

    .site-footer{
      background:var(--dark);
      color:rgba(255,255,255,.72);
      padding:58px 0 28px;
      margin-top:20px;
      position:relative;
      overflow:hidden;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 80% 0%,rgba(20,216,197,.12),transparent 30%),radial-gradient(circle at 8% 80%,rgba(108,59,255,.20),transparent 34%);
      pointer-events:none;
    }
    .site-footer .container{position:relative}
    .footer-brand{color:#fff;margin-bottom:16px}
    .site-footer p{margin:0;color:rgba(255,255,255,.66);font-size:14px;line-height:1.8}
    .footer-title{
      color:#fff;
      font-weight:950;
      margin-bottom:14px;
      font-size:15px;
    }
    .footer-links{
      display:flex;
      flex-direction:column;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.68);
      font-size:14px;
    }
    .footer-links a:hover{
      color:var(--secondary);
      transform:translateX(2px);
    }
    .footer-bottom{
      margin-top:36px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.10);
      text-align:center;
      display:grid;
      gap:8px;
      font-size:13px;
      color:rgba(255,255,255,.62);
    }
    .footer-bottom a{color:rgba(255,255,255,.72)}
    .footer-bottom a:hover{color:var(--secondary)}

    @media (max-width:1199.98px){
      .search-shell{min-width:190px}
      .page-hero h1{font-size:40px}
      .section-title h2{font-size:31px}
    }
    @media (max-width:991.98px){
      section{padding:62px 0}
      .navbar-collapse{
        margin-top:12px;
        padding:16px;
        border-radius:22px;
        background:#fff;
        box-shadow:var(--shadow);
        border:1px solid rgba(108,59,255,.10);
      }
      .navbar-nav{gap:4px;margin-bottom:12px}
      .nav-link.active::after{display:none}
      .search-shell{width:100%;min-width:0}
      .page-hero{padding:44px 0 30px}
      .hero-panel{padding:24px}
      .hero-dashboard{margin-top:22px}
      .section-title{align-items:flex-start;flex-direction:column;gap:10px}
      .bar-row{grid-template-columns:92px 1fr 46px}
    }
    @media (max-width:767.98px){
      body{font-size:15px}
      section{padding:52px 0}
      .section-compact{padding:42px 0}
      .page-hero h1{font-size:34px}
      .hero-desc{font-size:15px}
      .section-title h2{font-size:28px}
      .hero-panel,.hero-dashboard,.cta-card,.trend-board{border-radius:24px;padding:22px}
      .hero-stat-grid{grid-template-columns:1fr 1fr}
      .filter-card{align-items:flex-start}
      .table-head{align-items:flex-start;flex-direction:column}
      .player-stats{grid-template-columns:1fr 1fr 1fr}
      .bar-row{grid-template-columns:1fr;gap:7px}
      .bar-row span:last-child{text-align:right}
    }
    @media (max-width:575.98px){
      .container{padding-left:18px;padding-right:18px}
      .navbar{min-height:68px}
      .navbar-brand{font-size:19px}
      .brand-mark{width:36px;height:36px}
      .page-hero h1{font-size:31px}
      .tag-chip{font-size:12px}
      .hero-stat strong{font-size:22px}
      .metric-card{padding:18px}
      .metric-value{font-size:27px}
      .filter-tabs{width:100%;overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}
      .filter-tabs button{flex:0 0 auto}
      .player-stats{grid-template-columns:1fr}
      .comment-head{flex-direction:column}
      .btn-brand,.btn-ghost{width:100%}
      .hero-actions{width:100%;display:grid!important;grid-template-columns:1fr;gap:10px}
    }
    @media (max-width:420px){
      .page-hero h1{font-size:29px}
      .hero-stat-grid{grid-template-columns:1fr}
      .team-snapshot{align-items:flex-start;flex-direction:column}
      .section-title h2{font-size:25px}
    }
