      @keyframes profileLivePulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.45; transform: scale(0.85); }
      }

      .profile-anim-stage {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 0;
      }

      .profile-anim-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
        margin-bottom: 8px;
      }

      .profile-anim-dots button {
        width: 7px;
        height: 7px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: rgba(96, 165, 250, 0.22);
        cursor: pointer;
        transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      }

      .profile-anim-dots button:hover {
        background: rgba(96, 165, 250, 0.45);
        transform: scale(1.15);
      }

      .profile-anim-dots button.is-active {
        background: #60a5fa;
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(96, 165, 250, 0.55);
      }

      .profile-anim-stage__frame {
        position: relative;
        flex: 1 1 auto;
        min-height: 210px;
        border-radius: 16px;
        border: 1px solid rgba(96, 165, 250, 0.16);
        background:
          radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.14), transparent 55%),
          rgba(15, 23, 42, 0.45);
        overflow: hidden;
        transition: border-color 0.5s ease, box-shadow 0.5s ease;
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
      }

      .profile-anim-stage__frame[data-theme="home"] {
        border-color: rgba(96, 165, 250, 0.28);
        box-shadow: inset 0 0 40px rgba(59, 130, 246, 0.08);
      }
      .profile-anim-stage__frame[data-theme="followers"] {
        border-color: rgba(34, 197, 94, 0.28);
        box-shadow: inset 0 0 40px rgba(34, 197, 94, 0.08);
      }
      .profile-anim-stage__frame[data-theme="posts"] {
        border-color: rgba(192, 132, 252, 0.32);
        box-shadow:
          inset 0 0 40px rgba(168, 85, 247, 0.08),
          inset 0 0 28px rgba(251, 113, 133, 0.06);
      }
      .profile-anim-stage__frame[data-theme="identity"] {
        border-color: rgba(34, 211, 238, 0.28);
        box-shadow: inset 0 0 40px rgba(34, 211, 238, 0.08);
      }
      .profile-anim-stage__frame[data-theme="pin"] {
        border-color: rgba(251, 191, 36, 0.28);
        box-shadow: inset 0 0 40px rgba(251, 191, 36, 0.08);
      }
      .profile-anim-stage__frame[data-theme="timer"] {
        border-color: rgba(74, 222, 128, 0.28);
        box-shadow: inset 0 0 40px rgba(74, 222, 128, 0.08);
      }

      @media (min-width: 768px) {
        .profile-anim-stage__frame {
          min-height: 268px;
          border-radius: 18px;
        }
      }

      .profile-anim-scene {
        position: absolute;
        inset: 0;
        bottom: 3px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 10px 12px 14px;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(18px) scale(0.94);
        filter: blur(4px);
        transition:
          opacity 0.45s ease,
          transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
          visibility 0.45s,
          filter 0.45s ease;
        pointer-events: none;
      }

      .profile-anim-scene.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        filter: blur(0);
        pointer-events: auto;
        z-index: 2;
      }

      .profile-anim-scene--home {
        justify-content: center;
        padding-top: 6px;
        gap: 6px;
      }

      .profile-home-headline {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        max-width: 260px;
        text-align: center;
        line-height: 1.1;
      }

      .profile-home-headline__line {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: center;
        gap: 5px;
      }

      .profile-home-headline__brand {
        font-size: 17px;
        font-weight: 900;
        letter-spacing: -0.04em;
        background: linear-gradient(90deg, #60a5fa, #38bdf8, #818cf8);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .profile-home-headline__rest {
        font-size: 14px;
        font-weight: 800;
        color: rgba(248, 250, 252, 0.95);
        letter-spacing: -0.03em;
      }

      .profile-home-headline__accent {
        display: block;
        font-size: 15px;
        font-weight: 900;
        letter-spacing: -0.02em;
        background: linear-gradient(90deg, #86efac, #4ade80, #22d3ee);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      @media (min-width: 768px) {
        .profile-home-headline__brand { font-size: 20px; }
        .profile-home-headline__rest { font-size: 16px; }
        .profile-home-headline__accent { font-size: 18px; }
      }

      .profile-anim-scene.is-active .profile-home-headline__brand {
        animation: profileHomeBrandGlow 2.4s ease-in-out infinite;
      }

      @keyframes profileHomeBrandGlow {
        0%, 100% { filter: brightness(1); }
        50% { filter: brightness(1.15); }
      }

      .profile-anim-scene.is-active > * {
        animation: profileChildIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
      }

      .profile-anim-scene.is-active > *:nth-child(2) { animation-delay: 0.07s; }
      .profile-anim-scene.is-active > *:nth-child(3) { animation-delay: 0.14s; }
      .profile-anim-scene.is-active > *:nth-child(4) { animation-delay: 0.21s; }
      .profile-anim-scene.is-active > *:nth-child(5) { animation-delay: 0.28s; }

      @keyframes profileChildIn {
        from { opacity: 0; transform: translateY(14px) scale(0.92); }
        to { opacity: 1; transform: translateY(0) scale(1); }
      }

      .profile-anim-playpause {
        position: absolute;
        left: 7px;
        bottom: 5px;
        z-index: 7;
        width: 22px;
        height: 22px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(96, 165, 250, 0.28);
        border-radius: 7px;
        background: rgba(15, 23, 42, 0.82);
        color: #93c5fd;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
      }

      .profile-anim-playpause:hover {
        background: rgba(59, 130, 246, 0.2);
        border-color: rgba(96, 165, 250, 0.45);
        color: #bfdbfe;
      }

      .profile-anim-playpause svg {
        width: 11px;
        height: 11px;
        display: block;
      }

      .profile-anim-playpause__icon--play {
        margin-left: 1px;
      }

      .profile-anim-playpause.is-paused .profile-anim-playpause__icon--pause {
        display: none;
      }

      .profile-anim-playpause.is-paused .profile-anim-playpause__icon--play {
        display: block !important;
      }

      .profile-anim-playpause:not(.is-paused) .profile-anim-playpause__icon--play {
        display: none;
      }

      @media (min-width: 768px) {
        .profile-anim-playpause {
          left: 9px;
          bottom: 6px;
          width: 24px;
          height: 24px;
        }

        .profile-anim-playpause svg {
          width: 12px;
          height: 12px;
        }
      }

      .profile-anim-progress {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 6;
        height: 3px;
        border-radius: 0 0 16px 16px;
        background: rgba(96, 165, 250, 0.1);
        overflow: hidden;
      }

      @media (min-width: 768px) {
        .profile-anim-progress { border-radius: 0 0 18px 18px; }
      }

      .profile-anim-progress span {
        display: block;
        height: 100%;
        width: 0;
        border-radius: inherit;
        background: linear-gradient(90deg, #3b82f6, #60a5fa, #22d3ee);
      }

      @keyframes profileProgressFill {
        from { width: 0%; }
        to { width: 100%; }
      }

      .profile-home-shift {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
      }

      .profile-home-away {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        flex: 0 0 72px;
        width: 72px;
        padding: 8px 6px 9px;
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.88);
        border: 1px solid rgba(248, 113, 133, 0.38);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      }

      .profile-home-away__label {
        font-size: 8px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #fca5a5;
        text-decoration: line-through;
        text-decoration-color: rgba(248, 113, 133, 0.85);
      }

      .profile-home-away__icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        width: 100%;
      }

      .profile-home-icon {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        margin: 0 auto;
      }

      .profile-home-icon svg {
        width: 15px;
        height: 15px;
        display: block;
      }

      .profile-home-icon--insta { color: #f472b6; background: rgba(244, 114, 182, 0.12); border-color: rgba(244, 114, 182, 0.25); }
      .profile-home-icon--x { color: #e5e7eb; background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.18); }
      .profile-home-icon--telegram { color: #38bdf8; background: rgba(56, 189, 248, 0.12); border-color: rgba(56, 189, 248, 0.28); }
      .profile-home-icon--discord { color: #a5b4fc; background: rgba(129, 140, 248, 0.14); border-color: rgba(129, 140, 248, 0.28); }

      .profile-anim-scene.is-active .profile-home-icon--fade {
        animation: profileIconFadeOut 2.2s ease-in-out infinite;
      }

      @keyframes profileIconFadeOut {
        0%, 100% { opacity: 0.72; transform: scale(0.96); filter: grayscale(0.15); }
        50% { opacity: 0.38; transform: scale(0.9); filter: grayscale(0.45); }
      }

      .profile-home-arrow {
        font-size: 15px;
        font-weight: 700;
        color: #60a5fa;
        line-height: 1;
        animation: profileArrowPulse 1.6s ease-in-out infinite;
      }

      @keyframes profileArrowPulse {
        0%, 100% { transform: translateX(0); opacity: 0.7; }
        50% { transform: translateX(3px); opacity: 1; }
      }

      .profile-home-earn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex: 0 1 auto;
        min-width: 0;
        max-width: 150px;
      }

      .profile-home-earn__label {
        font-size: 9px;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #bfdbfe;
      }

      .profile-home-post-chip {
        padding: 3px 9px;
        border-radius: 999px;
        background: rgba(34, 197, 94, 0.14);
        border: 1px solid rgba(74, 222, 128, 0.28);
        color: #86efac;
        font-size: 8px;
        font-weight: 700;
      }

      .profile-anim-scene.is-active .profile-home-post-chip {
        animation: profileFollowPop 2.2s ease-in-out infinite;
      }

      .profile-link-bar {
        display: flex;
        align-items: center;
        gap: 6px;
        width: 100%;
        max-width: 168px;
        padding: 7px 10px;
        border-radius: 11px;
        border: 1px solid rgba(96, 165, 250, 0.25);
        background: rgba(59, 130, 246, 0.1);
        box-shadow: 0 0 24px rgba(59, 130, 246, 0.15);
      }

      .profile-anim-scene.is-active .profile-link-bar {
        animation: profileLinkGlow 2s ease-in-out infinite;
      }

      @keyframes profileLinkGlow {
        0%, 100% { box-shadow: 0 0 16px rgba(59, 130, 246, 0.12); }
        50% { box-shadow: 0 0 28px rgba(59, 130, 246, 0.28); }
      }

      .profile-link-bar__dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #4ade80;
        box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
        flex-shrink: 0;
      }

      .profile-feed-mock {
        width: min(100%, 220px);
        padding: 8px;
        border-radius: 12px;
        border: 1px solid rgba(34, 197, 94, 0.2);
        background: rgba(34, 197, 94, 0.06);
        text-align: left;
      }

      .profile-feed-mock__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 6px;
        font-size: 8px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #86efac;
      }

      .profile-feed-mock__pulse {
        padding: 2px 6px;
        border-radius: 999px;
        background: rgba(34, 197, 94, 0.2);
        color: #4ade80;
        font-size: 7px;
        animation: profileLivePulse 1.4s ease-in-out infinite;
      }

      .profile-feed-item {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 5px 6px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 4px;
        opacity: 0.55;
        transform: translateX(8px);
      }

      .profile-feed-item--new {
        opacity: 1;
        background: rgba(34, 197, 94, 0.12);
        border: 1px solid rgba(74, 222, 128, 0.18);
      }

      .profile-anim-scene.is-active .profile-feed-item--new {
        animation: profileFeedSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
      }

      .profile-anim-scene.is-active .profile-feed-item:not(.profile-feed-item--new) {
        animation: profileFeedSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
      }

      @keyframes profileFeedSlideIn {
        from { opacity: 0; transform: translateX(14px); }
        to { opacity: 1; transform: translateX(0); }
      }

      .profile-feed-item__avatar {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: linear-gradient(135deg, #4ade80, #22c55e);
        flex-shrink: 0;
      }

      .profile-feed-item__text {
        font-size: 9px;
        line-height: 1.3;
        color: rgba(229, 231, 235, 0.9);
      }

      .profile-feed-item__text strong {
        color: #86efac;
        font-weight: 800;
      }

      .profile-anim-kicker {
        max-width: 220px;
        padding: 5px 10px;
        border-radius: 10px;
        font-size: 9px;
        font-weight: 700;
        line-height: 1.35;
        letter-spacing: -0.01em;
      }

      .profile-anim-kicker--green {
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(74, 222, 128, 0.18);
        color: #bbf7d0;
      }

      .profile-anim-kicker--pink {
        background: rgba(251, 113, 133, 0.1);
        border: 1px solid rgba(251, 113, 133, 0.18);
        color: #fecdd3;
      }

      .profile-anim-kicker--gold {
        background: rgba(251, 191, 36, 0.1);
        border: 1px solid rgba(251, 191, 36, 0.2);
        color: #fde68a;
      }

      .profile-post-split {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 9px;
        font-weight: 800;
      }

      .profile-post-split__old {
        padding: 3px 8px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.05);
        color: rgba(156, 163, 175, 0.7);
        text-decoration: line-through;
      }

      .profile-post-split__arrow { color: #c084fc; }

      .profile-post-split__new {
        padding: 3px 8px;
        border-radius: 999px;
        background: rgba(168, 85, 247, 0.18);
        color: #e9d5ff;
      }

      .profile-anim-scene--engage {
        gap: 4px;
        padding: 6px 10px 8px;
        justify-content: center;
      }

      .profile-anim-scene--engage .profile-anim-tag {
        font-size: 7px;
        padding: 2px 7px;
      }

      .profile-engage-stack {
        width: min(100%, 230px);
        display: flex;
        flex-direction: column;
        gap: 5px;
      }

      .profile-post-pane {
        padding: 7px 9px;
        border-radius: 12px;
        border: 1px solid rgba(168, 85, 247, 0.24);
        background: rgba(168, 85, 247, 0.08);
        text-align: left;
      }

      .profile-post-pane__label {
        display: block;
        font-size: 8px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: #c4b5fd;
        line-height: 1;
        margin-bottom: 6px;
      }

      .profile-anim-showcase-root .profile-post-composer--compact {
        width: 100%;
        padding: 0;
        border: none;
        background: transparent;
        gap: 6px;
      }

      .profile-anim-showcase-root .profile-post-composer--compact .profile-post-composer__avatar {
        width: 20px;
        height: 20px;
      }

      .profile-anim-showcase-root .profile-post-composer--compact .profile-post-composer__body {
        gap: 4px;
      }

      .profile-anim-showcase-root .profile-post-composer--compact .profile-post-composer__line {
        height: 5px;
      }

      .profile-anim-showcase-root .profile-post-composer--compact .profile-post-composer__btn {
        font-size: 8px;
        padding: 2px 8px;
      }

      .profile-react-tile {
        width: 100%;
        padding: 4px 8px 3px;
        border-radius: 12px;
        border: 1px solid rgba(251, 113, 133, 0.24);
        background: rgba(251, 113, 133, 0.07);
        text-align: left;
      }

      .profile-react-tile__main {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-bottom: 0;
      }

      .profile-react-tile__title {
        flex-shrink: 0;
        font-size: 8px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: #f9a8d4;
        line-height: 1;
      }

      .profile-react-bubbles--inline {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;
        flex: 1;
        min-height: 16px;
        height: auto;
        width: auto;
        margin: 0;
        padding: 0;
      }

      .profile-react-bubbles--inline .profile-react-bubble {
        position: static;
        flex-shrink: 0;
        font-size: 15px;
        line-height: 1;
        filter: drop-shadow(0 2px 8px rgba(251, 113, 133, 0.35));
      }

      .profile-react-bubbles--inline .profile-react-bubble--1 { font-size: 14px; animation-delay: 0s; }
      .profile-react-bubbles--inline .profile-react-bubble--2 { font-size: 17px; animation-delay: 0.35s; }
      .profile-react-bubbles--inline .profile-react-bubble--3 { font-size: 13px; animation-delay: 0.7s; }
      .profile-react-bubbles--inline .profile-react-bubble--4 { font-size: 15px; animation-delay: 1.05s; }

      .profile-anim-scene.is-active .profile-react-bubbles--inline .profile-react-bubble {
        animation: profileBubbleFloatEngage 2.6s ease-in-out infinite;
      }

      @keyframes profileBubbleFloatEngage {
        0%, 100% { transform: translateY(0) scale(1); opacity: 0.88; }
        50% { transform: translateY(-6px) scale(1.1); opacity: 1; }
      }

      @keyframes profileBubbleFloatEngageMobile {
        0%, 100% { transform: translate3d(0, 0, 0); }
        50% { transform: translate3d(0, -4px, 0); }
      }

      @media (max-width: 767px) {
        .profile-react-bubbles--inline .profile-react-bubble {
          filter: none;
          backface-visibility: hidden;
          -webkit-backface-visibility: hidden;
        }

        .profile-anim-scene.is-active .profile-react-bubbles--inline .profile-react-bubble {
          animation: profileBubbleFloatEngageMobile 3.2s ease-in-out infinite;
        }

        .profile-react-bubbles--inline .profile-react-bubble--2 {
          animation-duration: 3.4s;
        }

        .profile-react-bubbles--inline .profile-react-bubble--3 {
          animation-duration: 3.6s;
        }

        .profile-react-bubbles--inline .profile-react-bubble--4 {
          animation-duration: 3.8s;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .profile-anim-scene.is-active .profile-react-bubbles--inline .profile-react-bubble {
          animation: none;
          opacity: 1;
          transform: none;
        }
      }

      .profile-anim-scene--engage .profile-react-tile__caption {
        margin: 0;
        padding: 2px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 9px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: -0.01em;
        color: #fbcfe8;
        text-align: left;
      }

      @media (min-width: 768px) {
        .profile-anim-scene--engage .profile-react-tile__caption {
          font-size: 10px;
        }
      }

      .profile-react-card {
        width: min(100%, 210px);
        padding: 8px;
        border-radius: 12px;
        border: 1px solid rgba(251, 113, 133, 0.2);
        background: rgba(251, 113, 133, 0.06);
      }

      .profile-react-card__post {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 6px;
      }

      .profile-react-card__bar {
        height: 5px;
        width: 100%;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
      }

      .profile-react-card__bar--short { width: 60%; }

      .profile-react-comment {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 4px;
      }

      .profile-react-comment__avatar {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: linear-gradient(135deg, #fb7185, #f472b6);
        flex-shrink: 0;
      }

      .profile-react-comment__line {
        flex: 1;
        height: 5px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        transform-origin: left;
        transform: scaleX(0);
      }

      .profile-anim-scene.is-active .profile-react-comment__line {
        animation: profileLineGrow 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
      }

      .profile-identity-meta {
        margin-top: 6px;
        display: flex;
        flex-direction: column;
        gap: 2px;
      }

      .profile-identity-handle {
        font-size: 11px;
        font-weight: 800;
        color: #7dd3fc;
      }

      .profile-identity-bio {
        font-size: 9px;
        color: rgba(156, 163, 175, 0.85);
      }

      .profile-timer-bridge {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 8px;
        font-weight: 700;
        color: rgba(156, 163, 175, 0.85);
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      .profile-timer-bridge__line {
        flex: 1;
        height: 1px;
        max-width: 40px;
        background: linear-gradient(90deg, rgba(74, 222, 128, 0.5), rgba(96, 165, 250, 0.5));
        animation: profileBridgePulse 1.8s ease-in-out infinite;
      }

      @keyframes profileBridgePulse {
        0%, 100% { opacity: 0.4; transform: scaleX(0.85); }
        50% { opacity: 1; transform: scaleX(1); }
      }

      .profile-anim-tag {
        padding: 3px 8px;
        border-radius: 999px;
        background: rgba(59, 130, 246, 0.16);
        border: 1px solid rgba(96, 165, 250, 0.22);
        color: #93c5fd;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }

      @media (min-width: 768px) {
        .profile-anim-tag { font-size: 9px; }
      }

      .profile-anim-line {
        font-size: 15px;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.03em;
        color: #f9fafb;
      }

      @media (min-width: 768px) {
        .profile-anim-line { font-size: 18px; }
      }

      .profile-anim-line--mono {
        font-family: "IBM Plex Mono", ui-monospace, monospace;
        font-size: 12px;
        font-weight: 600;
        color: #7dd3fc;
      }

      .profile-anim-mono-row {
        display: inline-flex;
        align-items: center;
        gap: 2px;
      }

      @media (min-width: 768px) {
        .profile-anim-line--mono { font-size: 14px; }
      }

      .profile-anim-line em {
        font-style: normal;
        color: #60a5fa;
      }

      .profile-anim-line--xs {
          font-size: 10px;
        font-weight: 600;
        color: rgba(156, 163, 175, 0.9);
      }

      .profile-anim-line--sm {
        font-size: 13px;
        margin-top: 4px;
      }

      @media (min-width: 768px) {
        .profile-anim-line--sm { font-size: 15px; }
      }

      .profile-anim-scene--followers {
        gap: 4px;
        padding: 6px 10px 8px;
        justify-content: center;
        overflow: hidden;
      }

      .profile-anim-scene--followers .profile-anim-tag {
        padding: 2px 7px;
        font-size: 7px;
      }

      .profile-anim-scene--followers .profile-follow-headline {
          font-size: 11px;
        line-height: 1.15;
        margin: 0;
      }

      @media (min-width: 768px) {
        .profile-anim-scene--followers .profile-follow-headline {
          font-size: 12px;
        }
      }

      .profile-follow-headline em {
        font-style: normal;
        color: #4ade80;
      }

      .profile-follow-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        width: min(100%, 250px);
        padding: 7px 9px;
        border-radius: 12px;
        border: 1px solid rgba(34, 197, 94, 0.28);
        background: rgba(15, 23, 42, 0.75);
        box-shadow: 0 8px 24px rgba(34, 197, 94, 0.08);
      }

      .profile-follow-card__profile {
        display: flex;
        align-items: center;
        gap: 7px;
        min-width: 0;
      }

      .profile-follow-card__avatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        flex-shrink: 0;
        background: linear-gradient(135deg, #60a5fa, #818cf8);
        border: 2px solid rgba(255, 255, 255, 0.2);
      }

      .profile-follow-card__meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        min-width: 0;
        line-height: 1.15;
      }

      .profile-follow-card__name {
        font-size: 11px;
        font-weight: 800;
        color: #f9fafb;
        letter-spacing: -0.02em;
      }

      .profile-follow-count {
        font-size: 8px;
        font-weight: 600;
        color: rgba(134, 239, 172, 0.85);
        letter-spacing: 0;
        margin-top: 1px;
      }

      .profile-follow-card__action {
        flex-shrink: 0;
        width: 72px;
        height: 24px;
      }

      .profile-follow-toggle {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
      }

      .profile-follow-toggle__state {
        position: absolute;
        inset: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 3px 8px;
        font-size: 8px;
        white-space: nowrap;
        border-radius: 999px;
      }

      .profile-follow-toggle__state--following {
        opacity: 0;
        visibility: hidden;
      }

      .profile-anim-scene--followers.is-active .profile-follow-toggle__state--follow {
        animation: profileFollowStateFollow 2.8s steps(1, end) infinite;
      }

      .profile-anim-scene--followers.is-active .profile-follow-toggle__state--following {
        animation: profileFollowStateFollowing 2.8s steps(1, end) infinite;
      }

      @keyframes profileFollowStateFollow {
        0%, 49.999% {
          opacity: 1;
          visibility: visible;
        }
        50%, 100% {
          opacity: 0;
          visibility: hidden;
        }
      }

      @keyframes profileFollowStateFollowing {
        0%, 49.999% {
          opacity: 0;
          visibility: hidden;
        }
        50%, 100% {
          opacity: 1;
          visibility: visible;
        }
      }

      .profile-anim-chip--following {
        background: rgba(34, 197, 94, 0.16);
        border: 1px solid rgba(74, 222, 128, 0.45);
        color: #86efac;
      }

      .profile-feed-mock--compact {
        width: min(100%, 250px);
        padding: 5px 7px;
      }

      .profile-feed-mock--compact .profile-feed-mock__head {
        margin-bottom: 4px;
        font-size: 7px;
      }

      .profile-feed-mock--compact .profile-feed-item {
        margin-top: 0;
        padding: 4px 5px;
      }

      .profile-feed-mock--compact .profile-feed-item__text {
        font-size: 8px;
        line-height: 1.25;
      }

      .profile-anim-scene--followers .profile-follow-card__action {
        overflow: hidden;
      }

      .profile-anim-showcase-root .profile-post-composer {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        width: min(100%, 240px);
        padding: 10px;
        border-radius: 14px;
        border: 1px solid rgba(168, 85, 247, 0.22);
        background: rgba(168, 85, 247, 0.08);
      }

      .profile-anim-showcase-root .profile-post-composer__avatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: linear-gradient(135deg, #a78bfa, #c084fc);
        flex-shrink: 0;
      }

      .profile-anim-showcase-root .profile-post-composer__body {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
      }

      .profile-anim-showcase-root .profile-post-composer__line {
        height: 6px;
        width: 100%;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        transform-origin: left;
        transform: scaleX(0);
        opacity: 0;
      }

      .profile-anim-scene.is-active .profile-post-composer__line {
        animation: profileLineGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
      }

      .profile-anim-scene.is-active .profile-post-composer__line--short {
        animation-delay: 0.45s;
      }

      @keyframes profileLineGrow {
        from { transform: scaleX(0); opacity: 0; }
        to { transform: scaleX(1); opacity: 1; }
      }

      .profile-anim-showcase-root .profile-post-composer__line--short {
        width: 65%;
      }

      .profile-anim-showcase-root .profile-post-composer__btn {
        padding: 3px 10px;
        border-radius: 999px;
        background: linear-gradient(90deg, #a855f7, #9333ea);
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        opacity: 0;
      }

      .profile-anim-scene.is-active .profile-post-composer__btn {
        animation: profileChildIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
      }

      .profile-react-bubbles {
        position: relative;
        width: 100%;
        height: 36px;
        margin: 4px 0;
      }

      .profile-react-bubble {
        position: absolute;
        font-size: 18px;
      }

      .profile-anim-scene.is-active .profile-react-bubble {
        animation: profileBubbleFloat 2.4s ease-in-out infinite;
      }

      .profile-react-bubble--1 { left: 0; top: 8px; animation-delay: 0s; }
      .profile-react-bubble--2 { left: 28px; top: 0; animation-delay: 0.2s; font-size: 20px; }
      .profile-react-bubble--3 { left: 58px; top: 10px; animation-delay: 0.4s; }
      .profile-react-bubble--4 { left: 88px; top: 2px; animation-delay: 0.6s; }

      @keyframes profileBubbleFloat {
        0%, 100% { transform: translateY(0) scale(1); opacity: 0.85; }
        50% { transform: translateY(-8px) scale(1.12); opacity: 1; }
      }

      .profile-identity-preview {
        position: relative;
        width: min(100%, 210px);
        padding-top: 32px;
      }

      .profile-identity-banner {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 36px;
        border-radius: 10px;
        background: linear-gradient(90deg, #0ea5e9, #6366f1, #a855f7);
      }

      .profile-anim-scene.is-active .profile-identity-banner {
        animation: profileBannerShift 3s ease-in-out infinite;
      }

      @keyframes profileBannerShift {
        0%, 100% { filter: hue-rotate(0deg); }
        50% { filter: hue-rotate(18deg); }
      }

      .profile-identity-preview .profile-anim-avatar {
        position: relative;
        z-index: 1;
        margin: 0 auto;
        width: 40px;
        height: 40px;
      }

      .profile-pin-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        width: min(100%, 180px);
      }

      .profile-pin-card {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 32px;
        border-radius: 7px;
        border: 1px solid rgba(251, 191, 36, 0.3);
        background: linear-gradient(145deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
        transform: translateY(12px) scale(0.8);
        opacity: 0;
      }

      .profile-pin-card i {
        font-style: normal;
        font-size: 7px;
        font-weight: 800;
        color: rgba(253, 230, 138, 0.9);
        letter-spacing: -0.02em;
      }

      .profile-anim-scene.is-active .profile-pin-card {
        animation: profilePinSnap 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
      }

      .profile-anim-scene.is-active .profile-pin-card:nth-child(1) { animation-delay: 0.2s; }
      .profile-anim-scene.is-active .profile-pin-card:nth-child(2) { animation-delay: 0.32s; }
      .profile-anim-scene.is-active .profile-pin-card:nth-child(3) { animation-delay: 0.44s; }
      .profile-anim-scene.is-active .profile-pin-card:nth-child(4) { animation-delay: 0.56s; }

      @keyframes profilePinSnap {
        to { transform: translateY(0) scale(1); opacity: 1; }
      }

      .profile-timer-stack {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: min(100%, 220px);
        padding: 9px 11px 8px;
        border-radius: 14px;
        border: 1px solid rgba(74, 222, 128, 0.22);
        background: rgba(74, 222, 128, 0.06);
        text-align: left;
      }

      .profile-timer-profile {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
      }

      .profile-timer-stack__avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, #60a5fa, #818cf8);
        border: 2px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 0 12px rgba(96, 165, 250, 0.28);
        flex-shrink: 0;
      }

      .profile-anim-scene.is-active .profile-timer-stack__avatar {
        animation: profileAvatarFloat 2.4s ease-in-out infinite;
      }

      .profile-timer-profile__name {
        flex: 1;
        min-width: 0;
        font-size: 11px;
        font-weight: 800;
        color: #f9fafb;
        letter-spacing: -0.02em;
      }

      .profile-timer-profile .profile-anim-chip--sm {
        margin-left: auto;
        flex-shrink: 0;
      }

      .profile-timer-stack__countdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        padding-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
      }

      .profile-timer-kicker {
        width: min(100%, 220px);
        font-size: 8px;
        line-height: 1.35;
        text-align: center;
      }

      @media (min-width: 768px) {
        .profile-timer-kicker { font-size: 9px; }
      }

      .profile-anim-scene--timer {
        gap: 6px;
      }

      .profile-timer-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        border-radius: 14px;
        border: 1px solid rgba(74, 222, 128, 0.22);
        background: rgba(74, 222, 128, 0.06);
      }

      .profile-timer-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, #4ade80, #22c55e);
        border: 2px solid rgba(255, 255, 255, 0.2);
        flex-shrink: 0;
      }

      .profile-timer-mid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
      }

      .profile-anim-chip--sm {
        padding: 4px 10px;
        font-size: 9px;
      }

      .profile-anim-cursor {
        display: inline-block;
        width: 2px;
        height: 12px;
        margin-left: 2px;
        background: #60a5fa;
        animation: profileCursorBlink 0.9s step-end infinite;
      }

      @keyframes profileCursorBlink {
        50% { opacity: 0; }
      }

      .profile-anim-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 4px 12px;
        border-radius: 999px;
        font-size: 10px;
        font-weight: 700;
      }

      .profile-anim-chip--follow {
        background: linear-gradient(90deg, #22c55e, #16a34a);
        color: #04120a;
      }

      .profile-anim-scene.is-active .profile-anim-timer {
        animation: profileTimerPulse 1.2s ease-in-out infinite;
      }

      .profile-anim-scene.is-active .profile-anim-chip--follow:not(.profile-follow-toggle__state) {
        animation: profileFollowPop 2s ease-in-out infinite;
      }

      @keyframes profileFollowPop {
        0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(34, 197, 94, 0); }
        50% { transform: scale(1.06); box-shadow: 0 0 16px rgba(34, 197, 94, 0.35); }
      }

      .profile-anim-scene.is-active .profile-anim-avatar {
        animation: profileAvatarFloat 2.4s ease-in-out infinite;
      }

      .profile-anim-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, #60a5fa, #818cf8);
        border: 2px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 0 20px rgba(96, 165, 250, 0.35);
      }

      @keyframes profileAvatarFloat {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-5px) rotate(3deg); }
      }

      .profile-anim-timer {
        font-family: "IBM Plex Mono", ui-monospace, monospace;
        font-size: 22px;
        font-weight: 700;
        color: #4ade80;
        letter-spacing: -0.04em;
        text-shadow: 0 0 18px rgba(74, 222, 128, 0.35);
      }

      @keyframes profileTimerPulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.75; transform: scale(1.04); }
      }

