:root {
      --yy-primary: #2563eb;
      --yy-accent: #06b6d4;
      --yy-bg: #f4f8ff;
      --yy-text: #0f1e3d;
      --yy-radius: 18px;
      --yy-card-radius: 14px;
      --yy-shadow: 0 4px 18px rgba(13, 40, 97, 0.08);
      --yy-shadow-hover: 0 18px 32px rgba(37, 99, 235, 0.18);
      --yy-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
      --yy-font-display: 'Inter', 'PingFang SC', 'Microsoft YaHei', cursive, sans-serif;
    }

    body {
      background-color: var(--yy-bg);
      color: var(--yy-text);
      font-family: var(--yy-font-body);
      font-size: 0.95rem;
      letter-spacing: 0.1px;
      overflow-x: hidden;
    }

    /* 胶囊圆角 + 按钮全圆 */
    .btn, .badge, .form-control {
      border-radius: 50rem !important;
    }

    .navbar {
      background: rgba(244, 248, 255, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(37, 99, 235, 0.12);
      padding: 0.5rem 1rem;
      box-shadow: 0 2px 20px rgba(0,0,0,0.02);
    }

    .navbar-brand {
      font-family: var(--yy-font-display);
      font-weight: 800;
      font-size: 1.65rem;
      color: var(--yy-primary) !important;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .navbar-brand i {
      color: var(--yy-accent);
      font-size: 1.7rem;
    }

    .nav-link {
      color: var(--yy-text) !important;
      font-weight: 500;
      border-radius: 40px;
      padding: 0.4rem 1.1rem !important;
      transition: all .2s;
    }
    .nav-link:hover {
      background: rgba(37, 99, 235, 0.08);
      color: var(--yy-primary) !important;
    }

    .hero-section {
      position: relative;
      padding: 2.2rem 0 1.5rem;
      background: linear-gradient(135deg, #ffffff 20%, #f1f7ff 90%);
      overflow: hidden;
      margin-bottom: 1rem;
    }
    .hero-title {
      font-family: var(--yy-font-display);
      font-weight: 900;
      background: linear-gradient(145deg, var(--yy-primary) 10%, var(--yy-accent) 80%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: calc(2.4rem + 1.8vw);
      letter-spacing: -1px;
      position: relative;
      z-index: 2;
    }
    .floating-badge {
      position: absolute;
      background: white;
      padding: .4rem 1rem;
      border-radius: 50rem;
      font-size: 0.8rem;
      font-weight: 600;
      box-shadow: var(--yy-shadow);
      color: var(--yy-primary);
      border: 1px solid rgba(37, 99, 235, 0.15);
      animation: floatAnim 5s infinite alternate ease-in-out;
      z-index: 1;
    }
    @keyframes floatAnim {
      0% { transform: translateY(0px) rotate(-2deg); }
      100% { transform: translateY(-12px) rotate(2deg); }
    }

    /* 区块通用 */
    .section-title {
      font-weight: 800;
      font-size: 1.6rem;
      color: var(--yy-text);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 1.2rem;
    }
    .section-title i {
      color: var(--yy-primary);
      font-size: 1.7rem;
    }

    /* 卡片区 */
    .poster-card {
      background: #fff;
      border-radius: var(--yy-card-radius);
      box-shadow: var(--yy-shadow);
      transition: transform 0.25s, box-shadow 0.3s;
      cursor: pointer;
      border: none;
      overflow: hidden;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      margin-bottom: 1.2rem;
      padding: 0;
      scroll-snap-align: start;
    }
    .poster-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--yy-shadow-hover);
    }
    .poster-img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 2 / 3;
      background: #dfe7f5;
    }
    .poster-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .poster-card:hover .poster-img {
      transform: scale(1.06);
    }
    .quality-badge {
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.75);
      color: white;
      font-size: 0.68rem;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 40px;
      backdrop-filter: blur(4px);
      letter-spacing: 0.3px;
      z-index: 3;
    }
    .card-body {
      padding: 0.7rem 0.6rem 0.8rem;
    }
    .card-title {
      font-weight: 700;
      font-size: 0.95rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .meta-text {
      font-size: 0.75rem;
      color: #4b587c;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .rating {
      color: #ff8f2f;
      font-weight: 700;
    }

    /* 横向滚动 */
    .h-scroll {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding-bottom: 10px;
      scroll-snap-type: x mandatory;
    }
    .h-scroll > .poster-card {
      min-width: 160px;
      max-width: 180px;
      flex: 0 0 160px;
    }

    /* 底部抽屉弹窗 */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 30, 61, 0.6);
      backdrop-filter: blur(4px);
      opacity: 0;
      visibility: hidden;
      transition: all .3s;
      z-index: 1055;
    }
    .drawer-panel {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      max-height: 75vh;
      overflow-y: auto;
      background: white;
      border-radius: 28px 28px 0 0;
      padding: 1.8rem 1.6rem 2rem;
      transform: translateY(100%);
      transition: transform .35s cubic-bezier(.23, 1, .32, 1);
      z-index: 1056;
      box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    }
    .drawer-overlay.show, .drawer-panel.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .drawer-panel h3 {
      font-weight: 800;
    }

    /* 回到顶部 */
    #backToTop {
      position: fixed;
      right: 18px;
      bottom: 20px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--yy-primary);
      color: white;
      border: none;
      box-shadow: 0 8px 18px rgba(37,99,235,0.3);
      font-size: 1.2rem;
      z-index: 1040;
      opacity: 0;
      visibility: hidden;
      transition: all .25s;
    }
    #backToTop.show {
      opacity: 1;
      visibility: visible;
    }

    /* 时间线、标签 */
    .timeline {
      position: relative;
      padding-left: 20px;
      margin: 0 0 1.2rem;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 6px;
      top: 4px;
      bottom: 4px;
      width: 3px;
      background: linear-gradient(var(--yy-primary), var(--yy-accent));
      border-radius: 10px;
    }
    .timeline-item {
      margin-bottom: 14px;
      position: relative;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -20px;
      top: 8px;
      width: 10px;
      height: 10px;
      background: white;
      border: 3px solid var(--yy-primary);
      border-radius: 50%;
    }

    /* 标签 */
    .nav-tabs .nav-link {
      border-radius: 40px;
      background: transparent;
      border: 1px solid #d3def0;
      margin-right: 6px;
      font-weight: 500;
    }
    .nav-tabs .nav-link.active {
      background: var(--yy-primary);
      border-color: var(--yy-primary);
      color: white !important;
    }

    .footer {
      background: #0d1b3a;
      color: #afc0e0;
      border-radius: 40px 40px 0 0;
      padding: 2rem 0 1.2rem;
      margin-top: 2.5rem;
    }
    .footer a {
      color: #d7e3ff;
    }

    /* 动画淡入 */
    .fade-in-section {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in-section.visible {
      opacity: 1;
      transform: none;
    }

/* --- 子页面追加 --- */
.about-hero { padding: 4rem 0 3rem; }
.about-hero .hero-title { font-size: 2.6rem; margin-bottom: 1rem; }
.about-section { padding: 2.5rem 0; border-bottom: 1px solid rgba(37,99,235,.08); }
.about-section:last-child { border-bottom: none; }
.about-section h2 { font-size: 1.6rem; font-weight: 700; color: var(--yy-primary); margin-bottom: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.about-section h2 i { font-size: 1.3rem; }
.about-section p { color: var(--yy-text); line-height: 1.9; opacity: .85; margin-bottom: 1rem; }
.about-section .lead-text { font-size: 1.05rem; }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-list li { padding: .7rem 0; border-bottom: 1px dashed rgba(37,99,235,.12); display: flex; gap: .8rem; align-items: flex-start; }
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--yy-accent); margin-top: .2rem; font-size: .95rem; }
.value-card { background: rgba(37,99,235,.04); border: 1px solid rgba(37,99,235,.1); border-radius: var(--yy-card-radius); padding: 1.5rem; height: 100%; transition: all .3s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--yy-shadow-hover); }
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--yy-primary); margin-bottom: .8rem; }
.value-card p { font-size: .95rem; opacity: .8; margin-bottom: 0; }
.stats-row { display: flex; flex-wrap: wrap; gap: 2rem; margin: 2rem 0; }
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-item .stat-num { font-size: 2.2rem; font-weight: 800; color: var(--yy-primary); display: block; }
.stat-item .stat-label { font-size: .85rem; color: var(--yy-text); opacity: .6; }
.about-cta { background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(6,182,212,.06)); border-radius: var(--yy-radius); padding: 2rem; margin: 2rem 0; text-align: center; }
.about-hero .hero-title { font-size: 1.8rem; }
.about-section h2 { font-size: 1.3rem; }
.stats-row { gap: 1rem; }
.stat-item .stat-num { font-size: 1.6rem; }

