  /* Offline / network-down banner */
  .net-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: linear-gradient(90deg, #FF4F6E, var(--mint-500));
    color: #fff;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.25s ease-out;
    box-shadow: 0 4px 12px rgba(255,79,110,0.35);
  }
  .net-banner.show { transform: translateY(0); }

  /* Page indicator dots for banner */
  .all-pill {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-900);
    white-space: nowrap;
    cursor: pointer;
  }
  .all-pill.active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

  /* ===== Mode toggle (game/talent) ===== */
  .mode-toggle {
    display: flex;
    margin: 4px 20px 0;
    background: var(--surface-mute);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
  }
  .mode-btn {
    flex: 1;
    text-align: center;
    padding: 9px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-500);
    cursor: pointer;
    transition: all 0.15s;
  }
  .mode-btn.active {
    background: #fff;
    color: var(--ink-900);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }
  .talent-extra {
    font-size: 10px;
    color: var(--coral-500);
    background: rgba(14, 165, 233,0.13);
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 700;
  }

  /* ===== Story preview card on home ===== */
  .story-preview-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    cursor: pointer;
  }

  /* ===== Voice Room Mini Card (home horizontal) ===== */
  .vroom-mini {
    flex: 0 0 200px;
    height: 150px;
    border-radius: 16px;
    padding: 14px;
    color: #fff;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .vroom-mini-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
  }
  .vroom-mini-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }
  .vroom-tag {
    background: rgba(255,255,255,0.25);
    color: #fff;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
  }
  .vroom-count {
    color: rgba(255,255,255,0.95);
    font-size: 11px;
    font-weight: 600;
  }
  .vroom-emoji {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 30px;
    opacity: 0.95;
  }
  .vroom-live {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 3px 7px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
  }
  .live-dot-w {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #fff;
    animation: pulse 1.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .vroom-avs {
    position: relative;
    height: 24px;
    margin-top: 4px;
  }
  .vroom-av {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
  }

  /* ===== Voice Room full Card (list) ===== */
  .vroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 20px;
  }
  .vroom-card {
    border-radius: 18px;
    padding: 14px;
    color: #fff;
    aspect-ratio: 1 / 1.05;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .vroom-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .vroom-emoji-big {
    font-size: 32px;
  }
  .vroom-card-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 18px;
    margin-top: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .vroom-card-host {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
  }
  .vroom-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
    flex: 1;
    align-content: flex-start;
  }
  .vroom-tag-w {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
  }
  .vroom-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
  }
  .vroom-card-avs {
    position: relative;
    height: 24px;
    flex: 1;
  }
  .vroom-av-card {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
  }
  .vroom-count-w {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,0.2);
    padding: 4px 10px;
    border-radius: 999px;
  }

  /* ===== Voice Room Detail ===== */
  .vroom-detail {
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .vroom-detail-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
  }
  .vroom-detail-header .header-btn {
    background: rgba(255,255,255,0.15);
  }
  .vroom-detail-title-wrap {
    flex: 1;
  }
  .vroom-detail-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
  }
  .vroom-detail-host {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
  }
  .vroom-tags-row {
    display: flex;
    gap: 6px;
    padding: 0 16px 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
  }
  .vroom-seats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px 6px;
    padding: 10px 14px 8px;
    flex-shrink: 0;
  }
  .vroom-seat {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
  .vroom-seat-av {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  .vroom-seat-av img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
  }
  .vroom-seat-av.speaking img {
    border-color: var(--mint-500);
  }
  .vroom-speak-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid var(--mint-500);
    animation: speakRing 1.6s ease-in-out infinite;
  }
  @keyframes speakRing {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.15); }
  }
  .vroom-host-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: var(--ink-900);
    font-size: 8px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .vroom-seat-empty {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px dashed rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255,255,255,0.5);
  }
  .vroom-seat-name {
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    margin-top: 5px;
    max-width: 58px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .vroom-live-chat {
    flex: 1;
    min-height: 88px;
    overflow-y: auto;
    padding: 6px 16px 8px;
    margin-top: 4px;
  }
  .vroom-chat-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .vroom-chat-av {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    object-fit: cover;
  }
  .vroom-chat-name {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 700;
    margin-right: 6px;
  }
  .vroom-chat-text {
    color: #fff;
    font-size: 13px;
  }
  .vroom-bottom {
    display: flex;
    gap: 8px;
    padding: 12px 16px 24px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
  }
  .vroom-btn {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 10px 4px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
  }
  .vroom-btn-mic {
    background: rgba(34,197,94,0.25);
    border-color: rgba(34,197,94,0.4);
  }
  .vroom-btn-leave {
    background: rgba(239,68,68,0.25);
    border-color: rgba(239,68,68,0.4);
  }

  /* ===== Story Feed ===== */
  .story-circles {
    display: flex;
    gap: 14px;
    padding: 12px 20px 14px;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    border-bottom: 1px solid #F1F1F5;
    flex-shrink: 0;
  }
  .story-circles::-webkit-scrollbar { display: none; }
  .story-circle {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    width: 62px;
  }
  .story-ring {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    padding: 3px;
    background: var(--border);
    position: relative;
  }
  .story-ring.new {
    background: linear-gradient(135deg, var(--mint-500), var(--coral-500), #FFD700);
  }
  .story-ring.my-story {
    background: linear-gradient(135deg, var(--coral-500), #A89AFF);
  }
  .story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
  }
  .story-plus {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: var(--coral-500);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
  }
  .story-circle-name {
    font-size: 11px;
    color: var(--ink-900);
    text-align: center;
    max-width: 62px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .story-feed {
    padding: 8px 0;
  }
  .story-post {
    background: #fff;
    border-bottom: 8px solid var(--surface-mute);
    padding: 14px 20px;
  }
  .story-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .story-text {
    font-size: 14px;
    color: var(--ink-900);
    line-height: 21px;
    white-space: pre-wrap;
  }
  .story-game-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
  }
  .story-image {
    display: block;
    width: 100%;
    border-radius: 14px;
    margin-top: 10px;
    max-height: 320px;
    object-fit: cover;
  }
  .story-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
  }
  .story-action {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-500);
    padding: 4px 0;
  }
  .story-action.liked {
    color: var(--mint-500);
  }

  .story-screen {
    background: linear-gradient(180deg, #FFF7F8 0%, #F7FBF9 34%, #fff 100%) !important;
  }
  .story-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 10px;
  }
  .story-header-eyebrow {
    color: var(--coral-600);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .02em;
    margin-bottom: 2px;
  }
  .story-header h1 {
    margin: 0;
    color: var(--ink-900);
    font-size: 28px;
    font-weight: 950;
    letter-spacing: 0;
  }
  .story-icon-btn {
    background: rgba(255,255,255,.78) !important;
    color: var(--ink-900);
    border: 1px solid rgba(31,35,48,.08);
    box-shadow: 0 8px 18px rgba(31,35,48,.06);
  }
  .story-compose-fab {
    background: linear-gradient(135deg, var(--coral-500), #FF8AA0) !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(255,122,107,.28);
  }
  .story-prompt-card {
    position: relative;
    min-height: 150px;
    margin: 0 20px 12px;
    padding: 18px;
    border-radius: 22px;
    overflow: hidden;
    background:
      radial-gradient(circle at 82% 16%, rgba(6,194,143,.25), transparent 30%),
      linear-gradient(135deg, #272039 0%, #8A4B5A 64%, #F2A1A7 100%);
    color: #fff;
    box-shadow: 0 16px 32px rgba(39,32,57,.18);
    cursor: pointer;
  }
  .story-prompt-copy {
    position: relative;
    z-index: 2;
    max-width: 64%;
  }
  .story-prompt-kicker {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 10px;
    font-weight: 900;
  }
  .story-prompt-title {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.18;
    letter-spacing: 0;
  }
  .story-prompt-sub {
    margin-top: 7px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
  }
  .story-prompt-chips {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 11px;
  }
  .story-prompt-chips span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    font-size: 10px;
    font-weight: 900;
  }
  .story-prompt-art {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 112px;
    height: 116px;
  }
  .story-prompt-cardlet {
    position: absolute;
    width: 72px;
    height: 96px;
    border-radius: 16px;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 16px 28px rgba(0,0,0,.16);
    backdrop-filter: blur(10px);
  }
  .story-prompt-cardlet.one {
    right: 24px;
    top: 6px;
    transform: rotate(-8deg);
    background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.18));
  }
  .story-prompt-cardlet.two {
    right: 0;
    top: 22px;
    transform: rotate(8deg);
    background: linear-gradient(180deg, rgba(6,194,143,.5), rgba(255,255,255,.16));
  }
  .story-prompt-count {
    position: absolute;
    right: 4px;
    bottom: 0;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #fff;
    color: var(--coral-600);
    font-size: 12px;
    font-weight: 950;
    box-shadow: 0 8px 18px rgba(31,35,48,.16);
  }
  .story-screen .story-circles {
    margin: 0 0 2px;
    padding: 8px 20px 14px;
    border-bottom: none;
  }
  .story-screen .story-ring {
    box-shadow: 0 8px 18px rgba(31,35,48,.08);
  }
  .story-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 4px;
  }
  .story-section-title {
    color: var(--ink-900);
    font-size: 17px;
    font-weight: 950;
  }
  .story-section-sub {
    margin-top: 2px;
    color: var(--ink-500);
    font-size: 12px;
    font-weight: 700;
  }
  .story-section-head button {
    border: none;
    border-radius: 999px;
    padding: 8px 13px;
    background: var(--ink-900);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
  }
  .story-screen .story-feed {
    padding: 8px 14px 16px;
  }
  .story-screen .story-post {
    margin: 8px 0;
    padding: 14px;
    border: 1px solid rgba(31,35,48,.07);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 8px 20px rgba(31,35,48,.05);
  }
  .story-empty-panel {
    margin: 8px 0;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(31,35,48,.07);
    box-shadow: 0 10px 24px rgba(31,35,48,.06);
  }
  .story-empty-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }
  .story-empty-kicker {
    color: var(--coral-600);
    font-size: 11px;
    font-weight: 900;
  }
  .story-empty-title {
    margin-top: 5px;
    color: var(--ink-900);
    font-size: 20px;
    font-weight: 950;
    line-height: 1.25;
  }
  .story-empty-head button {
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--coral-500), var(--mint-500));
    color: #fff;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(255,122,107,.18);
  }
  .story-empty-preview {
    display: grid;
    gap: 8px;
    margin-top: 14px;
  }
  .story-empty-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    background: var(--surface-mute);
  }
  .story-empty-card img {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    object-fit: cover;
  }
  .story-empty-card b {
    display: block;
    color: var(--ink-900);
    font-size: 13px;
    font-weight: 900;
  }
  .story-empty-card span {
    display: block;
    margin-top: 2px;
    color: var(--ink-500);
    font-size: 12px;
    font-weight: 700;
  }

  /* ===== Families (?йи?) ===== */
  .fam-screen {
    background: linear-gradient(180deg, #1E1B4B 0%, #0F0820 100%);
    color: #fff;
  }
  .fam-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 16px 12px;
  }
  .fam-title { font-size: 17px; font-weight: 800; color: #fff; }
  .fam-create-btn {
    padding: 7px 14px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 999px;
    color: #fff;
    font-size: 12px; font-weight: 700;
    cursor: pointer;
  }
  .fam-hero {
    position: relative;
    margin: 0 16px 16px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 2.4;
    background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 50%, #D97706 100%);
    display: flex; align-items: center;
    padding: 0 20px;
  }
  .fam-hero-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,215,0,.3), transparent 60%);
  }
  .fam-hero-content { position: relative; z-index: 2; }
  .fam-hero-badge {
    display: inline-block; padding: 3px 10px;
    background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
    color: #fff; font-size: 11px; font-weight: 800;
    border-radius: 4px; margin-bottom: 6px;
  }
  .fam-hero-title {
    font-size: 28px; font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
    letter-spacing: 0;
  }
  .fam-hero-trophy {
    position: absolute; right: 24px;
    font-size: 56px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
  }
  .fam-section-title {
    padding: 8px 16px 12px;
    font-size: 16px; font-weight: 800;
    color: #fff;
  }
  .fam-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 16px;
  }
  .fam-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    padding: 14px 12px 12px;
    background: linear-gradient(135deg, #2D1B4E 0%, #4C1D95 50%, #1E1B4B 100%);
    transition: transform .12s;
  }
  .fam-card:active { transform: scale(0.98); }
  .fam-card-bg { position: absolute; inset: 0; opacity: 0.4; }
  .fam-card-trophy {
    display: flex; align-items: center; gap: 4px;
    justify-content: flex-end;
    color: #fff; font-size: 11px;
    position: relative; z-index: 1;
  }
  .fam-card-logo {
    width: 64px; height: 64px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 10px auto 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
    position: relative; z-index: 1;
  }
  .fam-card-name {
    text-align: center;
    color: #fff;
    font-size: 14px; font-weight: 800;
    margin-bottom: 6px;
    position: relative; z-index: 1;
  }
  .fam-card-tier {
    display: flex; align-items: center; justify-content: center; gap: 4px;
    margin: 0 auto 6px;
    padding: 3px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 10px; font-weight: 800;
    width: max-content; max-width: 100%;
    position: relative; z-index: 1;
  }
  .fam-card-hot { font-size: 12px; margin-left: 2px; }
  .fam-card-tagline {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    margin-bottom: 12px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    position: relative; z-index: 1;
  }
  .fam-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    position: relative; z-index: 1;
  }
  .fam-card-members {
    color: rgba(255,255,255,0.8);
    font-size: 11px; font-weight: 700;
  }
  .fam-card-join {
    padding: 6px 14px;
    background: linear-gradient(135deg, #A78BFA 0%, #EC4899 100%);
    border: none; border-radius: 999px;
    color: #fff; font-size: 11px; font-weight: 800;
    cursor: pointer;
  }
  .fam-card-joined {
    padding: 5px 12px;
    background: rgba(34,197,94,0.25);
    color: #4ADE80;
    border-radius: 999px;
    font-size: 10px; font-weight: 800;
  }
  .fam-card-full {
    padding: 5px 12px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    border-radius: 999px;
    font-size: 10px; font-weight: 800;
  }

  /* ===== Tier pill (mate / general) ===== */
  .tier-pill {
    font-size: 10px; font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .tier-pill.mate-pill {
    background: linear-gradient(135deg, var(--coral-500) 0%, var(--mint-500) 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(14, 165, 233, .25);
  }
  .tier-pill.general-pill {
    background: #F4F4F8;
    color: var(--ink-500);
  }