/* Standalone showcase embed (not inside bento flex card) */
.profile-anim-showcase-root .profile-anim-stage {
  flex: none;
  min-height: 320px;
}

.profile-anim-showcase-root .profile-anim-stage__frame {
  min-height: 280px;
}

/* Popup shell */
.profile-anim-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.profile-anim-popup-overlay.is-open {
  display: flex;
}

.profile-anim-popup-overlay:not(.profile-anim-popup-overlay--closable) {
  cursor: default;
}

.profile-anim-popup-overlay.profile-anim-popup-overlay--closable {
  cursor: pointer;
}

html.profile-anim-popup-open {
  overflow: hidden;
}

.profile-anim-popup-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 380px;
  width: min(100%, 380px);
  padding: 4px 4px 0;
  cursor: default;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(18, 18, 24, 0.98) 0%, rgba(10, 10, 14, 0.99) 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

/* Compact popup: scale inner slides — clip wrapper to exact scaled height */
.profile-anim-popup-panel .profile-anim-showcase-root {
  --profile-popup-scale: 0.72;
  --profile-popup-unscaled-height: 252px;
  overflow: hidden;
  height: calc(var(--profile-popup-unscaled-height) * var(--profile-popup-scale));
  margin: 0;
  flex: 0 0 auto;
  pointer-events: none;
}

