/* roulang page: index */
:root {
      --bg-base: #0A0D14;
      --bg-surface: #121722;
      --bg-card: rgba(255, 255, 255, 0.04);
      --bg-card-hover: rgba(255, 255, 255, 0.07);
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(255, 69, 0, 0.4);
      --text-main: #FFFFFF;
      --text-muted: #94A3B8;
      --text-dim: #64748B;
      --brand-gradient: linear-gradient(135deg, #FF4500 0%, #FF8C00 50%, #FFD700 100%);
      --accent-cyan: #00E5FF;
      --accent-green: #10B981;
      --radius-card: 20px;
      --radius-badge: 999px;
      --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
      --shadow-glow: 0 0 20px rgba(255, 69, 0, 0.35);
      --font-stack: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
      --font-impact: "DIN Alternate", "Oswald", Impact, sans-serif;
    }

    /* Reset & Base */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-stack);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s ease;
    }
    a:hover {
      color: #FF8C00;
    }

    /* Typography */
    h1, h2, h3, h4, .score-number {
      font-family: var(--font-stack);
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.02em;
    }
    .score-number {
      font-family: var(--font-impact);
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .text-gradient {
      background: var(--brand-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Navigation Bar */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 1020;
      background: rgba(10, 13, 20, 0.82);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 0.85rem 0;
    }
    .site-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 1.25rem;
      font-weight: 800;
      color: #FFF;
    }
    .site-logo i {
      color: #FF4500;
      font-size: 1.45rem;
      filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.6));
    }
    .nav-link-custom {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-muted);
      padding: 0.5rem 0.9rem;
      border-radius: var(--radius-badge);
      transition: all 0.2s ease;
    }
    .nav-link-custom:hover, .nav-link-custom.active {
      color: #FFF;
      background: rgba(255, 255, 255, 0.06);
    }
    
    /* Mega Menu Dropdown */
    .mega-dropdown {
      position: relative;
    }
    .mega-dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      width: 580px;
      background: #121722;
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 1.25rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
      display: none;
      margin-top: 0.75rem;
      z-index: 1050;
    }
    .mega-dropdown:hover .mega-dropdown-menu {
      display: block;
      animation: fadeIn 0.2s ease-in;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Buttons */
    .btn-brand-glow {
      background: var(--brand-gradient);
      color: #0A0D14;
      font-weight: 700;
      border: none;
      border-radius: var(--radius-badge);
      padding: 0.65rem 1.6rem;
      box-shadow: var(--shadow-glow);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.25s ease;
    }
    .btn-brand-glow:hover {
      color: #000;
      transform: translateY(-2px);
      box-shadow: 0 0 28px rgba(255, 69, 0, 0.55);
    }
    .btn-outline-glow {
      background: transparent;
      color: #FFF;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius-badge);
      padding: 0.65rem 1.6rem;
      font-weight: 600;
      transition: all 0.25s ease;
    }
    .btn-outline-glow:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #FF8C00;
      color: #FF8C00;
    }

    /* Cards */
    .tactical-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-card);
      padding: 1.75rem;
      box-shadow: var(--shadow-base);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .tactical-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-glow);
      transform: translateY(-4px);
    }

    /* Data Badge & Indicator */
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.35rem 0.85rem;
      border-radius: var(--radius-badge);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .status-badge-cyan {
      background: rgba(0, 229, 255, 0.12);
      color: var(--accent-cyan);
      border: 1px solid rgba(0, 229, 255, 0.3);
    }
    .status-badge-orange {
      background: rgba(255, 69, 0, 0.12);
      color: #FF8C00;
      border: 1px solid rgba(255, 69, 0, 0.3);
    }
    .live-dot {
      width: 8px;
      height: 8px;
      background-color: var(--accent-cyan);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--accent-cyan);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
      70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 229, 255, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
    }

    /* Organic Soft-Light Hero */
    .hero-organic-section {
      position: relative;
      padding: 4.5rem 0 3.5rem;
      background: radial-gradient(circle at 50% 15%, rgba(255, 69, 0, 0.14) 0%, rgba(10, 13, 20, 0.98) 65%);
      border-bottom: 1px solid var(--border-subtle);
      overflow: hidden;
    }
    .hero-organic-section::before {
      content: "";
      position: absolute;
      top: -20%;
      left: 30%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
      pointer-events: none;
      filter: blur(60px);
    }

    /* Section Header */
    .section-head-wrap {
      margin-bottom: 2.75rem;
    }
    .section-tag {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #FF8C00;
      text-transform: uppercase;
      display: inline-block;
      margin-bottom: 0.5rem;
    }
    .section-lead {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 680px;
      margin: 0.5rem auto 0;
    }

    /* Media Rounded Card */
    .media-preview-box {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #06080D;
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.05);
      margin-bottom: 1rem;
    }
    .media-badge-overlay {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(10, 13, 20, 0.85);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius-badge);
      font-size: 0.75rem;
      padding: 0.2rem 0.6rem;
      color: #FFF;
      font-weight: 600;
    }

    /* Footer */
    .site-footer {
      background: #06080D;
      border-top: 1px solid var(--border-subtle);
      padding: 4rem 0 2rem;
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .footer-grid-title {
      color: #FFF;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
    }
    .footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.65rem;
    }

    @media (max-width: 991px) {
      .mega-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
      }
    }