/* --- 子页面追加 --- */
.faq-hero {
      background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(6,182,212,0.06));
      border-radius: var(--yy-radius);
      padding: 2.5rem 2rem;
      margin-bottom: 2rem;
    }
.guide-card {
      background: #fff;
      border-radius: var(--yy-card-radius);
      padding: 1.5rem 1.75rem;
      box-shadow: var(--yy-shadow);
      transition: box-shadow .3s ease, transform .3s ease;
      height: 100%;
      border: 1px solid rgba(37,99,235,.06);
    }
.guide-card:hover {
      box-shadow: var(--yy-shadow-hover);
      transform: translateY(-4px);
    }
.guide-card .icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      background: rgba(37,99,235,.1);
      color: var(--yy-primary);
      margin-bottom: 1rem;
    }
.guide-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--yy-text);
      margin-bottom: .75rem;
      line-height: 1.4;
    }
.guide-card p {
      font-size: .92rem;
      color: #4a5b7a;
      line-height: 1.7;
      margin-bottom: .5rem;
    }
.guide-card ul {
      padding-left: 1.2rem;
      font-size: .92rem;
      color: #4a5b7a;
      line-height: 1.8;
    }
.guide-card ul li {
      margin-bottom: .3rem;
    }
.faq-section-title {
      font-family: var(--yy-font-display);
      font-weight: 800;
      color: var(--yy-text);
      font-size: 1.6rem;
      margin: 2.5rem 0 1.5rem;
      position: relative;
      padding-bottom: .6rem;
    }
