    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
      -webkit-user-select: none;
      user-select: none;
    }

    html { height: 100%; scrollbar-width: none; }
    html::-webkit-scrollbar { display: none; }

    body {
      min-height: 100%;
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      color: #ffffff;
      background: #080808;
      background-image:
        radial-gradient(ellipse 60% 40% at 50% 10%, rgba(139, 101, 8, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 80% 80%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    }

    /* Ambient floating orbs */
    .ambient-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .ambient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      will-change: transform, opacity;
    }

    .ambient-orb--1 {
      width: 400px; height: 400px;
      top: -10%; left: 50%;
      transform: translateX(-50%);
      background: rgba(184, 134, 11, 0.3);
      animation: orb-1 12s ease-in-out infinite alternate;
    }

    .ambient-orb--2 {
      width: 300px; height: 300px;
      bottom: 10%; left: 20%;
      background: rgba(218, 165, 32, 0.15);
      animation: orb-2 14s ease-in-out 2s infinite alternate;
    }

    .ambient-orb--3 {
      width: 250px; height: 250px;
      top: 40%; right: -10%;
      background: rgba(240, 200, 80, 0.1);
      animation: orb-3 10s ease-in-out 4s infinite alternate;
    }

    @keyframes orb-1 {
      0%   { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.7; }
      100% { transform: translateX(-50%) translateY(20px) scale(1.1); opacity: 1; }
    }
    @keyframes orb-2 {
      0%   { transform: translate(0, 0); opacity: 0.5; }
      100% { transform: translate(15px, -20px); opacity: 0.8; }
    }
    @keyframes orb-3 {
      0%   { transform: translateY(0) scale(1); opacity: 0.4; }
      100% { transform: translateY(-15px) scale(1.08); opacity: 0.7; }
    }

    /* Profile image — float + glow pulse animation */
    .profile-img {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      object-fit: cover;
      animation: profile-float 4s ease-in-out infinite;
      filter: drop-shadow(0 0 0px rgba(218, 165, 32, 0));
    }

    @keyframes profile-float {
      0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 12px rgba(218, 165, 32, 0.15));
      }
      50% {
        transform: translateY(-6px);
        filter: drop-shadow(0 0 24px rgba(218, 165, 32, 0.35));
      }
    }

    /* Profile tap wrapper */
    .profile-tap {
      position: relative;
      display: inline-block;
      cursor: pointer;
      text-decoration: none;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
    }

    .profile-tap img {
      -webkit-touch-callout: none;
      pointer-events: none;
    }

    .profile-tap__ring {
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 2px solid rgba(218, 165, 32, 0);
      pointer-events: none;
      opacity: 0;
    }

    .profile-tap.tapped .profile-img {
      animation: profile-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .profile-tap.tapped .profile-tap__ring {
      animation: ring-burst 0.7s ease-out forwards;
    }

    @keyframes profile-pop {
      0%   { transform: scale(1); filter: drop-shadow(0 0 12px rgba(218, 165, 32, 0.15)); }
      30%  { transform: scale(0.82); filter: drop-shadow(0 0 4px rgba(218, 165, 32, 0.1)); }
      60%  { transform: scale(1.15); filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.6)); }
      80%  { transform: scale(0.97); filter: drop-shadow(0 0 18px rgba(218, 165, 32, 0.3)); }
      100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(218, 165, 32, 0.15)); }
    }

    @keyframes ring-burst {
      0%   { opacity: 0.8; inset: -4px; border-color: rgba(218, 165, 32, 0.6); }
      100% { opacity: 0; inset: -28px; border-color: rgba(218, 165, 32, 0); }
    }

    .profile-tap.holding {
      z-index: 50;
    }

    .tap-counter.hidden-hold {
      opacity: 0 !important;
      transition: opacity 0.15s ease;
    }

    .profile-tap.holding .profile-img {
      animation: hold-grow 2s ease-out forwards;
      filter: drop-shadow(0 0 40px rgba(218, 165, 32, 0.8));
    }

    @keyframes hold-grow {
      0%   { transform: scale(1); }
      100% { transform: scale(1.8); }
    }

    .profile-tap.holding-max .profile-img {
      animation: wobble-pop 0.3s ease-in-out infinite;
      filter: drop-shadow(0 0 60px rgba(255, 180, 50, 1));
    }

    @keyframes wobble-pop {
      0%, 100% { transform: scale(1.8); }
      25%      { transform: scale(1.75) rotate(-3deg); }
      75%      { transform: scale(1.85) rotate(3deg); }
    }

    .profile-tap.hold-release .profile-img {
      animation: pop-explode 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes pop-explode {
      0%   { transform: scale(1.8); filter: drop-shadow(0 0 60px rgba(255, 180, 50, 1)); }
      20%  { transform: scale(2.0); filter: drop-shadow(0 0 80px rgba(255, 180, 50, 1)); }
      50%  { transform: scale(0.6); filter: drop-shadow(0 0 4px rgba(218, 165, 32, 0.1)); }
      75%  { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.4)); }
      100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(218, 165, 32, 0.15)); }
    }

    /* Combo ring bursts */
    @keyframes ring-burst-big {
      0%   { opacity: 1; inset: -4px; border-color: rgba(218, 165, 32, 0.9); border-width: 3px; }
      100% { opacity: 0; inset: -50px; border-color: rgba(218, 165, 32, 0); }
    }

    @keyframes ring-burst-rage {
      0%   { opacity: 1; inset: -4px; border-color: rgba(255, 180, 50, 1); border-width: 4px; }
      100% { opacity: 0; inset: -70px; border-color: rgba(255, 180, 50, 0); }
    }

    /* Combo pop escalation */
    @keyframes profile-pop-big {
      0%   { transform: scale(1); filter: drop-shadow(0 0 12px rgba(218, 165, 32, 0.15)); }
      25%  { transform: scale(0.75); filter: drop-shadow(0 0 4px rgba(218, 165, 32, 0.1)); }
      55%  { transform: scale(1.25); filter: drop-shadow(0 0 40px rgba(218, 165, 32, 0.8)); }
      75%  { transform: scale(0.95); filter: drop-shadow(0 0 25px rgba(218, 165, 32, 0.4)); }
      100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(218, 165, 32, 0.15)); }
    }

    @keyframes profile-pop-rage {
      0%   { transform: scale(1); filter: drop-shadow(0 0 12px rgba(255, 180, 50, 0.3)); }
      20%  { transform: scale(0.7); filter: drop-shadow(0 0 4px rgba(255, 180, 50, 0.1)); }
      50%  { transform: scale(1.35); filter: drop-shadow(0 0 50px rgba(255, 180, 50, 1)); }
      70%  { transform: scale(0.92); filter: drop-shadow(0 0 30px rgba(255, 180, 50, 0.5)); }
      100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 180, 50, 0.3)); }
    }

    /* Combo level overrides */
    .profile-tap.combo-mid .profile-img {
      animation: profile-pop-big 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }
    .profile-tap.combo-mid .profile-tap__ring {
      animation: ring-burst-big 0.6s ease-out forwards !important;
    }

    .profile-tap.combo-rage .profile-img {
      animation: profile-pop-rage 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }
    .profile-tap.combo-rage .profile-tap__ring {
      animation: ring-burst-rage 0.5s ease-out forwards !important;
    }


    /* Tap counter */
    .tap-counter {
      position: absolute;
      bottom: -10px;
      left: 0;
      right: 0;
      margin: auto;
      width: max-content;
      display: flex;
      align-items: center;
      gap: 3px;
      padding: 3px 8px;
      border-radius: 20px;
      background: rgba(18, 14, 6, 0.85);
      border: 2px solid rgba(218, 165, 32, 0.5);
      backdrop-filter: blur(8px);
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.3s ease, transform 0.15s ease;
      z-index: 5;
    }

    .tap-counter.flash {
      color: rgba(218, 165, 32, 0.7);
    }

    .tap-counter.flash-rage {
      color: rgba(255, 180, 50, 0.9);
      transform: scale(1.15);
    }

    .tap-counter__icon {
      font-size: 10px;
    }

    /* Floating +N */
    .tap-float {
      position: absolute;
      left: 50%;
      top: -8px;
      transform: translateX(-50%);
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: rgba(218, 165, 32, 0.8);
      pointer-events: none;
      opacity: 0;
      transition: font-size 0.1s ease;
    }

    .tap-float.show {
      animation: float-up 0.7s ease-out forwards;
    }

    .tap-float.rage {
      font-size: 20px;
      color: rgba(255, 180, 50, 1);
    }

    @keyframes float-up {
      0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
      100% { opacity: 0; transform: translateX(-50%) translateY(-30px); }
    }

    /* Heart burst particles */
    .heart-burst {
      position: absolute;
      font-size: 16px;
      pointer-events: none;
      z-index: 10;
      opacity: 0;
    }

    .heart-burst.animate {
      animation: heart-float var(--duration, 1s) ease-out forwards;
    }

    @keyframes heart-float {
      0%   { opacity: 1; transform: translate(0, 0) scale(0.5) rotate(0deg); }
      100% { opacity: 0; transform: translate(var(--dx2, 30px), var(--dy2, -90px)) scale(0.8) rotate(var(--rot2, 30deg)); }
    }

    /* Milestone burst (every 100 taps) */
    .milestone-particle {
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      opacity: 0;
      font-size: 24px;
    }

    .milestone-particle.animate {
      animation: milestone-explode var(--duration, 1.5s) cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes milestone-explode {
      0%   { opacity: 1; transform: translate(0, 0) scale(0.3) rotate(0deg); }
      100% { opacity: 0; transform: translate(var(--mx), var(--my)) scale(0.5) rotate(var(--mrot)); }
    }

    .milestone-flash {
      position: fixed;
      inset: 0;
      z-index: 9998;
      pointer-events: none;
      background: radial-gradient(circle at 50% 40%, rgba(218, 165, 32, 0.3), transparent 70%);
      opacity: 0;
    }

    .milestone-flash.show {
      animation: milestone-glow 0.8s ease-out forwards;
    }

    @keyframes milestone-glow {
      0%   { opacity: 1; }
      100% { opacity: 0; }
    }

    /* Particle canvas */
    .particle-canvas {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
    }

    /* Touch glow ripple */
    .touch-glow {
      position: fixed;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(218, 165, 32, 0.25) 0%, transparent 70%);
      pointer-events: none;
      z-index: 999;
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
      transition: none;
    }

    .touch-glow.active {
      animation: glow-ripple 0.6s ease-out forwards;
    }

    @keyframes glow-ripple {
      0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
      100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
    }

    /* "New" badge */
    .badge-new {
      position: absolute;
      top: -6px;
      right: -6px;
      background: linear-gradient(135deg, #b8860b, #e8c44a);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 9px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 50px;
      line-height: 1;
      z-index: 2;
      animation: badge-pulse 2s ease-in-out infinite;
    }

    @keyframes badge-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4); }
      50%      { box-shadow: 0 0 0 6px rgba(184, 134, 11, 0); }
    }

    /* Social icon buttons */
    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
      color: rgba(255, 255, 255, 0.6);
    }

    .social-icon:active {
      transform: scale(0.92);
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.15);
    }

    @media (hover: hover) {
      .social-icon:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.85);
      }
    }

    /* Link buttons */
    .link-btn {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
      padding: 10px 16px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.04);
      border: 2px solid rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      text-decoration: none;
      color: #fff;
      transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
      min-height: 60px;
    }

    .link-btn:active {
      transform: scale(0.975);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.14);
    }

    @media (hover: hover) {
      .link-btn:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.14);
        transform: translateY(-1px);
      }
    }

    .link-btn__thumb {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      margin-right: 14px;
    }

    .link-btn__label {
      flex: 1;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      padding-right: 42px; /* offset for thumb to keep label visually centered */
    }

    .link-btn__lock {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255, 255, 255, 0.2);
      flex-shrink: 0;
    }

    /* Animations */
    @keyframes fade-up {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes scale-in {
      from { opacity: 0; transform: scale(0.85); }
      to   { opacity: 1; transform: scale(1); }
    }
    @keyframes fade-in {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .anim-scale { opacity: 0; animation: scale-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
    .anim-fade  { opacity: 0; animation: fade-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
    .anim-up    { opacity: 0; animation: fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

    .d0  { animation-delay: 0.05s; }
    .d1  { animation-delay: 0.15s; }
    .d2  { animation-delay: 0.25s; }
    .d3  { animation-delay: 0.35s; }
    .d4  { animation-delay: 0.45s; }
    .d5  { animation-delay: 0.55s; }
    .d6  { animation-delay: 0.65s; }
    .d7  { animation-delay: 0.75s; }
    .d8  { animation-delay: 0.85s; }
    .d9  { animation-delay: 0.95s; }
    .d10 { animation-delay: 1.05s; }

    /* Footer */
    .footer-link {
      color: rgba(255, 255, 255, 0.25);
      text-decoration: none;
      transition: color 0.2s ease;
      font-size: 12px;
    }
    .footer-link:active { color: rgba(255, 255, 255, 0.45); }
    @media (hover: hover) {
      .footer-link:hover { color: rgba(255, 255, 255, 0.45); }
    }

    .safe-bottom {
      padding-bottom: max(20px, env(safe-area-inset-bottom));
    }

    /* Card wrapper */
    .page-card {
      position: relative;
      width: 100%;
      max-width: 480px;
      min-height: 100vh;
      margin: 0 auto;
      background: #080500;
      background-image:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 101, 8, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 30% 80%, rgba(184, 134, 11, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(218, 165, 32, 0.12) 0%, transparent 50%);
      border-radius: 24px 24px 0 0;
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: none;
      overflow: hidden;
    }

    @media (max-width: 480px) {
      .page-card {
        border-radius: 0;
        border: none;
      }
    }

    /* Top bar */
    .top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px 0;
    }

    .top-bar__icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
    }

    .top-bar__actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .share-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.5);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .share-btn:active {
      transform: scale(0.92);
      background: rgba(255, 255, 255, 0.12);
    }

    /* Subscribe button */
    .subscribe-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.8);
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 13px;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .subscribe-btn:active {
      transform: scale(0.95);
      background: rgba(255, 255, 255, 0.14);
    }

    @media (hover: hover) {
      .subscribe-btn:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.16);
      }
    }

    /* Dialog / Modal */
    .subscribe-dialog {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .subscribe-dialog.is-open {
      display: flex;
    }

    .subscribe-dialog__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .subscribe-dialog__panel {
      position: relative;
      width: 100%;
      max-width: 380px;
      background: rgba(20, 16, 8, 0.92);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 32px 28px 28px;
      text-align: center;
      color: #fff;
      animation: dialog-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes dialog-in {
      from { opacity: 0; transform: scale(0.92) translateY(10px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    .subscribe-dialog__close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.5);
      transition: background 0.15s ease;
    }

    .subscribe-dialog__close:active {
      background: rgba(255, 255, 255, 0.12);
    }

    .subscribe-dialog__avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      margin: 0 auto 16px;
      object-fit: cover;
    }

    .subscribe-dialog__title {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 4px;
      color: #fff;
    }

    .subscribe-dialog__subtitle {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 24px;
    }

    .subscribe-dialog__input {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
      outline: none;
      transition: border-color 0.2s ease;
      margin-bottom: 16px;
    }

    .subscribe-dialog__input::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .subscribe-dialog__input:focus {
      border-color: #b8860b;
    }

    .subscribe-dialog__submit {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 50px;
      background: linear-gradient(135deg, #db7093, #ff6987);
      color: #000;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.15s ease;
    }

    .subscribe-dialog__submit:active {
      transform: scale(0.98);
      background: linear-gradient(135deg, #c96384, #e85d7a);
    }

    .subscribe-dialog__disclaimer {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.25);
      margin-top: 16px;
      line-height: 1.5;
    }

    /* Share dialog */
    .share-dialog {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: flex-end;
      justify-content: center;
      padding: 0;
    }

    .share-dialog.is-open {
      display: flex;
    }

    .share-dialog__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .share-dialog__panel {
      position: relative;
      width: 100%;
      max-width: 480px;
      background: rgba(20, 16, 8, 0.95);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px 20px 0 0;
      padding: 24px 24px 32px;
      color: #fff;
      animation: share-slide-up 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes share-slide-up {
      from { transform: translateY(100%); }
      to   { transform: translateY(0); }
    }

    .share-dialog__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .share-dialog__title {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 17px;
      color: #fff;
    }

    .share-dialog__close {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.5);
    }

    .share-dialog__close:active {
      background: rgba(255, 255, 255, 0.12);
    }

    /* Profile preview card inside share */
    .share-dialog__preview {
      width: 100%;
      border-radius: 16px;
      padding: 28px 20px 20px;
      text-align: center;
      margin-bottom: 20px;
      background: #1a1408;
      background-image:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 101, 8, 0.5) 0%, transparent 60%);
    }

    .share-dialog__preview-img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 12px;
    }

    .share-dialog__preview-name {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 15px;
      color: #fff;
    }

    .share-dialog__preview-url {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      margin-top: 2px;
    }

    /* Share options row */
    .share-dialog__options {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 4px;
      -webkit-overflow-scrolling: touch;
    }

    .share-dialog__options::-webkit-scrollbar {
      display: none;
    }

    .share-option {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      cursor: pointer;
      flex-shrink: 0;
      border: none;
      background: none;
      padding: 0;
    }

    .share-option__icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.15s ease;
    }

    .share-option:active .share-option__icon {
      transform: scale(0.92);
    }

    .share-option__label {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      white-space: nowrap;
    }

    /* ==========================================
       CINEMATIC HERO
       ========================================== */
    .hero {
      position: relative;
      width: 100%;
      min-height: 140px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 24px 0;
      overflow: visible;
    }

    .hero__brand {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-style: normal;
      font-size: clamp(32px, 8vw, 48px);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      line-height: 1;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 230, 170, 0.95) 30%,
        rgba(240, 200, 80, 0.9) 55%,
        rgba(255, 255, 255, 0.7) 100%
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.3));
      animation: hero-glow 4s ease-in-out infinite alternate;
    }

    @keyframes hero-glow {
      0%   { filter: drop-shadow(0 0 20px rgba(184, 134, 11, 0.2)); }
      100% { filter: drop-shadow(0 0 40px rgba(184, 134, 11, 0.45)); }
    }

    .hero__brand-lure {
      font-style: italic;
      background: linear-gradient(
        90deg,
        rgba(240, 200, 80, 0.9) 0%,
        rgba(240, 200, 80, 0.9) 35%,
        rgba(255, 255, 255, 1) 50%,
        rgba(240, 200, 80, 0.9) 65%,
        rgba(240, 200, 80, 0.9) 100%
      );
      background-size: 250% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: lure-shimmer 14s ease-in-out infinite;
    }

    @keyframes lure-shimmer {
      0%, 100% { background-position: 200% center; }
      50%      { background-position: -200% center; }
    }

    .hero__tagline {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 12px;
    }

    .hero__divider {
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.5), transparent);
      margin: 8px auto 0;
    }

    /* Scroll hint */
    .scroll-hint {
      margin-top: 4px;
      animation: scroll-bounce 2s ease-in-out infinite;
      color: rgba(255, 255, 255, 0.15);
    }

    @keyframes scroll-bounce {
      0%, 100% { transform: translateY(0); opacity: 0.3; }
      50%      { transform: translateY(6px); opacity: 0.15; }
    }

    /* ==========================================
       SOCIAL PROOF
       ========================================== */
    .social-proof {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 0;
      margin-top: 2px;
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 0.03em;
    }

    .social-proof__dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #b8860b;
      animation: proof-pulse 2s ease-in-out infinite;
    }

    @keyframes proof-pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.5; transform: scale(0.8); }
    }

    /* ==========================================
       LIVE STATUS BANNER
       ========================================== */
    .live-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: calc(100% - 32px);
      max-width: 480px;
      padding: 12px 16px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.18), rgba(239, 68, 68, 0.08));
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(239, 68, 68, 0.3);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, opacity 0.4s ease;
      
      /* Fixed Positioning at the bottom */
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translate(-50%, 150%);
      z-index: 10000;
      opacity: 0;
      pointer-events: none;
    }

    .live-banner.is-visible {
      transform: translate(-50%, 0);
      opacity: 1;
      pointer-events: auto;
    }

    .live-banner:hover {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(239, 68, 68, 0.12));
    }

    .live-banner__content {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .live-banner__close {
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.6);
      padding: 4px;
      cursor: pointer;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s ease, background-color 0.2s ease;
      outline: none;
    }

    .live-banner__close:hover {
      color: #ffffff;
      background-color: rgba(255, 255, 255, 0.1);
    }

    .live-banner__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ef4444;
      animation: live-blink 1.2s ease-in-out infinite;
    }

    @keyframes live-blink {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
      50%      { opacity: 0.6; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0); }
    }

    .live-banner__text {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: #ef4444;
      letter-spacing: 0.02em;
    }

    /* ==========================================
       CONTENT TEASER CAROUSEL
       ========================================== */
    .teaser-section {
      width: 100%;
      padding: 0 0 8px;
      overflow: visible;
      position: relative;
      z-index: 5;
    }

    .teaser-section__title {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 12px;
      text-align: center;
      position: relative;
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.25) 40%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.25) 60%,
        rgba(255, 255, 255, 0.25) 100%
      );
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer-sweep 14s ease-in-out infinite;
    }

    @keyframes shimmer-sweep {
      0%, 100% { background-position: 200% center; }
      50%      { background-position: -200% center; }
    }

    .teaser-scroll {
      display: flex;
      gap: 10px;
      padding-bottom: 12px;
      padding-top: 4px;
    }

    .teaser-card {
      flex: 1;
      min-width: 0;
      height: 190px;
      border-radius: 16px;
      position: relative;
      border: 2px solid rgba(255, 255, 255, 0.15);
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .teaser-card--1,
    .teaser-card--2 {
      overflow: hidden;
    }

    .teaser-card::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 20px;
      border: 2px solid rgba(218, 165, 32, 0.9);
      box-shadow: 0 0 18px rgba(218, 165, 32, 0.5), 0 0 6px rgba(218, 165, 32, 0.3);
      opacity: 0;
      pointer-events: none;
      z-index: 5;
    }

    .teaser-card:active {
      transform: scale(0.96);
    }

    @media (hover: hover) {
      .teaser-card:hover {
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-4px);
        z-index: 10;
      }
    }

    .teaser-card__bg {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      overflow: hidden;
      transition: transform 0.6s ease;
    }

    @media (hover: hover) {
      .teaser-card--1:hover .teaser-card__bg,
      .teaser-card--2:hover .teaser-card__bg {
        transform: scale(1.12);
        transition: transform 3s ease-out;
      }
    }

    .teaser-card--1 { animation-delay: 0s; }
    .teaser-card--1 .teaser-card__bg {
      background: url('icons/teaser-1.webp') center/cover no-repeat;
    }

    .teaser-card--2 { animation-delay: 1.5s; }
    .teaser-card--2 .teaser-card__bg {
      background: url('icons/teaser-3.webp') center/cover no-repeat;
    }

    .teaser-card--3 { animation-delay: 3s; }
    .teaser-card--3 .teaser-card__bg {
      background: url('icons/teaser-2.webp') center/cover no-repeat;
    }

    .teaser-card--3 {
      border: none;
      overflow: hidden;
      animation: card-glow-fade 3s infinite ease-in-out;
      box-shadow: 0 0 0 2px rgba(218, 165, 32, 0), 0 0 18px rgba(218, 165, 32, 0), 0 0 6px rgba(218, 165, 32, 0);
    }

    .teaser-card--3::after {
      display: none;
    }

    @keyframes card-glow-fade {
      0%, 100% {
        box-shadow: 0 0 0 2px rgba(218, 165, 32, 0), 0 0 18px rgba(218, 165, 32, 0), 0 0 6px rgba(218, 165, 32, 0);
      }
      50% {
        box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.9), 0 0 18px rgba(218, 165, 32, 0.5), 0 0 6px rgba(218, 165, 32, 0.3);
      }
    }

    .teaser-card__overlay {
      position: absolute;
      inset: 0;
      border-radius: 14px;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(1px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .teaser-card__lock {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .teaser-card__label {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.9);
      text-align: center;
      padding: 0 8px;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }

    .teaser-card--3 .teaser-card__overlay {
      background: rgba(0, 0, 0, 0.5);
    }

    .teaser-card__tag {
      position: absolute;
      top: 8px;
      right: 8px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 4px 10px;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .teaser-card__tag--live {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.85), rgba(249, 115, 22, 0.85));
      box-shadow: 0 2px 12px rgba(239, 68, 68, 0.4);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .teaser-card__tag-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
      position: relative;
      flex-shrink: 0;
    }

    .teaser-card__tag-dot::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.6);
      animation: live-pulse 2s ease-in-out infinite;
    }

    @keyframes live-pulse {
      0%, 100% { transform: scale(1); opacity: 0.6; }
      50%      { transform: scale(1.8); opacity: 0; }
    }

    .teaser-card__tag--dm {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(99, 102, 241, 0.85));
      box-shadow: 0 2px 12px rgba(59, 130, 246, 0.4);
    }

    .teaser-card__tag--new {
      background: linear-gradient(135deg, rgba(219, 112, 147, 0.9), rgba(255, 105, 135, 0.9));
      box-shadow: 0 2px 12px rgba(219, 112, 147, 0.4);
    }

    /* ==========================================
       SENSITIVE CONTENT GATE
       ========================================== */
    .gate-dialog {
      position: fixed;
      inset: 0;
      z-index: 10001;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .gate-dialog.is-open {
      display: flex;
    }

    .gate-dialog__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .gate-dialog__panel {
      position: relative;
      width: 100%;
      max-width: 340px;
      background: rgba(22, 16, 8, 0.95);
      border: 2px solid rgba(219, 112, 147, 0.7);
      border-radius: 24px;
      padding: 32px 24px 24px;
      text-align: center;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(219, 112, 147, 0.15), inset 0 0 30px rgba(219, 112, 147, 0.05);
      animation: gate-enter 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes gate-enter {
      0%   { opacity: 0; transform: scale(0.92) translateY(12px); }
      100% { opacity: 1; transform: scale(1) translateY(0); }
    }

    .gate-dialog__icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(219, 112, 147, 0.1);
      border: 1.5px solid rgba(219, 112, 147, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: rgba(219, 112, 147, 0.9);
      font-size: 24px;
      animation: gate-icon-breathe 2.5s ease-in-out infinite;
    }

    @keyframes gate-icon-breathe {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    .gate-dialog__title {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -0.01em;
      color: #fff;
      margin-bottom: 8px;
    }

    .gate-dialog__age {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 50px;
      background: rgba(239, 68, 68, 0.15);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: rgba(239, 68, 68, 0.9);
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.03em;
      margin-bottom: 16px;
    }

    .gate-dialog__text {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 28px;
    }

    .gate-dialog__continue {
      display: block;
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 50px;
      background: linear-gradient(135deg, #db7093, #ff6987);
      color: #000;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      box-shadow: 0 4px 20px rgba(219, 112, 147, 0.25);
    }

    .gate-dialog__continue:active {
      transform: scale(0.97);
    }

    @media (hover: hover) {
      .gate-dialog__continue:hover {
        box-shadow: 0 0 20px rgba(219, 112, 147, 0.3);
      }
    }

    .gate-dialog__back {
      display: block;
      width: 100%;
      padding: 12px;
      margin-top: 8px;
      border: none;
      border-radius: 50px;
      background: transparent;
      color: rgba(255, 255, 255, 0.3);
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 13px;
      cursor: pointer;
      transition: color 0.15s ease;
    }

    .gate-dialog__back:active {
      color: rgba(255, 255, 255, 0.5);
    }
  
    /* Background Video (Desktop Only) */
    .ambient-video {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0;
      animation: video-fade-in 2.5s ease-in-out 0.5s forwards;
      pointer-events: none;
      display: none;
    }

    @keyframes video-fade-in {
      from { opacity: 0; }
      to   { opacity: 0.4; }
    }

    .ambient-video-vignette {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
    }

    @media (min-width: 481px) {
      .ambient-video {
        display: block;
      }
      .ambient-canvas {
        display: none;
      }
    }

    /* ==========================================
       VIP PREMIUM MODAL
       ========================================== */
    .vip-dialog {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .vip-dialog.is-open {
      pointer-events: auto;
      opacity: 1;
    }
    .vip-dialog__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .vip-dialog__panel {
      position: relative;
      width: 100%;
      max-width: 420px;
      max-height: 80vh;
      overflow-y: auto;
      background: rgba(20, 16, 8, 0.96);
      border: 2px solid rgba(219, 112, 147, 0.35);
      border-bottom: none;
      border-radius: 20px 20px 0 0;
      padding: 24px 20px 32px;
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
      box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(219, 112, 147, 0.06);
    }
    .vip-dialog.is-open .vip-dialog__panel {
      transform: translateY(0);
    }
    .vip-dialog__header {
      text-align: center;
      margin-bottom: 4px;
    }
    .vip-dialog__title {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: #fff;
      letter-spacing: 0.01em;
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.5) 40%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0.5) 100%
      );
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer-sweep 14s ease-in-out infinite;
    }
    .vip-dialog__avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      margin: 0 auto 12px;
      border: none;
    }
    .vip-dialog__close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.4);
      transition: background 0.2s ease;
      z-index: 1;
    }
    .vip-dialog__close:active {
      background: rgba(255, 255, 255, 0.12);
    }
    .vip-dialog__subtitle {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.35);
      margin: 0 0 20px;
      text-align: center;
    }
    .vip-dialog__links {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .vip-link {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      text-decoration: none;
      color: #fff;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .vip-link:active {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(218, 165, 32, 0.2);
    }
    @media (hover: hover) {
      .vip-link:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(218, 165, 32, 0.2);
      }
    }
    .vip-link__icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .vip-link__name {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 14px;
      flex: 1;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .vip-link__arrow {
      color: rgba(255, 255, 255, 0.2);
      flex-shrink: 0;
    }

    .vip-link--featured {
      border: 2px solid rgba(219, 112, 147, 0.5);
      box-shadow: 0 0 12px rgba(219, 112, 147, 0.1), inset 0 0 12px rgba(219, 112, 147, 0.03);
      animation: featured-glow 2.5s ease-in-out infinite;
    }

    @keyframes featured-glow {
      0%, 100% { border-color: rgba(219, 112, 147, 0.3); box-shadow: 0 0 8px rgba(219, 112, 147, 0.08); }
      50% { border-color: rgba(219, 112, 147, 0.6); box-shadow: 0 0 16px rgba(219, 112, 147, 0.15); }
    }

    .live-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4caf50;
      margin-left: 6px;
      vertical-align: middle;
      animation: live-pulse 1.5s ease-in-out infinite;
    }

    @keyframes live-pulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6); }
      50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
    }

    .vip-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.05em;
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 8px;
      vertical-align: middle;
      text-transform: uppercase;
      line-height: 1;
    }

    .vip-badge--new {
      background: rgba(76, 175, 80, 0.15);
      color: #4caf50;
      border: 1px solid rgba(76, 175, 80, 0.3);
      animation: badge-new 2s ease-in-out infinite;
    }

    @keyframes badge-new {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; transform: scale(0.95); }
    }

    .vip-badge--hot {
      background: rgba(255, 87, 34, 0.15);
      color: #ff5722;
      border: 1px solid rgba(255, 87, 34, 0.3);
      animation: badge-hot 1.8s ease-in-out infinite;
    }

    @keyframes badge-hot {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4); }
      50% { box-shadow: 0 0 8px 2px rgba(255, 87, 34, 0.25); }
    }

    .flame-icon {
      vertical-align: middle;
      margin-left: 4px;
      animation: flame-flicker 1.2s ease-in-out infinite;
    }

    @keyframes flame-flicker {
      0%, 100% { opacity: 1; transform: scale(1) translateY(0); }
      25% { opacity: 0.8; transform: scale(1.1) translateY(-1px); }
      50% { opacity: 1; transform: scale(0.95) translateY(0); }
      75% { opacity: 0.85; transform: scale(1.08) translateY(-1px); }
    }

    /* ==========================================
       THEME TOGGLE BUTTON
       ========================================== */
    .theme-toggle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.5);
      transition: background 0.2s ease, transform 0.2s ease, border-color 0.3s ease, color 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .theme-toggle:active {
      transform: scale(0.92);
      background: rgba(255, 255, 255, 0.12);
    }

    .theme-toggle__icon {
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
      position: absolute;
    }

    .theme-toggle__icon--sun { opacity: 0; transform: scale(0.5) rotate(-90deg); }
    .theme-toggle__icon--moon { opacity: 1; transform: scale(1) rotate(0deg); }

    /* ==========================================
       LIGHT THEME
       ========================================== */
    body.light-theme {
      background: #fdf2f4;
      background-image:
        radial-gradient(ellipse 70% 50% at 30% 0%, rgba(219, 112, 147, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 90%, rgba(255, 182, 193, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(219, 112, 147, 0.05) 0%, transparent 70%);
      color: #1a1a1a;
    }

    body.light-theme .ambient-orb--1 { background: rgba(219, 112, 147, 0.2); }
    body.light-theme .ambient-orb--2 { background: rgba(255, 182, 193, 0.18); }
    body.light-theme .ambient-orb--3 { background: rgba(255, 105, 135, 0.12); }

    body.light-theme .page-card {
      background:
        radial-gradient(ellipse 90% 50% at 50% 0%, rgba(219, 112, 147, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(255, 182, 193, 0.15) 0%, transparent 50%),
        linear-gradient(to bottom, #fce4ec 0%, #f8bbd0 100%) !important;
      border-color: rgba(219, 112, 147, 0.2) !important;
      box-shadow: 0 8px 40px rgba(219, 112, 147, 0.12);
    }

    body.light-theme .top-bar__icon { color: rgba(0, 0, 0, 0.4); }

    body.light-theme .theme-toggle {
      border-color: rgba(0, 0, 0, 0.1);
      background: rgba(0, 0, 0, 0.04);
      color: rgba(0, 0, 0, 0.5);
    }
    body.light-theme .theme-toggle:active {
      background: rgba(0, 0, 0, 0.08);
    }
    body.light-theme .theme-toggle__icon--sun { opacity: 1; transform: scale(1) rotate(0deg); }
    body.light-theme .theme-toggle__icon--moon { opacity: 0; transform: scale(0.5) rotate(90deg); }

    body.light-theme .share-btn {
      border-color: rgba(0, 0, 0, 0.1);
      background: rgba(0, 0, 0, 0.04);
      color: rgba(0, 0, 0, 0.5);
    }
    body.light-theme .share-btn:active {
      background: rgba(0, 0, 0, 0.08);
    }

    body.light-theme .subscribe-btn {
      background: rgba(0, 0, 0, 0.05);
      border-color: rgba(0, 0, 0, 0.1);
      color: rgba(0, 0, 0, 0.7);
    }
    body.light-theme .subscribe-btn:active {
      background: rgba(0, 0, 0, 0.1);
    }

    body.light-theme .hero__brand {
      background: linear-gradient(
        135deg,
        rgba(40, 30, 10, 1) 0%,
        rgba(120, 90, 30, 0.95) 30%,
        rgba(184, 134, 11, 0.9) 55%,
        rgba(40, 30, 10, 0.7) 100%
      );
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.15));
    }

    body.light-theme .hero__brand-lure {
      background: linear-gradient(
        90deg,
        rgba(184, 134, 11, 0.9) 0%,
        rgba(184, 134, 11, 0.9) 35%,
        rgba(40, 30, 10, 1) 50%,
        rgba(184, 134, 11, 0.9) 65%,
        rgba(184, 134, 11, 0.9) 100%
      );
      background-size: 250% 100%;
      -webkit-background-clip: text;
      background-clip: text;
    }

    body.light-theme .hero__tagline { color: rgba(0, 0, 0, 0.4); }
    body.light-theme .hero__divider { background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.3), transparent); }
    body.light-theme .scroll-hint { color: rgba(0, 0, 0, 0.12); }

    body.light-theme .social-proof { color: rgba(0, 0, 0, 0.35); }
    body.light-theme .social-proof__dot { background: #b8860b; }

    body.light-theme .social-icon {
      background: rgba(0, 0, 0, 0.04);
      border-color: rgba(0, 0, 0, 0.08);
      color: rgba(0, 0, 0, 0.5);
    }

    body.light-theme .link-btn {
      background: rgba(0, 0, 0, 0.03);
      border-color: rgba(0, 0, 0, 0.1);
      color: #1a1a1a;
    }
    body.light-theme .link-btn:active {
      background: rgba(0, 0, 0, 0.06);
      border-color: rgba(0, 0, 0, 0.14);
    }
    @media (hover: hover) {
      body.light-theme .link-btn:hover {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.14);
      }
    }
    body.light-theme .link-btn__label { color: rgba(0, 0, 0, 0.8); }
    body.light-theme .link-btn__lock { color: rgba(0, 0, 0, 0.15); }

    body.light-theme .teaser-card {
      border-color: rgba(0, 0, 0, 0.1);
    }
    body.light-theme .teaser-card--3 {
      animation: card-border-pulse-light 3s infinite ease-in-out;
      box-shadow: none;
    }
    @keyframes card-border-pulse-light {
      0%, 100% {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0);
      }
      50% {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.8);
      }
    }
    body.light-theme .teaser-section__title {
      background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.3) 100%
      );
      background-size: 200% 100%;
      -webkit-background-clip: text;
      background-clip: text;
    }

    body.light-theme .tap-counter {
      background: rgba(255, 240, 245, 0.9);
      border-color: rgba(219, 112, 147, 0.3);
      color: rgba(0, 0, 0, 0.4);
    }
    body.light-theme .tap-counter.flash { color: rgba(219, 112, 147, 0.8); }
    body.light-theme .tap-counter.flash-rage { color: rgba(219, 112, 147, 1); }

    body.light-theme .tap-float { color: rgba(219, 112, 147, 0.8); }
    body.light-theme .tap-float.rage { color: rgba(219, 112, 147, 1); }

    body.light-theme .footer-link { color: rgba(0, 0, 0, 0.3); }
    body.light-theme .footer-link:active { color: rgba(0, 0, 0, 0.5); }
    body.light-theme .footer-domain { color: rgba(0, 0, 0, 0.3) !important; }
    body.light-theme .handle-new { color: rgba(0, 0, 0, 0.35) !important; }

    body.light-theme .touch-glow {
      background: radial-gradient(circle, rgba(218, 165, 32, 0.12) 0%, transparent 70%);
    }

    body.light-theme .milestone-flash {
      background: radial-gradient(circle at 50% 40%, rgba(218, 165, 32, 0.15), transparent 70%);
    }

    /* Light theme dialogs */
    body.light-theme .subscribe-dialog__panel {
      background: rgba(255, 252, 245, 0.96);
      border-color: rgba(0, 0, 0, 0.08);
      color: #1a1a1a;
    }
    body.light-theme .subscribe-dialog__title { color: #1a1a1a; }
    body.light-theme .subscribe-dialog__subtitle { color: rgba(0, 0, 0, 0.45); }
    body.light-theme .subscribe-dialog__input {
      border-color: rgba(0, 0, 0, 0.12);
      background: rgba(0, 0, 0, 0.03);
      color: #1a1a1a;
    }
    body.light-theme .subscribe-dialog__input::placeholder { color: rgba(0, 0, 0, 0.3); }
    body.light-theme .subscribe-dialog__input:focus { border-color: #db7093; }
    body.light-theme .subscribe-dialog__disclaimer { color: rgba(0, 0, 0, 0.3); }
    body.light-theme .subscribe-dialog__close {
      border-color: rgba(0, 0, 0, 0.1);
      background: rgba(0, 0, 0, 0.04);
      color: rgba(0, 0, 0, 0.4);
    }

    body.light-theme .share-dialog__panel {
      background: rgba(255, 252, 245, 0.98);
      border-color: rgba(0, 0, 0, 0.08);
      color: #1a1a1a;
    }
    body.light-theme .share-dialog__title { color: #1a1a1a; }
    body.light-theme .share-dialog__close {
      border-color: rgba(0, 0, 0, 0.1);
      background: rgba(0, 0, 0, 0.04);
      color: rgba(0, 0, 0, 0.4);
    }
    body.light-theme .share-dialog__preview {
      background: #fdf0f3;
      background-image:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(219, 112, 147, 0.12) 0%, transparent 60%);
    }
    body.light-theme .share-dialog__preview-name { color: #1a1a1a; }
    body.light-theme .share-dialog__preview-url { color: rgba(0, 0, 0, 0.55); }
    body.light-theme .share-option__label { color: rgba(0, 0, 0, 0.5); }

    body.light-theme .gate-dialog__panel {
      background: rgba(255, 248, 250, 0.98);
      border-color: rgba(219, 112, 147, 0.3);
      color: #1a1a1a;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15), 0 0 60px rgba(219, 112, 147, 0.05);
    }
    body.light-theme .gate-dialog__icon {
      background: rgba(219, 112, 147, 0.08);
      border-color: rgba(219, 112, 147, 0.2);
      color: rgba(219, 112, 147, 0.9);
    }
    body.light-theme .gate-dialog__title { color: #1a1a1a; }
    body.light-theme .gate-dialog__text { color: rgba(0, 0, 0, 0.45); }
    body.light-theme .gate-dialog__back { color: rgba(0, 0, 0, 0.35); }

    body.light-theme .badge-new {
      background: linear-gradient(135deg, #db7093, #ff6987);
    }

    /* Light theme ambient video dimmer */
    body.light-theme .ambient-video { opacity: 0.08 !important; }

    /* Light theme VIP modal */
    body.light-theme .vip-dialog__panel {
      background: rgba(255, 248, 250, 0.98);
      border-color: rgba(219, 112, 147, 0.25);
      box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(219, 112, 147, 0.04);
    }
    body.light-theme .vip-dialog__title { color: #1a1a1a; }
    body.light-theme .vip-dialog__subtitle { color: rgba(0, 0, 0, 0.4); }
    body.light-theme .vip-dialog__close {
      border-color: rgba(0, 0, 0, 0.1);
      background: rgba(0, 0, 0, 0.04);
      color: rgba(0, 0, 0, 0.4);
    }
    body.light-theme .vip-link {
      background: rgba(0, 0, 0, 0.03);
      border-color: rgba(0, 0, 0, 0.08);
      color: #1a1a1a;
    }
    body.light-theme .vip-link:active {
      background: rgba(0, 0, 0, 0.06);
      border-color: rgba(219, 112, 147, 0.3);
    }
    @media (hover: hover) {
      body.light-theme .vip-link:hover {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(219, 112, 147, 0.3);
      }
    }
    body.light-theme .vip-link__arrow { color: rgba(0, 0, 0, 0.15); }
    body.light-theme .vip-link--featured {
      border-color: rgba(219, 112, 147, 0.4);
    }
    body.light-theme .vip-badge--new {
      background: rgba(76, 175, 80, 0.2);
      color: #2e7d32;
      border-color: rgba(76, 175, 80, 0.4);
    }
    body.light-theme .vip-badge--hot {
      background: rgba(255, 87, 34, 0.1);
      color: #e64a19;
      border-color: rgba(255, 87, 34, 0.25);
    }
    body.light-theme .subscribe-dialog__input:focus { border-color: #db7093; }