/* roulang page: category1 */
:root {
        --bg-base: #0A0D14;
        --bg-surface: #121722;
        --bg-card: rgba(255, 255, 255, 0.04);
        --bg-card-hover: rgba(255, 255, 255, 0.07);
        --border-subtle: rgba(255, 255, 255, 0.08);
        --border-glow: rgba(255, 69, 0, 0.4);
        --text-main: #FFFFFF;
        --text-muted: #94A3B8;
        --text-dim: #64748B;
        --brand-gradient: linear-gradient(135deg, #FF4500 0%, #FF8C00 50%, #FFD700 100%);
        --accent-cyan: #00E5FF;
        --accent-green: #10B981;
        --radius-card: 20px;
        --radius-badge: 999px;
        --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
        --shadow-glow: 0 0 20px rgba(255, 69, 0, 0.35);
        --font-stack: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
        --font-impact: "DIN Alternate", "Oswald", Impact, sans-serif;
    }
    body {
        background-color: var(--bg-base);
        color: var(--text-main);
        font-family: var(--font-stack);
        line-height: 1.65;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }
    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.25s ease;
    }
    a:hover {
        color: #FF8C00;
    }
    .text-gradient {
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    /* Navigation Bar */
    .site-nav {
        position: sticky;
        top: 0;
        z-index: 1020;
        background: rgba(10, 13, 20, 0.82);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-subtle);
        padding: 0.85rem 0;
    }
    .site-logo {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        font-size: 1.25rem;
        font-weight: 800;
        color: #FFF;
    }
    .site-logo i {
        color: #FF4500;
        font-size: 1.45rem;
        filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.6));
    }
    .nav-link-custom {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-muted);
        padding: 0.5rem 0.9rem;
        border-radius: var(--radius-badge);
        transition: all 0.2s ease;
    }
    .nav-link-custom:hover, .nav-link-custom.active {
        color: #FFF;
        background: rgba(255, 255, 255, 0.06);
    }
    .mega-menu-trigger {
        position: relative;
    }
    .mega-dropdown-box {
        position: absolute;
        top: 100%;
        right: 0;
        width: 580px;
        background: #121722;
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        padding: 1.25rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
        display: none;
        margin-top: 0.75rem;
        z-index: 1050;
    }
    .mega-menu-trigger:hover .mega-dropdown-box {
        display: block;
        animation: fadeIn 0.2s ease-in;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(6px); }
        to { opacity: 1; transform: translateY(0); }
    }
    /* Buttons */
    .btn-brand-glow {
        background: var(--brand-gradient);
        color: #0A0D14;
        font-weight: 700;
        border: none;
        border-radius: var(--radius-badge);
        padding: 0.65rem 1.6rem;
        box-shadow: var(--shadow-glow);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.25s ease;
    }
    .btn-brand-glow:hover {
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 0 28px rgba(255, 69, 0, 0.55);
    }
    .btn-outline-glow {
        background: transparent;
        color: #FFF;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: var(--radius-badge);
        padding: 0.65rem 1.6rem;
        font-weight: 600;
        transition: all 0.25s ease;
    }
    .btn-outline-glow:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: #FF8C00;
        color: #FF8C00;
    }
    /* Cards */
    .tactical-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 1.75rem;
        box-shadow: var(--shadow-base);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    .tactical-card:hover {
        background: var(--bg-card-hover);
        border-color: var(--border-glow);
        transform: translateY(-4px);
    }
    /* Status Badges */
    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.35rem 0.85rem;
        border-radius: var(--radius-badge);
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .status-badge-cyan {
        background: rgba(0, 229, 255, 0.12);
        color: var(--accent-cyan);
        border: 1px solid rgba(0, 229, 255, 0.3);
    }
    .status-badge-orange {
        background: rgba(255, 69, 0, 0.12);
        color: #FF8C00;
        border: 1px solid rgba(255, 69, 0, 0.3);
    }
    .live-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--accent-cyan);
        box-shadow: 0 0 8px var(--accent-cyan);
        animation: pulse 1.8s infinite;
    }
    @keyframes pulse {
        0% { transform: scale(0.9); opacity: 0.7; }
        50% { transform: scale(1.2); opacity: 1; }
        100% { transform: scale(0.9); opacity: 0.7; }
    }
    /* Section Headings */
    .section-head-wrap {
        margin-bottom: 2.5rem;
    }
    .section-tag {
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: #FF8C00;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    .section-lead {
        color: var(--text-muted);
        font-size: 1.05rem;
        max-width: 680px;
    }
    /* Category 1 Header Bar */
    .cat-scoreboard-bar {
        background: linear-gradient(180deg, #121722 0%, #0A0D14 100%);
        border-bottom: 1px solid var(--border-subtle);
        padding: 2.75rem 0 2rem;
    }
    .scoreboard-stat-chip {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-subtle);
        border-radius: 14px;
        padding: 0.85rem 1.25rem;
        text-align: center;
        min-width: 140px;
    }
    .stat-chip-num {
        font-family: var(--font-impact);
        font-size: 1.9rem;
        font-weight: 800;
        line-height: 1.1;
        color: #FFF;
    }
    .stat-chip-label {
        font-size: 0.75rem;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-top: 0.25rem;
    }
    /* Filter Bar */
    .filter-panel-wrapper {
        background: #0E121A;
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        padding: 1.25rem 1.5rem;
    }
    .filter-btn-pill {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-muted);
        border-radius: var(--radius-badge);
        font-size: 0.82rem;
        font-weight: 600;
        padding: 0.35rem 1rem;
        transition: all 0.2s ease;
        display: inline-block;
        cursor: pointer;
    }
    .filter-btn-pill:hover, .filter-btn-pill.active {
        background: #FF4500;
        color: #0A0D14;
        border-color: #FF4500;
        box-shadow: 0 0 12px rgba(255, 69, 0, 0.4);
    }
    /* Movie Grid Cards */
    .movie-media-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 18px;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .movie-media-card:hover {
        border-color: var(--border-glow);
        transform: translateY(-5px);
        box-shadow: 0 12px 35px -8px rgba(255, 69, 0, 0.25);
    }
    .movie-poster-box {
        position: relative;
        aspect-ratio: 16 / 9;
        background: #05070B;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .movie-poster-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.82;
        transition: transform 0.4s ease;
    }
    .movie-media-card:hover .movie-poster-box img {
        transform: scale(1.05);
        opacity: 0.95;
    }
    .overlay-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2;
        font-size: 0.72rem;
        font-weight: 700;
        background: rgba(10, 13, 20, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0.25rem 0.65rem;
        border-radius: var(--radius-badge);
        color: var(--accent-cyan);
    }
    .play-trigger-icon {
        position: absolute;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--brand-gradient);
        color: #0A0D14;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        box-shadow: var(--shadow-glow);
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.25s ease;
    }
    .movie-media-card:hover .play-trigger-icon {
        opacity: 1;
        transform: scale(1);
    }
    .movie-info-wrap {
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .movie-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #FFF;
        margin-bottom: 0.4rem;
        line-height: 1.4;
    }
    .movie-meta-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.8rem;
        color: var(--text-dim);
        margin-bottom: 0.75rem;
    }
    .score-rating {
        color: #FFD700;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
    }
    /* NBA-Style Rank Board */
    .rank-board-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 0.65rem;
    }
    .rank-board-table tr {
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid var(--border-subtle);
        transition: all 0.2s ease;
    }
    .rank-board-table tr:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 69, 0, 0.3);
    }
    .rank-board-table td {
        padding: 1rem 1.25rem;
        vertical-align: middle;
    }
    .rank-badge-col {
        font-family: var(--font-impact);
        font-size: 1.4rem;
        font-weight: 800;
        width: 60px;
        text-align: center;
    }
    .rank-top-1 { color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
    .rank-top-2 { color: #E2E8F0; }
    .rank-top-3 { color: #CD7F32; }
    .rank-other { color: var(--text-dim); font-size: 1.1rem; }
    /* Pagination & Form */
    .tactical-pagination {
        display: inline-flex;
        gap: 0.5rem;
    }
    .page-box {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-subtle);
        color: var(--text-muted);
        font-weight: 700;
        font-size: 0.9rem;
    }
    .page-box:hover, .page-box.active {
        background: #FF4500;
        color: #0A0D14;
        border-color: #FF4500;
    }
    .custom-input {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-badge);
        color: #FFF;
        padding: 0.75rem 1.4rem;
        font-size: 0.9rem;
    }
    .custom-input:focus {
        background: rgba(255, 255, 255, 0.07);
        border-color: #FF8C00;
        outline: none;
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
        color: #FFF;
    }
    /* Footer */
    .footer-tactical {
        background: #06080D;
        border-top: 1px solid var(--border-subtle);
    }
    .site-logo-icon {
        width: 32px;
        height: 32px;
        background: var(--brand-gradient);
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .site-logo-text {
        font-weight: 800;
        font-size: 1.15rem;
        color: #FFF;
    }

/* roulang page: category2 */
:root {
    --bg-base: #0A0D14;
    --bg-surface: #121722;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 69, 0, 0.4);
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --brand-gradient: linear-gradient(135deg, #FF4500 0%, #FF8C00 50%, #FFD700 100%);
    --accent-cyan: #00E5FF;
    --accent-green: #10B981;
    --radius-card: 20px;
    --radius-badge: 999px;
    --shadow-base: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(255, 69, 0, 0.35);
    --font-stack: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
    --font-impact: "DIN Alternate", "Oswald", Impact, sans-serif;
  }

  body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
  }

  a:hover {
    color: #FF8C00;
  }

  .text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Navigation Bar */
  .site-nav {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(10, 13, 20, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.85rem 0;
  }

  .site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
  }

  .site-logo i {
    color: #FF4500;
    font-size: 1.45rem;
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.6));
  }

  .nav-link-custom {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-badge);
    transition: all 0.2s ease;
  }

  .nav-link-custom:hover, .nav-link-custom.active {
    color: #FFF;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-mega-wrap {
    position: relative;
  }

  .nav-mega-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 580px;
    background: #121722;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    display: none;
    margin-top: 0.75rem;
    z-index: 1050;
  }

  .nav-mega-wrap:hover .nav-mega-dropdown {
    display: block;
    animation: fadeIn 0.2s ease-in;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Buttons */
  .btn-brand-glow {
    background: var(--brand-gradient);
    color: #0A0D14;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-badge);
    padding: 0.65rem 1.6rem;
    box-shadow: var(--shadow-glow);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
  }

  .btn-brand-glow:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(255, 69, 0, 0.55);
  }

  .btn-outline-glow {
    background: transparent;
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-badge);
    padding: 0.65rem 1.6rem;
    font-weight: 600;
    transition: all 0.25s ease;
  }

  .btn-outline-glow:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #FF8C00;
    color: #FF8C00;
  }

  /* Cards */
  .tactical-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 1.75rem;
    box-shadow: var(--shadow-base);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .tactical-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
  }

  /* Badges & Dots */
  .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-badge);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .status-badge-cyan {
    background: rgba(0, 229, 255, 0.12);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 229, 255, 0.3);
  }

  .status-badge-orange {
    background: rgba(255, 69, 0, 0.12);
    color: #FF8C00;
    border: 1px solid rgba(255, 69, 0, 0.3);
  }

  .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-green);
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-green);
    animation: livePulse 1.8s infinite;
  }

  @keyframes livePulse {
    0% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.4; transform: scale(0.9); }
  }

  .scoreboard-num {
    font-family: var(--font-impact);
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 700;
  }

  /* Section Header */
  .section-head-wrap {
    margin-bottom: 2.5rem;
  }

  .section-tag {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #FF8C00;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  .section-lead {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 680px;
    margin: 0.5rem 0 0;
  }

  /* Header Board Section */
  .category-header-board {
    background: radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.16) 0%, rgba(10, 13, 20, 0.98) 75%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 3.5rem 0 2.5rem;
  }

  .schedule-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-badge);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .schedule-tab-btn.active, .schedule-tab-btn:hover {
    background: rgba(255, 69, 0, 0.2);
    border-color: #FF8C00;
    color: #FFF;
  }

  /* Media Preview Box */
  .media-thumb-box {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    background: #080A10;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1rem;
  }

  .media-thumb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
    transition: transform 0.4s ease;
  }

  .tactical-card:hover .media-thumb-bg {
    transform: scale(1.05);
    filter: brightness(0.8);
  }

  .thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 13, 20, 0.9) 0%, transparent 60%);
  }

  .play-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #0A0D14;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow);
    transition: transform 0.2s ease;
    z-index: 2;
  }

  .play-action-btn:hover {
    transform: scale(1.12);
    color: #000;
  }

  /* Footer */
  .footer-tactical {
    background: #07090E;
    border-top: 1px solid var(--border-subtle);
  }

  .site-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFF;
  }

  /* Custom input */
  .tactical-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-badge);
    color: #FFF;
    padding: 0.75rem 1.4rem;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
  }

  .tactical-input:focus {
    border-color: #FF8C00;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.25);
  }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