.faq-section-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 3px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--yy-primary), var(--yy-accent));
    }
.qa-item {
      background: #fff;
      border-radius: var(--yy-card-radius);
      padding: 1.25rem 1.5rem;
      margin-bottom: .9rem;
      box-shadow: var(--yy-shadow);
      border-left: 3px solid var(--yy-primary);
      transition: box-shadow .25s ease;
    }
.qa-item:hover {
      box-shadow: var(--yy-shadow-hover);
    }
.qa-item .question {
      font-weight: 700;
      color: var(--yy-text);
      font-size: 1rem;
      margin-bottom: .4rem;
      display: flex;
      align-items: flex-start;
      gap: .5rem;
    }
.qa-item .question i {
      color: var(--yy-primary);
      margin-top: .2rem;
      font-size: .9rem;
    }
.qa-item .answer {
      font-size: .92rem;
      color: #4a5b7a;
      line-height: 1.75;
      padding-left: 1.4rem;
    }
.qa-item .answer a {
      color: var(--yy-primary);
      text-decoration: underline;
    }
.timeline-guide {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin-top: 1rem;
    }
.timeline-guide .step {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
.timeline-guide .step .step-num {
      width: 34px;
      height: 34px;
      min-width: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--yy-primary), var(--yy-accent));
      color: #fff;
      font-weight: 700;
      font-size: .9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(37,99,235,.25);
    }
.timeline-guide .step .step-content {
      flex: 1;
    }
.timeline-guide .step .step-content strong {
      color: var(--yy-text);
      display: block;
      margin-bottom: .25rem;
      font-size: .98rem;
    }
.timeline-guide .step .step-content p {
      font-size: .9rem;
      color: #4a5b7a;
      margin-bottom: 0;
      line-height: 1.65;
    }
