  [x-cloak] { display: none !important; }

  /* ── Animations ─────────────────────────────────────────────────── */
  @keyframes fade-in-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes slide-in-left {
    from { transform: translateX(-20px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
  }
  @keyframes tick-in {
    0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
    60%  { transform: scale(1.2) rotate(4deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
  }
  @keyframes scanline {
    0%   { top: -4px; }
    100% { top: 100%; }
  }
  @keyframes progress-fill {
    from { width: 0%; }
    to   { width: var(--target-w); }
  }
  @keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes pixel-gen {
    0%   { opacity: 0.05; }
    50%  { opacity: 0.2; }
    100% { opacity: 0.05; }
  }
  @keyframes check-pop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }
  @keyframes counter-step {
    0%   { transform: translateY(6px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  @keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
    50%       { box-shadow: 0 0 18px 4px rgba(239,68,68,0.25); }
  }
  @keyframes scamai-ping {
    0%   { transform: scale(1); opacity: 1; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
  }

  .fade-in-up  { animation: fade-in-up 0.45s ease-out both; }
  .fade-in     { animation: fade-in 0.3s ease-out both; }
  .slide-left  { animation: slide-in-left 0.35s ease-out both; }

  /* ── Choice cards ───────────────────────────────────────────────── */
  .choice-card {
    background: #111827;
    border: 2px solid #1f2937;
    border-radius: 0.875rem;
    padding: 1.1rem 1.2rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    position: relative;
    user-select: none;
  }
  .choice-card:hover:not(.selected) {
    border-color: #6b7280;
    background: #131e30;
    transform: translateX(2px);
  }
  .choice-card.selected {
    border-color: #f59e0b;
    background: rgba(245,158,11,0.06);
  }
  .choice-card.selected-green {
    border-color: #22c55e;
    background: rgba(34,197,94,0.06);
  }
  .choice-best-badge {
    position: absolute;
    top: -1px; right: 10px;
    background: #f59e0b;
    color: #000;
    font-family: 'Courier New', monospace;
    font-size: 0.55rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 2px 7px;
    border-radius: 0 0 5px 5px;
    text-transform: uppercase;
  }

  /* ── Image gen mock ─────────────────────────────────────────────── */
  .gen-ui {
    background: #0d1117;
    border: 1px solid #21262d;
    border-radius: 0.75rem;
    overflow: hidden;
    font-family: 'Courier New', monospace;
  }
  .gen-header {
    background: #161b22;
    border-bottom: 1px solid #21262d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .gen-dot { width: 10px; height: 10px; border-radius: 50%; }
  .gen-canvas {
    height: 270px;
    background: #0d1117;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .gen-canvas-inner {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .pixel-noise {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 40%, rgba(34,197,94,0.08) 0%, transparent 50%),
      radial-gradient(circle at 70% 60%, rgba(245,158,11,0.06) 0%, transparent 50%),
      radial-gradient(circle at 45% 20%, rgba(59,130,246,0.05) 0%, transparent 40%);
    animation: pixel-gen 2s ease-in-out infinite;
  }
  @keyframes scanswipe {
    0%   { top: -4px; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }
  .gen-scanline {
    position: absolute;
    left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(34,197,94,0.9) 40%, rgba(34,197,94,0.9) 60%, transparent 100%);
    animation: scanswipe 2.2s linear infinite;
    pointer-events: none;
    z-index: 10;
  }
  .gen-photo-wrap {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
  }
  .gen-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .gen-photo-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  /* ── VerifyBot UI ───────────────────────────────────────────────── */
  .verify-ui {
    background: #0a0f1a;
    border: 1px solid #1e3a5f;
    border-radius: 0.875rem;
    overflow: hidden;
    font-family: 'Courier New', monospace;
  }
  .verify-header {
    background: #0f1f35;
    border-bottom: 1px solid #1e3a5f;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .verify-check-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(30,58,95,0.4);
    font-size: 0.75rem;
  }
  .verify-check-row:last-child { border-bottom: none; }
  .check-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.6rem;
  }
  .check-icon.pending { background: #1f2937; border: 1px solid #374151; }
  .check-icon.running { background: rgba(245,158,11,0.2); border: 1px solid #f59e0b; animation: blink 0.8s step-end infinite; }
  .check-icon.pass    { background: rgba(34,197,94,0.2); border: 1px solid #22c55e; animation: check-pop 0.3s ease-out both; }
  .check-icon.fail    { background: rgba(239,68,68,0.2); border: 1px solid #ef4444; animation: check-pop 0.3s ease-out both; animation: glow-pulse 1.5s ease-in-out infinite; }

  /* Scam.ai special badge */
  .scamai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.4);
    border-radius: 999px;
    padding: 1px 8px;
    font-size: 0.6rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: #ef4444;
  }
  .scamai-badge .ping {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ef4444;
    position: relative;
    flex-shrink: 0;
  }
  .scamai-badge .ping::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ef4444;
    animation: scamai-ping 1.2s ease-out infinite;
  }

  /* ── Scale / automation ─────────────────────────────────────────── */
  .pipeline-box {
    background: #0a0f1e;
    border: 1px solid #1f2937;
    border-radius: 0.75rem;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    min-height: 140px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.72rem;
  }
  .earnings-counter {
    font-family: 'Courier New', monospace;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    tabular-nums;
  }

  /* ── Phase indicator ─────────────────────────────────────────────── */
  .phase-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .phase-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── Defender annotations ─────────────────────────────────────────── */
  .defender-ann {
    border-left: 3px solid #22c55e;
    background: rgba(34,197,94,0.05);
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0.75rem 1rem;
    margin-bottom: 0.6rem;
    animation: slide-in-left 0.35s ease-out both;
  }
  .defender-ann.ann-red {
    border-left-color: #ef4444;
    background: rgba(239,68,68,0.05);
  }
  .defender-ann.ann-scamai {
    border-left-color: #f59e0b;
    background: rgba(245,158,11,0.06);
  }

  /* Progress bar */
  .prog-bar {
    height: 8px;
    background: #1f2937;
    border-radius: 4px;
    overflow: hidden;
  }
  .prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e 0%, #86efac 100%);
    border-radius: 4px;
    transition: width 0.08s linear;
    box-shadow: 0 0 8px rgba(34,197,94,0.4);
  }

  /* Shimmer text */
  .shimmer {
    background: linear-gradient(90deg, #4b5563 0%, #9ca3af 40%, #4b5563 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 1.8s linear infinite;
  }

  /* Cursor blink */
  .cursor-blink::after {
    content: '█';
    animation: blink 1s step-end infinite;
    color: #22c55e;
    font-size: 0.75em;
    margin-left: 1px;
  }

  /* Verdict colors */
  .verdict-villain { color: #ef4444; border-color: rgba(239,68,68,0.3); }
  .verdict-warn    { color: #f59e0b; border-color: rgba(245,158,11,0.3); }

  @media (max-width: 640px) {
    .earnings-counter { font-size: 2rem; }
  }