.profile-anim-popup-panel .profile-anim-showcase-root .profile-anim-stage {
  transform: scale(var(--profile-popup-scale));
  transform-origin: top center;
  width: calc(100% / var(--profile-popup-scale));
  margin-left: calc((100% - 100% / var(--profile-popup-scale)) / 2);
  height: var(--profile-popup-unscaled-height);
  min-height: 0;
  flex: none;
  pointer-events: auto;
}

.profile-anim-popup-panel .profile-anim-showcase-root .profile-anim-stage__frame {
  min-height: 235px;
}

.profile-anim-popup-panel .profile-anim-popup-close {
  pointer-events: auto;
}

.profile-anim-popup-panel .profile-anim-popup-dismiss {
  pointer-events: auto;
}

.profile-anim-popup-close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.profile-anim-popup-close.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.profile-anim-popup-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.profile-anim-popup-dismiss {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: center;
  margin: 0;
  padding: 0 8px 4px;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
  flex: 0 0 auto;
}

.profile-anim-popup-dismiss__check {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: #4ade80;
  cursor: pointer;
  flex-shrink: 0;
}

.profile-anim-popup-dismiss:hover {
  color: rgba(255, 255, 255, 0.72);
}

.profile-anim-popup-dismiss[hidden] {
  display: none !important;
}

@media (max-width: 767px) {
  .profile-anim-popup-panel .profile-anim-showcase-root {
    --profile-popup-scale: 0.66;
    --profile-popup-unscaled-height: 252px;
  }

  .profile-anim-popup-panel .profile-anim-showcase-root .profile-anim-stage__frame {
    min-height: 228px;
  }

  .profile-anim-showcase-root .profile-anim-chip--follow:not(.profile-follow-toggle__state),
  .profile-anim-showcase-root .profile-anim-avatar,
  .profile-anim-showcase-root .profile-link-bar,
  .profile-anim-showcase-root .profile-post-composer__line,
  .profile-anim-showcase-root .profile-identity-banner,
  .profile-anim-showcase-root .profile-anim-timer {
    animation: none !important;
  }
}