.badge-soft {
      display: inline-block;
      padding: .2rem .6rem;
      font-size: .78rem;
      font-weight: 600;
      border-radius: 30px;
      background: rgba(37,99,235,.08);
      color: var(--yy-primary);
      margin-right: .4rem;
      margin-bottom: .3rem;
    }
.badge-soft.cyan {
      background: rgba(6,182,212,.08);
      color: #0e8fa5;
    }
.faq-hero { padding: 1.5rem 1.2rem; }
.guide-card { padding: 1.2rem; }
.faq-section-title { font-size: 1.35rem; }

/* --- 子页面追加 --- */
/* 本页专属样式：榜单卡片、排名徽章、标签页等 */
        .rank-hero {
            background: linear-gradient(135deg, var(--yy-primary) 0%, var(--yy-accent) 100%);
            border-radius: var(--yy-radius);
            padding: 2.5rem 2rem;
            color: #fff;
            position: relative;
            overflow: hidden;
            margin-bottom: 2rem;
        }
.rank-hero::after {
            content: '\f0a3';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -10px;
            bottom: -20px;
            font-size: 8rem;
            opacity: 0.12;
            transform: rotate(-15deg);
        }
.rank-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            font-family: var(--yy-font-display);
            letter-spacing: 0.5px;
        }
.rank-hero p {
            opacity: 0.95;
            font-size: 1.05rem;
            max-width: 600px;
            margin-bottom: 0;
        }
.rank-tabs {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
.rank-tab {
            background: #fff;
            border: 2px solid #e8effc;
            border-radius: 50px;
            padding: 0.55rem 1.4rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--yy-text);
            cursor: pointer;
            transition: all 0.3s ease;
        }
.rank-tab:hover {
            border-color: var(--yy-primary);
            color: var(--yy-primary);
        }
.rank-tab.active {
            background: var(--yy-primary);
            border-color: var(--yy-primary);
            color: #fff;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
        }
.rank-card {
            background: #fff;
            border-radius: var(--yy-card-radius);
            box-shadow: var(--yy-shadow);
            transition: all 0.3s ease;
            overflow: hidden;
            margin-bottom: 1rem;
        }
.rank-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--yy-shadow-hover);
        }
.rank-card-body {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1rem 1.2rem;
        }
.rank-number {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--yy-primary);
            min-width: 50px;
            text-align: center;
            font-family: var(--yy-font-display);
            position: relative;
        }
