/* roulang page: index */
:root {
      --brand-gradient: linear-gradient(135deg, #160D33 0%, #3D1259 50%, #7B1FA2 100%);
      --brand-bg: #0B071A;
      --brand-card-bg: rgba(33, 19, 66, 0.75);
      --brand-card-hover: rgba(45, 25, 90, 0.85);
      --brand-neon-purple: #9C27B0;
      --brand-aurora-pink: #E91E63;
      --brand-gold: #FFB300;
      --brand-border: rgba(233, 30, 99, 0.25);
      --brand-border-glow: rgba(233, 30, 99, 0.65);
      --text-main: #FFFFFF;
      --text-sub: #D1C4E9;
      --text-muted: #9E93B8;
      --radius-large: 24px;
      --radius-pill: 9999px;
      --shadow-card: 0 16px 36px rgba(10, 4, 25, 0.55);
      --shadow-hover: 0 22px 48px rgba(233, 30, 99, 0.28);
      --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--brand-bg);
      background-image: 
        radial-gradient(circle at 15% 20%, rgba(123, 31, 162, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(156, 39, 176, 0.12) 0%, transparent 40%);
      background-attachment: fixed;
      color: var(--text-sub);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.68;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover, a:focus {
      color: #fff;
    }

    .main-site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: linear-gradient(135deg, rgba(22, 13, 51, 0.96), rgba(61, 18, 89, 0.96));
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(233, 30, 99, 0.3);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: 0.5px;
    }

    .brand-logo-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--brand-aurora-pink), var(--brand-neon-purple));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.2rem;
      box-shadow: 0 0 16px rgba(233, 30, 99, 0.6);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 28px;
    }

    .nav-menu li a {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-sub);
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      position: relative;
    }

    .nav-menu li a.active,
    .nav-menu li a:hover {
      color: #fff;
      background: rgba(233, 30, 99, 0.18);
      border: 1px solid rgba(233, 30, 99, 0.35);
    }

    .btn-brand-solid {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--brand-aurora-pink) 0%, var(--brand-neon-purple) 100%);
      color: #fff !important;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 11px 26px;
      border-radius: var(--radius-pill);
      border: none;
      box-shadow: 0 6px 20px rgba(233, 30, 99, 0.45);
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .btn-brand-solid:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(233, 30, 99, 0.65);
      filter: brightness(1.1);
    }

    .btn-brand-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main) !important;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(233, 30, 99, 0.45);
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .btn-brand-outline:hover {
      background: rgba(233, 30, 99, 0.2);
      border-color: var(--brand-aurora-pink);
      transform: translateY(-2px);
    }

    .site-section {
      padding: 95px 0;
      position: relative;
    }

    .section-header {
      margin-bottom: 56px;
      text-align: center;
    }

    .section-title {
      font-size: 2.3rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .section-desc {
      max-width: 780px;
      margin: 0 auto;
      font-size: 1.05rem;
      color: var(--text-sub);
      line-height: 1.75;
    }

    .custom-card {
      background: var(--brand-card-bg);
      backdrop-filter: blur(14px);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-large);
      padding: 32px;
      box-shadow: var(--shadow-card);
      transition: var(--transition-smooth);
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .custom-card:hover {
      background: var(--brand-card-hover);
      border-color: var(--brand-border-glow);
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }

    .pill-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      font-size: 0.8rem;
      font-weight: 700;
      background: rgba(233, 30, 99, 0.15);
      border: 1px solid rgba(233, 30, 99, 0.35);
      color: #FF80AB;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .pill-badge .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand-aurora-pink);
      box-shadow: 0 0 8px var(--brand-aurora-pink);
      animation: pulseGlow 1.8s infinite;
    }

    @keyframes pulseGlow {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.75); }
    }

    .soundwave-indicator {
      display: inline-flex;
      align-items: flex-end;
      gap: 3px;
      height: 18px;
    }
    .soundwave-bar {
      width: 3px;
      background: var(--brand-aurora-pink);
      border-radius: 2px;
      animation: soundwave 1.2s ease-in-out infinite alternate;
    }
    .soundwave-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
    .soundwave-bar:nth-child(2) { height: 90%; animation-delay: 0.3s; }
    .soundwave-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
    .soundwave-bar:nth-child(4) { height: 100%; animation-delay: 0.4s; }
    .soundwave-bar:nth-child(5) { height: 50%; animation-delay: 0.15s; }

    @keyframes soundwave {
      0% { height: 25%; }
      100% { height: 100%; }
    }

    /* Section 1: Hero */
    .hero-section {
      padding: 110px 0 100px;
      background: radial-gradient(circle at 50% 35%, rgba(123, 31, 162, 0.28) 0%, transparent 65%);
      position: relative;
    }
    .hero-title {
      font-size: 3.1rem;
      font-weight: 900;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }
    .hero-title span {
      background: linear-gradient(135deg, #FF4081 0%, #E040FB 50%, #FFD740 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-desc {
      font-size: 1.15rem;
      color: var(--text-sub);
      line-height: 1.85;
      margin-bottom: 38px;
    }
    .hero-cockpit {
      background: rgba(22, 13, 51, 0.82);
      border: 1px solid rgba(233, 30, 99, 0.35);
      border-radius: var(--radius-large);
      padding: 32px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.6);
      position: relative;
    }
    .cockpit-track {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(11, 7, 26, 0.7);
      padding: 16px 20px;
      border-radius: 16px;
      margin-bottom: 16px;
      border: 1px solid rgba(156, 39, 176, 0.2);
    }

    /* Section 2: Features */
    .track-icon-box {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(156, 39, 176, 0.3));
      border: 1px solid rgba(233, 30, 99, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #FF80AB;
      margin-bottom: 22px;
    }

    /* Section 3: Tabs */
    .channel-tabs {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .channel-tab-btn {
      background: rgba(33, 19, 66, 0.6);
      border: 1px solid rgba(233, 30, 99, 0.25);
      padding: 12px 28px;
      border-radius: var(--radius-pill);
      color: var(--text-sub);
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition-smooth);
    }
    .channel-tab-btn.active, .channel-tab-btn:hover {
      background: linear-gradient(135deg, var(--brand-aurora-pink), var(--brand-neon-purple));
      color: #fff;
      border-color: transparent;
      box-shadow: 0 4px 18px rgba(233, 30, 99, 0.4);
    }

    /* Section 4: Live Board */
    .board-screen {
      border: 2px solid rgba(233, 30, 99, 0.35);
      border-radius: var(--radius-large);
      background: #0D0721;
      padding: 28px;
      position: relative;
    }
    .status-meter-bar {
      height: 8px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.1);
      margin: 10px 0;
      overflow: hidden;
    }
    .status-meter-fill {
      height: 100%;
      background: linear-gradient(90deg, #E91E63, #9C27B0, #FFB300);
      border-radius: 4px;
    }

    /* Section 5: Category Direct Entrance */
    .category-card {
      text-align: center;
      padding: 36px 24px;
      border: 1px solid rgba(156, 39, 176, 0.3);
    }
    .cat-visual-box {
      width: 76px;
      height: 76px;
      margin: 0 auto 20px;
      border-radius: 24px;
      background: radial-gradient(circle, rgba(233, 30, 99, 0.35), rgba(61, 18, 89, 0.8));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.9rem;
      color: #FF80AB;
      border: 1px solid rgba(233, 30, 99, 0.5);
    }

    /* Section 7: Pricing Matrix */
    .price-card-popular {
      border: 2px solid var(--brand-aurora-pink) !important;
      transform: scale(1.03);
      box-shadow: 0 20px 50px rgba(233, 30, 99, 0.35);
    }
    .price-card-popular .featured-badge {
      position: absolute;
      top: 0;
      right: 24px;
      transform: translateY(-50%);
      background: linear-gradient(135deg, #FFB300, #FF3D00);
      color: #000;
      font-weight: 800;
      font-size: 0.75rem;
      padding: 5px 16px;
      border-radius: var(--radius-pill);
      box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4);
    }

    /* Section 9: Counter Metrics */
    .metric-value {
      font-size: 3rem;
      font-weight: 900;
      line-height: 1.1;
      background: linear-gradient(135deg, #FFFFFF, #E040FB);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 8px;
    }

    /* Section 11: News List Feed */
    .news-item-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      background: rgba(33, 19, 66, 0.6);
      border: 1px solid rgba(233, 30, 99, 0.2);
      border-radius: 18px;
      margin-bottom: 16px;
      transition: var(--transition-smooth);
    }
    .news-item-row:hover {
      background: rgba(45, 25, 90, 0.8);
      border-color: var(--brand-aurora-pink);
      transform: translateX(6px);
    }

    /* Section 12: Accordion FAQ */
    .faq-item-box {
      background: rgba(33, 19, 66, 0.7);
      border: 1px solid rgba(233, 30, 99, 0.22);
      border-radius: 18px;
      margin-bottom: 16px;
      overflow: hidden;
    }
    .faq-question {
      padding: 22px 28px;
      font-weight: 700;
      font-size: 1.1rem;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }
    .faq-answer {
      padding: 0 28px 24px;
      color: var(--text-sub);
      font-size: 0.98rem;
      line-height: 1.75;
    }

    /* Section 13: Final CTA Banner */
    .final-cta-container {
      background: linear-gradient(135deg, #2A0845 0%, #6441A5 50%, #3D1259 100%);
      border: 1px solid rgba(233, 30, 99, 0.45);
      border-radius: 32px;
      padding: 70px 40px;
      text-align: center;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
      position: relative;
    }

    /* Footer */
    .site-main-footer {
      background: #06030F;
      border-top: 1px solid rgba(233, 30, 99, 0.25);
      padding: 75px 0 35px;
      color: var(--text-muted);
      font-size: 0.92rem;
    }
    .footer-brand-title {
      color: #fff;
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .footer-col-title {
      color: #fff;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-nav-list li {
      margin-bottom: 12px;
    }
    .footer-nav-list a:hover {
      color: var(--brand-aurora-pink);
    }
    .footer-bottom-bar {
      margin-top: 55px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      text-align: center;
      font-size: 0.85rem;
    }

    @media screen and (max-width: 1024px) {
      .hero-title { font-size: 2.6rem; }
      .section-title { font-size: 2rem; }
    }
    @media screen and (max-width: 768px) {
      .hero-title { font-size: 2.1rem; }
      .hero-section { padding: 60px 0 70px; }
      .site-section { padding: 65px 0; }
      .nav-menu { display: none; }
      .news-item-row { flex-direction: column; align-items: flex-start; gap: 14px; }
      .final-cta-container { padding: 45px 22px; }
    }

/* roulang page: category1 */
:root {
        --brand-gradient: linear-gradient(135deg, #160D33 0%, #3D1259 50%, #7B1FA2 100%);
        --brand-bg: #0B071A;
        --brand-card-bg: rgba(33, 19, 66, 0.75);
        --brand-card-hover: rgba(45, 25, 90, 0.85);
        --brand-neon-purple: #9C27B0;
        --brand-aurora-pink: #E91E63;
        --brand-gold: #FFB300;
        --brand-border: rgba(233, 30, 99, 0.25);
        --brand-border-glow: rgba(233, 30, 99, 0.65);
        --text-main: #FFFFFF;
        --text-sub: #D1C4E9;
        --text-muted: #9E93B8;
        --radius-large: 24px;
        --radius-pill: 9999px;
        --shadow-card: 0 16px 36px rgba(10, 4, 25, 0.55);
        --shadow-hover: 0 22px 48px rgba(233, 30, 99, 0.28);
        --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
        background-color: var(--brand-bg);
        background-image: 
            radial-gradient(circle at 15% 20%, rgba(123, 31, 162, 0.18) 0%, transparent 45%),
            radial-gradient(circle at 85% 65%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 90%, rgba(156, 39, 176, 0.12) 0%, transparent 40%);
        background-attachment: fixed;
        color: var(--text-sub);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        line-height: 1.68;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }
    a:hover, a:focus { color: #fff; }
    .main-site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: linear-gradient(135deg, rgba(22, 13, 51, 0.96), rgba(61, 18, 89, 0.96));
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(233, 30, 99, 0.3);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 76px;
    }
    .brand-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--text-main);
        letter-spacing: 0.5px;
    }
    .brand-logo-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--brand-aurora-pink), var(--brand-neon-purple));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.2rem;
        box-shadow: 0 0 16px rgba(233, 30, 99, 0.6);
    }
    .nav-menu {
        display: flex;
        align-items: center;
        list-style: none;
        gap: 28px;
        margin: 0;
    }
    .nav-menu li a {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-sub);
        padding: 8px 16px;
        border-radius: var(--radius-pill);
        position: relative;
    }
    .nav-menu li a.active,
    .nav-menu li a:hover {
        color: #fff;
        background: rgba(233, 30, 99, 0.18);
        border: 1px solid rgba(233, 30, 99, 0.35);
    }
    .btn-brand-solid {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--brand-aurora-pink) 0%, var(--brand-neon-purple) 100%);
        color: #fff !important;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 11px 26px;
        border-radius: var(--radius-pill);
        border: none;
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.45);
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .btn-brand-solid:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(233, 30, 99, 0.65);
        filter: brightness(1.1);
    }
    .btn-brand-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-main) !important;
        font-weight: 600;
        font-size: 0.9rem;
        padding: 8px 20px;
        border-radius: var(--radius-pill);
        border: 1px solid rgba(233, 30, 99, 0.45);
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .btn-brand-outline:hover {
        background: rgba(233, 30, 99, 0.2);
        border-color: var(--brand-aurora-pink);
        transform: translateY(-2px);
    }
    .site-section {
        padding: 70px 0;
        position: relative;
    }
    .section-header {
        margin-bottom: 40px;
        text-align: left;
    }
    .section-title {
        font-size: 2.1rem;
        font-weight: 800;
        color: var(--text-main);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .section-desc {
        max-width: 820px;
        font-size: 1.02rem;
        color: var(--text-sub);
        line-height: 1.7;
    }
    .custom-card {
        background: var(--brand-card-bg);
        backdrop-filter: blur(14px);
        border: 1px solid var(--brand-border);
        border-radius: var(--radius-large);
        padding: 28px;
        box-shadow: var(--shadow-card);
        transition: var(--transition-smooth);
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    .custom-card:hover {
        background: var(--brand-card-hover);
        border-color: var(--brand-border-glow);
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }
    .pill-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 5px 14px;
        border-radius: var(--radius-pill);
        font-size: 0.8rem;
        font-weight: 700;
        background: rgba(233, 30, 99, 0.15);
        border: 1px solid rgba(233, 30, 99, 0.35);
        color: #FF80AB;
        letter-spacing: 0.5px;
    }
    .pill-badge .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--brand-aurora-pink);
        box-shadow: 0 0 8px var(--brand-aurora-pink);
        display: inline-block;
    }

    /* Category Specific Styles */
    .cat-archive-header {
        padding: 60px 0 50px;
        background: linear-gradient(180deg, rgba(33, 19, 66, 0.8) 0%, rgba(11, 7, 26, 0.95) 100%);
        border-bottom: 1px solid rgba(233, 30, 99, 0.2);
    }
    .cat-h1-title {
        font-size: 2.8rem;
        font-weight: 900;
        color: #fff;
        line-height: 1.25;
        margin-bottom: 16px;
    }
    .cat-stat-box {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(233, 30, 99, 0.3);
        border-radius: 18px;
        padding: 22px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .filter-panel-box {
        background: rgba(26, 14, 52, 0.85);
        border: 1px solid rgba(233, 30, 99, 0.3);
        border-radius: var(--radius-large);
        padding: 24px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }
    .filter-group {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .filter-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 18px;
        border-radius: var(--radius-pill);
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--text-sub);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    .filter-tag.active, .filter-tag:hover {
        background: linear-gradient(135deg, var(--brand-aurora-pink), var(--brand-neon-purple));
        color: #fff;
        border-color: transparent;
        box-shadow: 0 4px 14px rgba(233, 30, 99, 0.4);
    }
    .card-top-track {
        height: 140px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(61, 18, 89, 0.6), rgba(22, 13, 51, 0.8));
        border: 1px solid rgba(233, 30, 99, 0.25);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        overflow: hidden;
    }
    .track-wave-mock {
        display: flex;
        align-items: center;
        gap: 4px;
        height: 48px;
    }
    .wave-bar {
        width: 4px;
        border-radius: 2px;
        background: linear-gradient(to top, var(--brand-aurora-pink), var(--brand-gold));
        animation: waveAnim 1.4s infinite ease-in-out alternate;
    }
    @keyframes waveAnim {
        0% { height: 12px; opacity: 0.4; }
        100% { height: 46px; opacity: 1; }
    }
    .rank-num-badge {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--brand-aurora-pink), var(--brand-neon-purple));
        color: #fff;
        box-shadow: 0 4px 16px rgba(233, 30, 99, 0.5);
        flex-shrink: 0;
    }
    .faq-grid-item {
        background: var(--brand-card-bg);
        border: 1px solid var(--brand-border);
        border-radius: 18px;
        padding: 24px 28px;
        height: 100%;
        transition: var(--transition-smooth);
    }
    .faq-grid-item:hover {
        border-color: var(--brand-border-glow);
        transform: translateY(-3px);
    }
    .faq-q {
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .faq-a {
        font-size: 0.95rem;
        color: var(--text-sub);
        line-height: 1.7;
    }
    .cta-narrow-box {
        background: linear-gradient(135deg, rgba(22, 13, 51, 0.92) 0%, rgba(61, 18, 89, 0.92) 100%);
        border: 1px solid var(--brand-border-glow);
        border-radius: var(--radius-large);
        padding: 46px 40px;
        box-shadow: 0 20px 48px rgba(0,0,0,0.6);
        text-align: center;
    }
    .search-input-sim {
        display: flex;
        max-width: 600px;
        margin: 24px auto 0;
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(233, 30, 99, 0.45);
        border-radius: var(--radius-pill);
        padding: 6px;
    }
    .search-input-sim input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        padding: 0 20px;
        font-size: 0.95rem;
    }
    .search-input-sim button {
        border-radius: var(--radius-pill);
        padding: 10px 24px;
    }

    /* Footer */
    .site-main-footer {
        background: linear-gradient(180deg, #0B071A 0%, #06040E 100%);
        border-top: 1px solid rgba(233, 30, 99, 0.25);
        padding: 70px 0 35px;
        margin-top: 60px;
    }
    .footer-brand-title {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.3rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 18px;
    }
    .footer-col-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
        position: relative;
    }
    .footer-col-title::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 24px;
        height: 2px;
        background: var(--brand-aurora-pink);
    }
    .footer-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-nav-list li {
        margin-bottom: 12px;
    }
    .footer-nav-list li a {
        color: var(--text-muted);
        font-size: 0.9rem;
    }
    .footer-nav-list li a:hover {
        color: var(--brand-aurora-pink);
        padding-left: 4px;
    }
    .footer-bottom-bar {
        margin-top: 45px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    @media (max-width: 768px) {
        .cat-h1-title { font-size: 2rem; }
        .section-title { font-size: 1.65rem; }
        .nav-menu { display: none; }
        .footer-bottom-bar { flex-direction: column; text-align: center; }
        .filter-group { justify-content: center; }
        .search-input-sim { flex-direction: column; gap: 8px; background: transparent; border: none; padding: 0; }
        .search-input-sim input { background: rgba(0,0,0,0.4); border: 1px solid rgba(233,30,99,0.4); border-radius: var(--radius-pill); height: 46px; }
    }
