/* roulang page: index */
:root {
      --ink: #101828;
      --muted: #667085;
      --soft: #f6f7fb;
      --paper: #ffffff;
      --line: #e7eaf1;
      --coral: #ff5b65;
      --coral-dark: #e94752;
      --mint: #1bc99f;
      --sun: #ffc857;
      --navy: #17213b;
      --radius-sm: 14px;
      --radius: 22px;
      --radius-lg: 32px;
      --shadow: 0 18px 50px rgba(28, 39, 67, .10);
      --shadow-hover: 0 22px 55px rgba(28, 39, 67, .16);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 320px;
      color: var(--ink);
      background: var(--soft);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { cursor: pointer; }
    img { max-width: 100%; display: block; }
    ::selection { background: #ffd6d9; color: var(--ink); }
    :focus-visible { outline: 3px solid rgba(255, 91, 101, .38); outline-offset: 3px; }

    .site-shell { overflow: hidden; }
    .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
    .section { padding: 92px 0; }
    .section-top {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 32px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 10px;
      color: var(--coral-dark);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
    }
    .eyebrow::before {
      width: 8px;
      height: 8px;
      content: "";
      border-radius: 50%;
      background: var(--coral);
      box-shadow: 0 0 0 5px rgba(255, 91, 101, .12);
    }
    .section-title {
      max-width: 650px;
      margin: 0;
      color: var(--ink);
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.22;
      font-weight: 900;
      letter-spacing: 0;
    }
    .section-desc {
      max-width: 450px;
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .site-header {
      position: relative;
      z-index: 20;
      padding: 20px 0 0;
      background: linear-gradient(180deg, #fff 0%, #f8f9fd 100%);
    }
    .nav-panel {
      display: flex;
      align-items: center;
      gap: 22px;
      min-height: 74px;
      padding: 10px 12px 10px 18px;
      border: 1px solid rgba(223, 228, 240, .9);
      border-radius: 20px;
      background: rgba(255, 255, 255, .9);
      box-shadow: 0 12px 35px rgba(28, 39, 67, .07);
      backdrop-filter: blur(12px);
    }
    .brand {
      display: flex;
      flex: 1 1 300px;
      align-items: center;
      min-width: 0;
      gap: 10px;
      font-size: 15px;
      line-height: 1.3;
      font-weight: 900;
    }
    .brand-mark {
      display: grid;
      flex: 0 0 auto;
      width: 38px;
      height: 38px;
      place-items: center;
      border-radius: 12px;
      color: #fff;
      background: var(--coral);
      box-shadow: 0 8px 18px rgba(255, 91, 101, .28);
    }
    .brand-mark span {
      width: 0;
      height: 0;
      margin-left: 3px;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      border-left: 11px solid #fff;
    }
    .nav-links { display: flex; align-items: center; gap: 8px; }
    .nav-link {
      padding: 10px 15px;
      border-radius: 11px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }
    .nav-link:hover, .nav-link.active { color: var(--coral-dark); background: #fff0f1; }
    .nav-link:active { transform: scale(.96); }
    .nav-action, .button-primary, .button-light {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 0 19px;
      border: 0;
      border-radius: 13px;
      font-size: 14px;
      font-weight: 850;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .nav-action, .button-primary {
      color: #fff;
      background: var(--coral);
      box-shadow: 0 10px 22px rgba(255, 91, 101, .23);
    }
    .nav-action:hover, .button-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255, 91, 101, .30); }
    .button-light { color: var(--ink); background: #fff; border: 1px solid rgba(255,255,255,.75); }
    .button-light:hover { transform: translateY(-2px); background: #fff4d8; box-shadow: 0 12px 25px rgba(13, 23, 45, .17); }
    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 12px;
      color: var(--ink);
      background: #fff;
    }

    .hero { padding: 68px 0 52px; background: linear-gradient(180deg, #f8f9fd 0%, var(--soft) 100%); }
    .hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 54px; }
    .hero-copy { position: relative; z-index: 2; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid #ffd5d8;
      border-radius: 99px;
      color: var(--coral-dark);
      background: #fff;
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 8px 22px rgba(36, 46, 70, .06);
    }
    .hero-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
    .hero h1 {
      max-width: 670px;
      margin: 19px 0;
      font-size: clamp(39px, 5vw, 64px);
      line-height: 1.08;
      font-weight: 950;
      letter-spacing: 0;
    }
    .hero h1 strong { color: var(--coral); font-weight: inherit; }
    .hero-text { max-width: 610px; margin: 0; color: var(--muted); font-size: 17px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
    .hero-note { display: flex; align-items: center; gap: 9px; margin: 19px 0 0; color: #7a8497; font-size: 13px; }
    .hero-note span { color: var(--mint); font-size: 17px; font-weight: 900; }

    .hero-stage {
      position: relative;
      min-height: 440px;
      padding: 22px;
      border-radius: var(--radius-lg);
      background: var(--navy);
      box-shadow: 0 28px 65px rgba(26, 35, 61, .20);
      overflow: hidden;
    }
    .hero-stage::before, .hero-stage::after {
      position: absolute;
      content: "";
      border-radius: 50%;
      opacity: .9;
    }
    .hero-stage::before { width: 230px; height: 230px; top: -88px; right: -76px; background: var(--sun); }
    .hero-stage::after { width: 180px; height: 180px; bottom: -84px; left: -54px; background: var(--mint); }
    .stage-top { position: relative; z-index: 2; display: flex; justify-content: space-between; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 800; }
    .stage-pill { padding: 5px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 99px; background: rgba(255,255,255,.1); }
    .poster-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .9fr; gap: 14px; margin-top: 22px; }
    .poster {
      position: relative;
      min-height: 295px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 20px;
      background: #26385d;
    }
    .poster-small { min-height: 140px; }
    .poster + .poster { margin-top: 14px; }
    .poster-art { position: absolute; inset: 0; overflow: hidden; }
    .poster-art::before, .poster-art::after { position: absolute; content: ""; border-radius: 50%; }
    .poster-main { background: linear-gradient(145deg, #ff7180 0%, #fd4f66 47%, #6c3f82 48%, #26385d 100%); }
    .poster-main::before { width: 220px; height: 220px; top: 44px; left: 50%; transform: translateX(-50%); background: #ffe5cb; box-shadow: 0 -58px 0 -29px #ffd58a; }
    .poster-main::after { width: 280px; height: 155px; bottom: -80px; left: -35px; background: #26385d; transform: rotate(-12deg); }
    .poster-blue { background: linear-gradient(145deg, #69d9ee, #3989c6 50%, #1e315b 51%); }
    .poster-blue::before { width: 120px; height: 120px; right: 18px; top: 20px; background: #fff0ca; box-shadow: -82px 68px 0 16px #1e315b; }
    .poster-blue::after { width: 70px; height: 180px; left: 28px; bottom: -52px; background: #ed5d72; transform: rotate(22deg); }
    .poster-purple { background: linear-gradient(145deg, #8154cb, #a767da 48%, #28365e 49%); }
    .poster-purple::before { width: 110px; height: 110px; top: 15px; left: 44px; background: #f9e5bf; box-shadow: 51px 102px 0 25px #f5bf4b; }
    .poster-purple::after { width: 145px; height: 40px; bottom: 20px; right: -25px; background: #26385d; transform: rotate(-20deg); }
    .poster-caption { position: absolute; z-index: 2; right: 14px; bottom: 14px; left: 14px; color: #fff; }
    .poster-caption small { display: block; margin-bottom: 2px; color: rgba(255,255,255,.76); font-size: 11px; font-weight: 700; }
    .poster-caption b { display: block; font-size: 15px; line-height: 1.3; }

    .ticker-wrap { padding-bottom: 20px; background: var(--soft); }
    .ticker {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 13px 18px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(28, 39, 67, .05);
    }
    .ticker-label { flex: 0 0 auto; color: var(--coral-dark); font-size: 13px; font-weight: 900; }
    .ticker-label::before { content: "●"; margin-right: 6px; color: var(--coral); }
    .ticker-list { display: flex; min-width: 0; gap: 24px; overflow: auto; scrollbar-width: none; }
    .ticker-list::-webkit-scrollbar { display: none; }
    .ticker-item { flex: 0 0 auto; color: var(--muted); font-size: 13px; white-space: nowrap; }
    .ticker-item b { margin-right: 8px; color: var(--ink); }

    .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .feature-card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .feature-card:hover { transform: translateY(-5px); border-color: #ffd2d5; box-shadow: var(--shadow-hover); }
    .icon-box {
      display: grid;
      width: 48px;
      height: 48px;
      margin-bottom: 19px;
      place-items: center;
      border-radius: 15px;
      color: var(--coral-dark);
      background: #fff0f1;
      font-size: 21px;
      font-weight: 900;
    }
    .feature-card:nth-child(2) .icon-box { color: #078a6d; background: #dff9f0; }
    .feature-card:nth-child(3) .icon-box { color: #b47500; background: #fff3d2; }
    .feature-card h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.35; font-weight: 900; }
    .feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

    .discover-section { background: #fff; }
    .topic-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
    .topic {
      padding: 8px 13px;
      border: 1px solid var(--line);
      border-radius: 99px;
      color: #657087;
      background: #fff;
      font-size: 13px;
      font-weight: 800;
      transition: color .2s, border .2s, background .2s;
    }
    .topic:hover, .topic.active { border-color: transparent; color: var(--coral-dark); background: #fff0f1; }
    .anime-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .anime-card { min-width: 0; }
    .cover {
      position: relative;
      min-height: 235px;
      overflow: hidden;
      border-radius: 18px;
      background: #dde5ff;
      box-shadow: 0 10px 22px rgba(25, 39, 70, .10);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .anime-card:hover .cover { transform: translateY(-5px); box-shadow: 0 18px 30px rgba(25, 39, 70, .18); }
    .cover-art { position: absolute; inset: 0; }
    .cover-art::before, .cover-art::after { position: absolute; content: ""; border-radius: 50%; }
    .cover-a { background: linear-gradient(145deg, #ffbfca 0%, #ff6d87 50%, #552b67 51%); }
    .cover-a::before { width: 155px; height: 155px; top: 26px; left: 50%; transform: translateX(-50%); background: #ffebd9; box-shadow: 0 -34px 0 -15px #44235d; }
    .cover-a::after { width: 210px; height: 88px; bottom: -45px; left: -26px; background: #542b68; }
    .cover-b { background: linear-gradient(150deg, #98e7eb 0%, #399ec5 51%, #263461 52%); }
    .cover-b::before { width: 130px; height: 130px; top: 24px; right: 23px; background: #fce9c5; box-shadow: -80px 82px 0 18px #e3526c; }
    .cover-b::after { width: 180px; height: 56px; bottom: -18px; left: -30px; background: #263461; transform: rotate(12deg); }
    .cover-c { background: linear-gradient(145deg, #f8d66a 0%, #ec8b45 48%, #713760 49%); }
    .cover-c::before { width: 138px; height: 138px; top: 29px; left: 50%; transform: translateX(-50%); background: #fff0cc; box-shadow: 0 -47px 0 -19px #5d3457; }
    .cover-c::after { width: 180px; height: 62px; bottom: -22px; right: -22px; background: #73375e; transform: rotate(-16deg); }
    .cover-d { background: linear-gradient(145deg, #9f7be3 0%, #6867b9 46%, #26345b 47%); }
    .cover-d::before { width: 135px; height: 135px; top: 25px; left: 41px; background: #ffe9cc; box-shadow: 50px 95px 0 19px #ffcc4e; }
    .cover-d::after { width: 190px; height: 60px; bottom: -20px; left: -30px; background: #28345c; transform: rotate(10deg); }
    .cover-label {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 5px 9px;
      border-radius: 8px;
      color: #fff;
      background: rgba(16,24,40,.65);
      font-size: 11px;
      font-weight: 800;
      backdrop-filter: blur(4px);
    }
    .cover-play {
      position: absolute;
      right: 13px;
      bottom: 13px;
      display: grid;
      width: 38px;
      height: 38px;
      place-items: center;
      border-radius: 50%;
      color: var(--coral-dark);
      background: #fff;
      font-size: 12px;
      box-shadow: 0 6px 17px rgba(16,24,40,.20);
    }
    .anime-info { padding: 14px 3px 0; }
    .anime-info h3 { margin: 0 0 5px; overflow: hidden; font-size: 16px; line-height: 1.35; font-weight: 900; text-overflow: ellipsis; white-space: nowrap; }
    .anime-info p { margin: 0; color: #8790a2; font-size: 12px; }
    .anime-info p span { margin-right: 9px; color: var(--coral-dark); font-weight: 800; }

    .ranking-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 25px; }
    .rank-intro {
      padding: 38px;
      border-radius: var(--radius-lg);
      color: #fff;
      background: var(--navy);
      box-shadow: var(--shadow);
    }
    .rank-intro .eyebrow { color: #ffc857; }
    .rank-intro .eyebrow::before { background: var(--sun); box-shadow: 0 0 0 5px rgba(255,200,87,.14); }
    .rank-intro h2 { margin: 0 0 16px; font-size: clamp(30px, 3.5vw, 42px); line-height: 1.2; font-weight: 900; }
    .rank-intro p { margin: 0 0 26px; color: rgba(255,255,255,.70); font-size: 15px; }
    .rank-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat { padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(255,255,255,.07); }
    .stat b { display: block; color: #fff; font-size: 23px; line-height: 1.1; }
    .stat span { display: block; margin-top: 5px; color: rgba(255,255,255,.60); font-size: 12px; }
    .rank-list {
      padding: 10px 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: 0 12px 34px rgba(28,39,67,.06);
    }
    .rank-row {
      display: grid;
      grid-template-columns: 40px 1fr auto;
      align-items: center;
      gap: 15px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }
    .rank-row:last-child { border-bottom: 0; }
    .rank-no { color: #a1a9b7; font-size: 20px; font-weight: 950; font-style: italic; }
    .rank-row:first-child .rank-no { color: var(--coral); }
    .rank-name b { display: block; font-size: 16px; }
    .rank-name span { color: var(--muted); font-size: 12px; }
    .trend { color: #079b79; font-size: 12px; font-weight: 850; }
    .trend.hot { color: var(--coral-dark); }

    .guide-section { background: #fff; }
    .guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
    .guide-visual {
      position: relative;
      min-height: 380px;
      padding: 26px;
      border-radius: var(--radius-lg);
      background: #e8f8f3;
      overflow: hidden;
    }
    .guide-visual::before { position: absolute; width: 270px; height: 270px; right: -88px; bottom: -120px; content: ""; border-radius: 50%; background: #ffcf5e; }
    .phone {
      position: relative;
      z-index: 2;
      width: min(270px, 75%);
      margin: 0 auto;
      padding: 9px;
      border: 7px solid #202c43;
      border-radius: 31px;
      background: #fff;
      box-shadow: 0 22px 35px rgba(28, 65, 57, .20);
    }
    .phone-notch { width: 82px; height: 15px; margin: 0 auto 10px; border-radius: 0 0 10px 10px; background: #202c43; }
    .phone-screen { padding: 11px; border-radius: 17px; background: #fafbfe; }
    .phone-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-size: 9px; font-weight: 900; }
    .mini-search { height: 21px; margin-bottom: 10px; border-radius: 7px; background: #edf0f6; }
    .mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
    .mini-card { height: 90px; border-radius: 10px; background: linear-gradient(145deg, #ff8896, #713d80); }
    .mini-card:nth-child(2) { background: linear-gradient(145deg, #76dce3, #31578c); }
    .mini-card:nth-child(3) { background: linear-gradient(145deg, #ffd46d, #c65c56); }
    .mini-card:nth-child(4) { background: linear-gradient(145deg, #af87e6, #485aab); }
    .guide-list { display: grid; gap: 15px; margin-top: 24px; }
    .guide-item { display: flex; gap: 15px; align-items: flex-start; }
    .guide-num {
      display: grid;
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
      place-items: center;
      border-radius: 10px;
      color: var(--coral-dark);
      background: #fff0f1;
      font-size: 13px;
      font-weight: 950;
    }
    .guide-item h3 { margin: 1px 0 3px; font-size: 16px; line-height: 1.35; font-weight: 900; }
    .guide-item p { margin: 0; color: var(--muted); font-size: 14px; }

    .faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 55px; align-items: start; }
    .faq-side { position: sticky; top: 24px; }
    .faq-side p { max-width: 360px; margin: 15px 0 22px; color: var(--muted); font-size: 15px; }
    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-question {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 0;
      border: 0;
      color: var(--ink);
      background: transparent;
      text-align: left;
      font-size: 17px;
      font-weight: 900;
    }
    .faq-question span:last-child {
      display: grid;
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      place-items: center;
      border-radius: 9px;
      color: var(--coral-dark);
      background: #fff0f1;
      transition: transform .2s ease;
    }
    .faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
    .faq-answer { display: none; max-width: 710px; padding: 0 42px 20px 0; color: var(--muted); font-size: 14px; }
    .faq-answer.open { display: block; }

    .cta-section { padding: 30px 0 92px; }
    .cta-box {
      position: relative;
      padding: 52px clamp(26px, 6vw, 70px);
      overflow: hidden;
      border-radius: var(--radius-lg);
      color: #fff;
      background: var(--coral);
      box-shadow: 0 24px 50px rgba(255,91,101,.24);
    }
    .cta-box::before, .cta-box::after { position: absolute; content: ""; border-radius: 50%; }
    .cta-box::before { width: 280px; height: 280px; top: -178px; right: -38px; border: 45px solid rgba(255,255,255,.14); }
    .cta-box::after { width: 220px; height: 220px; bottom: -167px; left: 45%; background: rgba(255,255,255,.10); }
    .cta-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
    .cta-content h2 { max-width: 640px; margin: 0 0 10px; font-size: clamp(28px, 4vw, 43px); line-height: 1.2; font-weight: 950; }
    .cta-content p { max-width: 620px; margin: 0; color: rgba(255,255,255,.82); font-size: 15px; }
    .cta-content .button-light { flex: 0 0 auto; }

    .site-footer { padding: 42px 0 26px; color: #d0d8e8; background: var(--navy); }
    .footer-main { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.12); }
    .footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 17px; font-weight: 900; }
    .footer-brand .brand-mark { width: 34px; height: 34px; }
    .footer-copy { max-width: 580px; margin: 14px 0 0; color: #aeb9cf; font-size: 13px; }
    .footer-meta { display: grid; align-content: center; justify-content: end; gap: 9px; color: #aeb9cf; font-size: 13px; text-align: right; }
    .footer-meta a { color: #fff; font-weight: 800; transition: color .2s; }
    .footer-meta a:hover { color: var(--sun); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: #8794ae; font-size: 12px; }

    @media (max-width: 1024px) {
      .hero-grid { gap: 32px; }
      .hero-stage { min-height: 400px; }
      .anime-grid { grid-template-columns: repeat(2, 1fr); }
      .guide-grid, .faq-layout { gap: 35px; }
    }
    @media (max-width: 768px) {
      .container { width: min(100% - 28px, 1180px); }
      .section { padding: 68px 0; }
      .nav-panel { min-height: 62px; padding: 9px 10px 9px 14px; }
      .brand { font-size: 13px; }
      .brand-mark { width: 33px; height: 33px; border-radius: 10px; }
      .nav-links, .nav-action { display: none; }
      .menu-toggle { display: grid; place-items: center; }
      .mobile-links {
        display: none;
        margin-top: 10px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--shadow);
      }
      .mobile-links.open { display: grid; }
      .mobile-links a { padding: 12px; border-radius: 10px; color: var(--coral-dark); font-weight: 800; }
      .hero { padding: 50px 0 36px; }
      .hero-grid, .ranking-layout, .guide-grid, .faq-layout, .footer-main { grid-template-columns: 1fr; }
      .hero-stage { min-height: 380px; }
      .section-top, .cta-content { display: block; }
      .section-desc { margin-top: 13px; }
      .feature-grid { grid-template-columns: 1fr; }
      .faq-side { position: static; }
      .footer-meta { justify-content: start; text-align: left; }
      .cta-content .button-light { margin-top: 24px; }
    }
    @media (max-width: 520px) {
      .section { padding: 54px 0; }
      .hero h1 { font-size: 37px; }
      .hero-text { font-size: 15px; }
      .hero-actions .button-primary, .hero-actions .button-light { width: 100%; }
      .hero-stage { min-height: 355px; padding: 16px; border-radius: 23px; }
      .poster-grid { gap: 10px; margin-top: 17px; }
      .poster { min-height: 250px; border-radius: 15px; }
      .poster-small { min-height: 120px; }
      .ticker { padding: 12px; gap: 12px; }
      .ticker-label { font-size: 12px; }
      .anime-grid { gap: 13px; }
      .cover { min-height: 190px; border-radius: 14px; }
      .anime-info h3 { font-size: 14px; }
      .rank-intro, .rank-list { padding: 25px 18px; border-radius: 22px; }
      .rank-row { grid-template-columns: 31px 1fr auto; gap: 8px; }
      .rank-name b { font-size: 14px; }
      .guide-visual { min-height: 325px; }
      .faq-question { font-size: 15px; }
      .faq-answer { padding-right: 6px; }
      .cta-box { border-radius: 23px; }
      .footer-bottom { display: block; }
      .footer-bottom span + span { display: block; margin-top: 7px; }
    }