.rank-number.top-1 { color: #f59e0b; font-size: 2rem; }
.rank-number.top-2 { color: #94a3b8; font-size: 1.8rem; }
.rank-number.top-3 { color: #d97706; font-size: 1.7rem; }
.rank-poster {
            width: 70px;
            height: 95px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
.rank-info {
            flex: 1;
            min-width: 0;
        }
.rank-title {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--yy-text);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.rank-meta {
            font-size: 0.82rem;
            color: #7c8db5;
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
.rank-meta i {
            margin-right: 3px;
            font-size: 0.75rem;
        }
.rank-rating {
            background: rgba(245, 158, 11, 0.12);
            color: #d97706;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 3px 10px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }
.rank-tag {
            background: var(--yy-bg);
            color: var(--yy-primary);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            display: inline-block;
        }
.section-subhead {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--yy-text);
            margin: 2.2rem 0 1.2rem;
            font-family: var(--yy-font-display);
            position: relative;
            padding-left: 16px;
        }
.section-subhead::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 24px;
            background: var(--yy-primary);
            border-radius: 3px;
        }
.section-subhead span {
            color: var(--yy-primary);
        }
.update-note {
            background: rgba(6, 182, 212, 0.08);
            border-left: 4px solid var(--yy-accent);
            padding: 0.8rem 1.2rem;
            border-radius: 0 10px 10px 0;
            font-size: 0.9rem;
            color: var(--yy-text);
            margin: 1.5rem 0;
        }
.update-note i {
            color: var(--yy-accent);
            margin-right: 8px;
        }
.rank-hero { padding: 1.8rem 1.2rem; }
.rank-hero h1 { font-size: 1.6rem; }
.rank-card-body { gap: 0.8rem; padding: 0.8rem; }
.rank-poster { width: 56px; height: 78px; }
.rank-title { font-size: 0.95rem; }
.rank-meta { font-size: 0.75rem; gap: 0.5rem; }
.rank-number { font-size: 1.3rem; min-width: 36px; }
.rank-number.top-1 { font-size: 1.6rem; }
.rank-number.top-2 { font-size: 1.4rem; }
.rank-number.top-3 { font-size: 1.3rem; }
.rank-tabs { gap: 0.4rem; }
.rank-tab { padding: 0.45rem 1rem; font-size: 0.85rem; }

/* --- 子页面追加 --- */
.disclaimer-section { background: #fff; border-radius: var(--yy-radius); padding: 2.5rem; margin-bottom: 2rem; box-shadow: var(--yy-shadow); }
.disclaimer-section h2 { color: var(--yy-primary); font-weight: 700; margin-bottom: 1.5rem; font-size: 1.6rem; }
.disclaimer-section h3 { color: var(--yy-text); font-weight: 600; margin: 1.5rem 0 1rem; font-size: 1.2rem; }
.disclaimer-section p, .disclaimer-section li { color: var(--yy-text); line-height: 1.8; font-size: 0.95rem; }
.disclaimer-section ul { padding-left: 1.2rem; }
.disclaimer-section ul li { margin-bottom: 0.6rem; }
.alert-box { background: #f0f7ff; border-left: 4px solid var(--yy-primary); padding: 1.2rem 1.5rem; border-radius: 0 12px 12px 0; margin: 1.5rem 0; }
.alert-box p { margin: 0; }
.last-updated { color: #6b7a99; font-size: 0.85rem; margin-bottom: 2rem; }
.highlight-text { color: var(--yy-primary); font-weight: 600; }
.disclaimer-section { padding: 1.5rem; }
.disclaimer-section h2 { font-size: 1.3rem; }

/* --- 子页面追加 --- */
/* 本页专属微调 (仅补足站点样式未覆盖的细节) */
    .sitemap-section-title {
      font-family: var(--yy-font-display);
      color: var(--yy-primary);
      font-weight: 700;
      letter-spacing: -0.01em;
      border-left: 4px solid var(--yy-accent);
      padding-left: 0.75rem;
      margin: 2.2rem 0 1.2rem;
    }
.sitemap-grid-card {
      background: var(--yy-bg);
      border-radius: var(--yy-card-radius);
      box-shadow: var(--yy-shadow);
      transition: box-shadow .25s, transform .25s;
      padding: 1.25rem 1.25rem;
      height: 100%;
      border: 1px solid rgba(37,99,235,.08);
    }
.sitemap-grid-card:hover {
      box-shadow: var(--yy-shadow-hover);
      transform: translateY(-3px);
    }
.sitemap-grid-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--yy-text);
      margin-bottom: .85rem;
      display: flex;
      align-items: center;
      gap: .4rem;
    }
.sitemap-grid-card h3 i {
      color: var(--yy-accent);
    }
.sitemap-grid-card ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
.sitemap-grid-card li {
      padding: .35rem 0;
      border-bottom: 1px dashed rgba(37,99,235,.1);
    }
.sitemap-grid-card li:last-child {
      border-bottom: none;
    }
.sitemap-grid-card a {
      text-decoration: none;
      color: var(--yy-text);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      transition: color .2s;
    }
.sitemap-grid-card a i {
      color: var(--yy-primary);
      font-size: .8rem;
    }
.sitemap-grid-card a:hover {
      color: var(--yy-primary);
    }
.sitemap-badge {
      background: rgba(6,182,212,.12);
      color: var(--yy-primary);
      font-size: .75rem;
      font-weight: 600;
      padding: .2rem .65rem;
      border-radius: 30px;
      display: inline-block;
      margin-left: .35rem;
      letter-spacing: .01em;
    }
.sitemap-note {
      background: rgba(37,99,235,.04);
      border-radius: var(--yy-radius);
      padding: 1.4rem 1.6rem;
      border: 1px solid rgba(37,99,235,.08);
      margin-top: 2.4rem;
      font-size: .95rem;
    }
.sitemap-note i {
      color: var(--yy-accent);
      margin-right: .4rem;
    }