/* =====================================================
   GUESS_WHO.CSS  — Full styles
   PC (@min 768px) heavily reworked for elegance
   Mobile unchanged
   ===================================================== */

   @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

   * { box-sizing: border-box; margin: 0; padding: 0; }
   
   :root {
     --bg: #0d1020;
     --surface: rgba(20, 24, 44, 0.72);
     --surface-strong: rgba(25, 29, 54, 0.9);
     --border: rgba(255, 255, 255, 0.14);
     --text: #f8f7ff;
     --muted: #c1c6e8;
     --correct: #2ecc71;
     --wrong: #e63946;
     --gold: #f4c430;
     --accent-1: #ff5ca8;
     --accent-2: #6f8dff;
     --accent-3: #29d3c2;
     --radius: 16px;
   }
   
   /* ─── BASE (shared) ─────────────────────────────── */
   
   body {
     font-family: 'Outfit', sans-serif;
     background:
       radial-gradient(circle at 10% 8%, rgba(255, 92, 168, 0.3) 0%, transparent 34%),
       radial-gradient(circle at 88% 14%, rgba(111, 141, 255, 0.34) 0%, transparent 32%),
       radial-gradient(circle at 52% 92%, rgba(41, 211, 194, 0.24) 0%, transparent 34%),
       linear-gradient(160deg, #0b0f22 0%, #0d1020 55%, #101533 100%);
     color: var(--text);
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     align-items: center;
     padding: 14px;
     overflow-x: hidden;
     overflow-y: auto;
   }
   
   body::before,
   body::after {
     content: "";
     position: fixed;
     width: 42vmax;
     height: 42vmax;
     border-radius: 50%;
     filter: blur(48px);
     pointer-events: none;
     z-index: -1;
     opacity: 0.35;
   }
   
   body::before {
     top: -18vmax;
     left: -16vmax;
     background: radial-gradient(circle, rgba(255, 92, 168, 0.42) 0%, transparent 68%);
     animation: floatGlowA 9s ease-in-out infinite alternate;
   }
   
   body::after {
     bottom: -22vmax;
     right: -14vmax;
     background: radial-gradient(circle, rgba(41, 211, 194, 0.34) 0%, transparent 68%);
     animation: floatGlowB 11s ease-in-out infinite alternate;
   }
   
   .container {
     width: min(100%, 520px);
     display: flex;
     flex-direction: column;
     gap: 14px;
     margin-top: 8px;
     animation: fadeIn 0.5s ease;
   }

  .top-corner-link,
  .footer-mobile-link {
    max-width: min(290px, calc(100vw - 28px));
    padding: 8px 11px;
    border: 1px solid rgba(168, 188, 255, 0.28);
    border-radius: 12px;
    background: rgba(12, 16, 34, 0.82);
    backdrop-filter: blur(10px);
    color: #f3f6ff;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.3;
    text-align: right;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .top-corner-link {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 20;
  }

  .footer-mobile-link {
    display: none;
  }

  .top-corner-link:hover,
  .footer-mobile-link:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 188, 255, 0.48);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  }

  .top-corner-link-highlight {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
  }

  .side-ad {
    position: fixed;
    top: 120px;
    z-index: 15;
    width: 170px;
    height: 620px;
    border: 1px solid rgba(168, 188, 255, 0.22);
    border-radius: 12px;
    background: rgba(10, 14, 30, 0.5);
    overflow: hidden;
  }

  .side-ad-left { left: 12px; }
  .side-ad-right { right: 12px; }

  .side-ad-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: transparent;
  }
   
   .header {
     text-align: center;
     padding: 8px 4px;
     animation: fadeInUp 0.5s ease both;
   }
   
   .header .eyebrow {
     font-size: 10px;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 6px;
   }
   
   .header h1 {
     font-family: 'Playfair Display', serif;
     font-size: clamp(28px, 7vw, 40px);
     line-height: 1;
   }
   
   .header .subtitle {
     margin-top: 8px;
     font-size: 13px;
     color: #d5dbff;
   }
   
   .score-bar {
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: linear-gradient(145deg, rgba(23, 27, 52, 0.92), rgba(19, 24, 47, 0.78));
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 10px 8px;
     box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(8px);
     animation: fadeInUp 0.55s 0.06s ease both;
   }
   
   .score-item {
     flex: 1;
     text-align: center;
   }
   
   .score-item .label {
     font-size: 10px;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     color: var(--muted);
   }
   
   .score-item .value {
     margin-top: 2px;
     font-family: 'Playfair Display', serif;
     font-size: 24px;
     font-weight: 700;
   }
   
   .score-item.correct .value { color: var(--correct); }
   .score-item.wrong .value { color: var(--wrong); }
   .score-item.streak .value { color: var(--gold); }
   
   .divider-v {
     width: 1px;
     height: 32px;
     background: var(--border);
   }
   
   #game-area {
     width: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
   }
   
   .card {
     width: 100%;
     background: linear-gradient(160deg, rgba(21, 25, 47, 0.88), rgba(20, 24, 44, 0.75));
     border: 1px solid var(--border);
     border-radius: calc(var(--radius) + 4px);
     overflow: hidden;
     box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(8px);
     transition: transform 0.22s ease, box-shadow 0.22s ease;
   }
   
   .card.animating {
     animation: cardIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
   }
   
   .image-wrap {
     position: relative;
     width: 100%;
     aspect-ratio: 4 / 5;
     background: linear-gradient(145deg, #0c1130, #11183d);
   }
   
   .image-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center 18%;
     display: block;
   }
   
   .image-wrap .shimmer {
     position: absolute;
     inset: 0;
     pointer-events: none;
     background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
     background-size: 200% 100%;
     animation: shimmer 1s ease;
   }
   
   @keyframes shimmer {
     from { background-position: -140% 0; }
     to { background-position: 140% 0; }
   }
   
   .badge {
     position: absolute;
     top: 10px;
     left: 10px;
     font-size: 11px;
     color: #eaf0ff;
     background: rgba(10, 14, 30, 0.72);
     border: 1px solid rgba(168, 188, 255, 0.35);
     border-radius: 8px;
     padding: 4px 8px;
   }
   
   .result-overlay {
     position: absolute;
     inset: 0;
     display: grid;
     place-items: center;
     text-align: center;
     padding: 12px;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.2s ease;
   }
   
   .result-overlay.show {
     opacity: 1;
     pointer-events: auto;
   }
   
   .result-overlay.correct-bg { background: rgba(46, 204, 113, 0.2); }
   .result-overlay.wrong-bg { background: rgba(230, 57, 70, 0.2); }
   
   .result-icon { font-size: 56px; line-height: 1; }
   
   .result-text {
     margin-top: 6px;
     font-family: 'Playfair Display', serif;
     font-size: 26px;
     font-weight: 700;
   }
   
   .result-detail {
     margin-top: 6px;
     color: rgba(255, 255, 255, 0.8);
     font-size: 13px;
   }
   
   .card-footer {
     border-top: 1px solid rgba(172, 186, 255, 0.22);
     padding: 14px;
   }
   
   .card-footer .question {
     font-family: 'Playfair Display', serif;
     font-size: 20px;
   }
   
   .card-footer .hint {
     margin-top: 3px;
     font-size: 12px;
     color: var(--muted);
   }
   
   .btn-row {
     width: 100%;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 10px;
     animation: fadeInUp 0.6s 0.12s ease both;
   }
   
   .btn {
     border: none;
     border-radius: var(--radius);
     padding: 14px 10px;
     min-height: 82px;
     color: #fff;
     font-family: 'DM Sans', sans-serif;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 4px;
     cursor: pointer;
     transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
     animation: idlePulse 3.6s ease-in-out infinite;
   }
   
   .btn:hover {
     transform: translateY(-1px);
     filter: brightness(1.05);
   }
   
   .btn .btn-icon { font-size: 22px; }
   
   .btn .btn-label {
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 0.12em;
   }
   
   .btn-criminal {
     background: linear-gradient(135deg, #ff5e86 0%, #f7675d 52%, #ffa35d 100%);
     box-shadow: 0 8px 20px rgba(255, 94, 134, 0.28);
     animation-delay: 0.15s;
   }
   
   .btn-linkedin {
     background: linear-gradient(135deg, #4d7dff 0%, #3fb7ff 58%, #30d9cf 100%);
     box-shadow: 0 8px 20px rgba(79, 140, 255, 0.3);
     animation-delay: 0.4s;
   }
   
   .btn:disabled {
     opacity: 0.55;
     cursor: not-allowed;
     animation: none;
   }
   
   .btn-next,
   .btn-restart {
     width: 100%;
     border-radius: var(--radius);
     font-family: 'DM Sans', sans-serif;
     cursor: pointer;
     text-transform: uppercase;
     letter-spacing: 0.1em;
   }
   
   .btn-next {
     display: none;
     padding: 13px;
     border: 1px solid rgba(145, 166, 255, 0.42);
     background: rgba(21, 28, 56, 0.74);
     color: #e4eaff;
   }
   
   .btn-next.visible { display: block; }
   
   .btn-restart {
     margin-top: 8px;
     border: none;
     padding: 14px 20px;
     background: linear-gradient(135deg, #8e5bff 0%, #5d85ff 52%, #35d0d6 100%);
     color: #fff;
   }
   
   .info-panel {
     width: 100%;
     display: none;
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 14px;
   }
   
   .info-panel.visible { display: block; }
   
   .info-panel .info-name {
     font-family: 'Playfair Display', serif;
     font-size: 20px;
     margin-bottom: 8px;
   }
   
   .info-panel .info-type {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     border-radius: 20px;
     padding: 4px 10px;
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     margin-bottom: 10px;
   }
   
   .info-panel .info-type.criminal {
     background: rgba(230, 57, 70, 0.15);
     border: 1px solid rgba(230, 57, 70, 0.35);
     color: #ff6b75;
   }
   
   .info-panel .info-type.linkedin {
     background: rgba(0, 119, 181, 0.15);
     border: 1px solid rgba(0, 119, 181, 0.35);
     color: #61baf0;
   }
   
   .info-panel .info-detail {
     color: var(--muted);
     font-size: 13px;
     line-height: 1.45;
     margin-bottom: 10px;
   }
   
   .info-panel .info-link {
     color: #7db6ff;
     text-decoration: none;
     word-break: break-all;
   }
   
   .answer-modal {
     position: fixed;
     inset: 0;
     background: radial-gradient(circle at 50% 20%, rgba(36, 44, 88, 0.35), rgba(7, 8, 12, 0.82));
     display: none;
     align-items: center;
     justify-content: center;
     padding: 16px;
     z-index: 9999;
     backdrop-filter: blur(5px);
   }
   
   .answer-modal.visible {
       padding: 16px;
     animation: fadeIn 0.2s ease;
   }
   
   .answer-modal-card {
       font-size: 36px;
     position: relative;
     background: linear-gradient(160deg, rgba(17, 22, 48, 0.96), rgba(13, 18, 42, 0.96));
     border: 1px solid rgba(156, 178, 255, 0.32);
     border-radius: calc(var(--radius) + 2px);
     padding: 18px;
       margin-bottom: 10px;
     box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1);
     transform-origin: center;
     overflow: hidden;
   }
   
   .answer-modal-card::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     font-size: 13px;
     height: 3px;
     width: 100%;
     background: linear-gradient(90deg, #53f0be 0%, #6f81ff 54%, #35bdd9 100%);
     opacity: 0.9;
   }
   
   .answer-modal.visible .answer-modal-card {
     animation: modalPop 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
   }
   
   .answer-modal.visible .answer-title {
     animation: bannerTitleIn 0.34s 0.04s ease both;
   }
   
   .answer-modal.visible .answer-status,
   .answer-modal.visible .answer-detail,
   .answer-modal.visible .answer-link,
   .answer-modal.visible .answer-next-btn {
     animation: bannerContentIn 0.35s 0.1s ease both;
   }
   
   .answer-title {
     font-family: 'Playfair Display', serif;
     font-size: 34px;
     line-height: 0.95;
     margin-bottom: 10px;
     letter-spacing: -0.01em;
     text-shadow: 0 1px 14px rgba(111, 129, 255, 0.2);
   }
   
   .answer-status {
     display: inline-block;
     padding: 7px 10px;
     border-radius: 10px;
     font-size: 14px;
     color: #eaf0ff;
     background: rgba(120, 144, 255, 0.16);
     border: 1px solid rgba(153, 174, 255, 0.28);
     margin-bottom: 10px;
   }
   
   .answer-nationality {
     font-size: 12px;
     color: var(--muted);
     margin-bottom: 8px;
   }
   
   .answer-detail {
     font-size: 15px;
     line-height: 1.52;
     color: #d9e0ff;
     margin-bottom: 12px;
     background: rgba(10, 16, 36, 0.52);
     border: 1px solid rgba(146, 170, 255, 0.2);
     border-radius: 12px;
     padding: 10px 12px;
   }
   
   .answer-link {
     display: inline-block;
     margin-bottom: 14px;
     color: #bcf3ff;
     font-size: 13px;
     font-weight: 500;
     text-decoration: none;
     border-bottom: 1px solid rgba(188, 243, 255, 0.75);
     transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
   }
   
   .answer-link:hover {
     color: #e4fbff;
     border-color: rgba(228, 251, 255, 0.95);
     transform: translateY(-1px);
   }
   
   .answer-next-btn {
     width: 100%;
     border: none;
     border-radius: var(--radius);
     padding: 14px;
     font-family: 'DM Sans', sans-serif;
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     font-weight: 700;
     color: #fff;
     cursor: pointer;
     background: linear-gradient(135deg, #6f81ff 0%, #4e9bff 60%, #29d3c2 100%);
     transition: transform 0.16s ease, filter 0.2s ease, box-shadow 0.2s ease;
     box-shadow: 0 10px 24px rgba(85, 125, 255, 0.3);
   }
   
   .answer-next-btn:hover {
     transform: translateY(-2px);
     filter: brightness(1.08);
     box-shadow: 0 14px 28px rgba(85, 125, 255, 0.35);
   }
   
   .progress {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 5px;
     margin-top: 4px;
     width: 100%;
   }
   
   .dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(194, 203, 255, 0.38);
     animation: popDot 0.26s ease both;
   }
   
   .dot.correct { background: var(--correct); }
   .dot.wrong { background: var(--wrong); }
   
   .final-screen {
     display: none;
     text-align: center;
     padding: 8px 0;
   }
   
   .final-screen.visible {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
     animation: fadeInUp 0.5s ease both;
   }
   
   /* ─── ANIMATIONS ──────────────────────────────────── */
   @keyframes fadeIn {
     from { opacity: 0; }
     to { opacity: 1; }
   }
   
   @keyframes fadeInUp {
     from { opacity: 0; transform: translateY(14px); }
     to { opacity: 1; transform: translateY(0); }
   }
   
   @keyframes cardIn {
     from { opacity: 0; transform: scale(0.97) translateY(8px); }
     to { opacity: 1; transform: scale(1) translateY(0); }
   }
   
   @keyframes modalPop {
     from { opacity: 0; transform: scale(0.94) translateY(8px); }
     to { opacity: 1; transform: scale(1) translateY(0); }
   }
   
   @keyframes bannerTitleIn {
     from { opacity: 0; transform: translateY(8px); }
     to { opacity: 1; transform: translateY(0); }
   }
   
   @keyframes bannerContentIn {
     from { opacity: 0; transform: translateY(10px); }
     to { opacity: 1; transform: translateY(0); }
   }
   
   @keyframes idlePulse {
     0%, 100% { transform: translateY(0); filter: brightness(1); }
     50% { transform: translateY(-1px); filter: brightness(1.04); }
   }
   
   @keyframes popDot {
     from { transform: scale(0.5); opacity: 0; }
     to { transform: scale(1); opacity: 1; }
   }
   
   @keyframes floatGlowA {
     from { transform: translate(0, 0) scale(1); }
     to { transform: translate(24px, 18px) scale(1.08); }
   }
   
   @keyframes floatGlowB {
     from { transform: translate(0, 0) scale(1); }
     to { transform: translate(-22px, -16px) scale(1.07); }
   }
   
   @media (prefers-reduced-motion: reduce) {
     *, *::before, *::after {
       animation: none !important;
       transition: none !important;
     }
   }
   
   .final-trophy { font-size: 64px; }
   
   .final-title {
     font-family: 'Playfair Display', serif;
     font-size: clamp(30px, 8vw, 42px);
   }
   
   .final-score {
     color: var(--muted);
     font-size: 15px;
   }
   
   .final-score span {
     color: var(--gold);
     font-weight: 700;
   }
   
   /* ─── LEGAL FOOTER (shared base) ─────────────────── */
   .legal-footer {
     width: min(100%, 860px);
     margin: 28px auto 12px;
     padding: 16px;
     border: 1px solid var(--border);
     border-radius: 18px;
     background: linear-gradient(160deg, rgba(14, 18, 38, 0.9), rgba(12, 16, 34, 0.82));
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
     backdrop-filter: blur(8px);
     color: var(--text);
   }
   
   .legal-block + .legal-block {
     margin-top: 14px;
     padding-top: 12px;
     border-top: 1px solid rgba(194, 206, 255, 0.2);
   }
   
   .legal-block h2 {
     font-family: 'Playfair Display', serif;
     font-size: 20px;
     margin-bottom: 6px;
   }
   
   .legal-block p, .legal-block li {
     color: var(--muted);
     font-size: 13px;
     line-height: 1.55;
   }
   
   .legal-block ul { margin-left: 18px; }
   
   .legal-block a {
     color: #9ee8ff;
     text-decoration: none;
     border-bottom: 1px solid rgba(158, 232, 255, 0.55);
   }
   
   .legal-copy {
     margin-top: 14px;
     font-size: 12px;
     color: #d5dbff;
   }
   
   /* ─── MOBILE ──────────────────────────────────────── */
   @media (max-width: 767px) {
     body {
       min-height: 100svh;
       padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
       overflow-x: hidden;
       overflow-y: auto;
       background:
         radial-gradient(circle at 8% 4%, rgba(255, 92, 168, 0.2) 0%, transparent 36%),
         radial-gradient(circle at 92% 16%, rgba(111, 141, 255, 0.2) 0%, transparent 30%),
         linear-gradient(175deg, #0c1127 0%, #0f1738 100%);
     }
   
     body::before, body::after { opacity: 0.18; filter: blur(56px); }
   
     .container {
       width: 100%;
       max-width: 460px;
       min-height: calc(100svh - 20px);
       height: auto;
       max-height: none;
       gap: 10px;
      margin-top: 2px;
     }

    .top-corner-link {
      display: none;
    }

    .side-ad {
      display: none;
    }

    .footer-mobile-link {
      display: block;
      max-width: none;
      width: 100%;
      margin: 0 0 14px;
      padding: 8px 10px;
      font-size: 10px;
      line-height: 1.25;
      text-align: center;
      border-radius: 10px;
    }
   
     .header { padding: 4px 2px 0; }
     .header .eyebrow { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 4px; color: #d9def7; }
     .header h1 { font-size: clamp(30px, 8.2vw, 36px); line-height: 0.96; letter-spacing: -0.01em; }
     .header .subtitle { margin-top: 5px; font-size: 14px; color: #d9ddf8; }
   
     .score-bar {
       padding: 9px 6px;
       border-radius: 18px;
       background: linear-gradient(140deg, rgba(21, 27, 55, 0.94), rgba(19, 24, 50, 0.88));
     }
   
     .score-item .label { font-size: 10px; letter-spacing: 0.14em; }
     .score-item .value { font-size: 33px; line-height: 1; }
     .divider-v { height: 30px; }
   
     #game-area { flex: 1; min-height: 0; gap: 10px; }
   
     .card { min-height: 0; border-radius: 24px; border-color: rgba(188, 203, 255, 0.22); }
   
     .image-wrap {
       height: clamp(250px, 43svh, 360px);
       aspect-ratio: 4 / 5;
       background: radial-gradient(circle at 35% 18%, #2a3367 0%, #161f49 72%);
     }
   
     .image-wrap img { object-fit: contain; object-position: center top; padding: 0; }
   
     .badge { top: 12px; left: 12px; padding: 6px 10px; font-size: 13px; border-radius: 12px; }
   
     .card-footer { padding: 14px 14px 12px; }
     .card-footer .question { font-size: 44px; line-height: 0.98; letter-spacing: -0.01em; }
     .card-footer .hint { margin-top: 5px; font-size: 14px; color: #cad0f0; }
   
     .btn-row { gap: 10px; margin-top: 2px; }
   
     .btn {
       min-height: 78px;
       padding: 12px 10px;
       border-radius: 18px;
       animation: none;
       box-shadow: 0 9px 20px rgba(0, 0, 0, 0.22);
       transform: none;
     }
   
     .btn .btn-icon { font-size: 24px; }
     .btn .btn-label { font-size: 12px; letter-spacing: 0.12em; }
     .btn-criminal { background: linear-gradient(135deg, #ff547f 0%, #ff7d56 100%); }
     .btn-linkedin { background: linear-gradient(135deg, #5d7dff 0%, #35bdd9 100%); }
   
     .progress { margin-top: 2px; max-height: none; overflow: visible; gap: 6px; padding: 2px 0 2px; }
     .dot { width: 10px; height: 10px; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06); }
   
     .answer-modal { padding: 14px; }
     .answer-modal-card { padding: 14px; border-radius: 18px; }
     .answer-title { font-size: 32px; line-height: 0.98; }
     .answer-status, .answer-detail { font-size: 14px; line-height: 1.5; }
     .answer-next-btn { min-height: 52px; font-size: 12px; }
   
     .legal-footer {
       margin-top: 16px;
       padding: 14px;
       border-radius: 16px;
       background: linear-gradient(160deg, rgba(12, 16, 34, 0.92), rgba(13, 20, 40, 0.88));
     }
   
     .legal-block h2 { font-size: 19px; }
     .legal-block p, .legal-block li { font-size: 13px; }
   }
   
   /* ═══════════════════════════════════════════════════
      PC / DESKTOP  (≥ 768px)  — Full redesign
      ═══════════════════════════════════════════════════ */
   @media (min-width: 768px) {
   
     html, body { height: auto; }
   
     body {
       font-family: 'Outfit', sans-serif;
       min-height: 100vh;
       height: auto;
       padding: 32px 40px 0;
       overflow-y: auto;
       overflow-x: hidden;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: flex-start;
       /* Richer PC background */
       background:
         radial-gradient(ellipse 60% 50% at 8% 6%, rgba(255, 92, 168, 0.22) 0%, transparent 55%),
         radial-gradient(ellipse 50% 45% at 92% 10%, rgba(111, 141, 255, 0.28) 0%, transparent 52%),
         radial-gradient(ellipse 40% 40% at 50% 95%, rgba(41, 211, 194, 0.18) 0%, transparent 50%),
         linear-gradient(155deg, #080c1e 0%, #0b0f24 45%, #0e1330 100%);
     }
   
     /* ── CONTAINER ── */
     .container {
       width: min(100%, 780px);
       height: auto;
       max-height: none;
       gap: 16px;
      margin-top: 34px;
       padding: 0;
     }

    .top-corner-link {
      display: block;
      position: fixed;
      top: 18px;
      right: 22px;
      max-width: 280px;
      width: auto;
      margin-top: 0;
      padding: 9px 12px;
      font-size: 11px;
    }

    .side-ad {
      display: block;
      top: 92px;
      width: 160px;
      height: 600px;
    }

    .side-ad-left { left: 10px; }
    .side-ad-right { right: 10px; }

    .footer-mobile-link {
      display: none;
    }
   
     /* ── HEADER ── */
     .header {
       padding: 0 0 4px;
       position: relative;
     }
   
     .header .eyebrow {
       font-family: 'Outfit', sans-serif;
       font-weight: 300;
       font-size: 11px;
       letter-spacing: 0.32em;
       text-transform: uppercase;
       color: rgba(180, 190, 255, 0.65);
       margin-bottom: 8px;
     }
   
     .header h1 {
       font-family: 'Cormorant Garamond', serif;
       font-weight: 700;
       font-size: clamp(42px, 4.8vw, 62px);
       line-height: 0.92;
       letter-spacing: -0.02em;
       background: linear-gradient(135deg, #ffffff 0%, #d0d8ff 40%, #a8c0ff 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
     }
   
     .header .subtitle {
       margin-top: 10px;
       font-family: 'Outfit', sans-serif;
       font-weight: 300;
       font-size: 14px;
       letter-spacing: 0.02em;
       color: rgba(193, 198, 232, 0.8);
     }
   
     /* ── SCORE BAR ── */
     .score-bar {
       padding: 14px 28px;
       border-radius: 20px;
       background: linear-gradient(145deg, rgba(18, 22, 48, 0.95), rgba(14, 18, 42, 0.9));
       border: 1px solid rgba(130, 150, 255, 0.18);
       box-shadow:
         0 12px 32px rgba(0, 0, 0, 0.3),
         inset 0 1px 0 rgba(255, 255, 255, 0.07),
         0 0 0 1px rgba(90, 110, 220, 0.08);
     }
   
     .score-item .label {
       font-family: 'Outfit', sans-serif;
       font-weight: 400;
       font-size: 10px;
       letter-spacing: 0.2em;
       color: rgba(180, 188, 230, 0.6);
       text-transform: uppercase;
     }
   
     .score-item .value {
       font-family: 'Cormorant Garamond', serif;
       font-size: 36px;
       font-weight: 700;
       line-height: 1;
     }
   
     /* ── GAME LAYOUT: side-by-side card + right panel ── */
     #game-area {
       flex: 0 0 auto;
       display: grid;
       grid-template-columns: 280px 1fr;
       grid-template-rows: auto auto auto auto;
       column-gap: 20px;
       row-gap: 12px;
       align-items: start;
       width: 100%;
     }
   
     /* Card occupies left column rows 1-2 */
     .card {
       grid-column: 1;
       grid-row: 1 / 3;
       min-height: 0;
       border-radius: 22px;
       border-color: rgba(160, 180, 255, 0.18);
       transition: box-shadow 0.3s ease, transform 0.3s ease;
     }
   
     .card:hover {
       box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
     }
   
     /* Image: smaller container, bigger face */
     .image-wrap {
       width: 100%;
       height: 260px;
       aspect-ratio: unset;
       background: radial-gradient(circle at 50% 30%, #1a2150, #0a0e28);
       overflow: hidden;
       display: flex;
       align-items: center;
       justify-content: center;
     }
   
     .image-wrap img {
       width: 100%;
       height: 100%;
       object-fit: contain;
       object-position: center center;
       transform: none;
       transition: transform 0.4s ease;
     }
   
     .card:hover .image-wrap img {
       transform: scale(1.03);
     }
   
     .badge {
       top: 10px;
       left: 10px;
       font-family: 'Outfit', sans-serif;
       font-weight: 400;
       font-size: 10px;
       letter-spacing: 0.12em;
       padding: 4px 9px;
       border-radius: 8px;
       background: rgba(8, 11, 28, 0.8);
       border-color: rgba(140, 160, 255, 0.3);
       backdrop-filter: blur(6px);
     }
   
     .card-footer {
       padding: 14px 18px 16px;
     }
   
     .card-footer .question {
       font-family: 'Cormorant Garamond', serif;
       font-weight: 600;
       font-size: 22px;
       line-height: 1.1;
       letter-spacing: -0.01em;
     }
   
     .card-footer .hint {
       margin-top: 5px;
       font-family: 'Outfit', sans-serif;
       font-weight: 300;
       font-size: 12px;
       letter-spacing: 0.03em;
       color: rgba(180, 188, 230, 0.6);
     }
   
     /* Right column row 1: question text area */
     /* Right column row 2: buttons */
     .btn-row {
       grid-column: 2;
       grid-row: 1;
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 12px;
       align-self: center;
       animation: fadeInUp 0.6s 0.12s ease both;
     }
   
     .btn {
       min-height: 90px;
       padding: 16px 12px;
       border-radius: 18px;
       animation: none;
       font-family: 'Outfit', sans-serif;
       position: relative;
       overflow: hidden;
       transition:
         transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
         box-shadow 0.22s ease,
         filter 0.18s ease;
     }
   
     /* Shine sweep on hover */
     .btn::after {
       content: "";
       position: absolute;
       top: -60%;
       left: -80%;
       width: 60%;
       height: 220%;
       background: linear-gradient(105deg, transparent, rgba(255,255,255,0.18), transparent);
       transform: skewX(-20deg);
       transition: left 0.4s ease;
       pointer-events: none;
     }
   
     .btn:hover::after { left: 130%; }
   
     .btn:hover {
       transform: translateY(-3px) scale(1.02);
       filter: brightness(1.1);
     }
   
     .btn:active {
       transform: translateY(0) scale(0.98);
       filter: brightness(0.96);
     }
   
     .btn-criminal {
       background: linear-gradient(140deg, #ff4d78 0%, #f76a55 55%, #ffb347 100%);
       box-shadow: 0 10px 28px rgba(255, 80, 120, 0.32);
     }
   
     .btn-criminal:hover {
       box-shadow: 0 16px 36px rgba(255, 80, 120, 0.45);
     }
   
     .btn-linkedin {
       background: linear-gradient(140deg, #4466ff 0%, #32b8ff 58%, #1de8d0 100%);
       box-shadow: 0 10px 28px rgba(60, 130, 255, 0.32);
     }
   
     .btn-linkedin:hover {
       box-shadow: 0 16px 36px rgba(60, 130, 255, 0.45);
     }
   
     .btn .btn-icon { font-size: 26px; }
   
     .btn .btn-label {
       font-family: 'Outfit', sans-serif;
       font-weight: 600;
       font-size: 11px;
       letter-spacing: 0.18em;
     }
   
     /* Progress dots — right column row 2 */
     .progress {
       grid-column: 2;
       grid-row: 2;
       margin-top: 0;
       justify-content: flex-start;
       gap: 5px;
     }
   
     .dot { width: 8px; height: 8px; }
   
     /* btn-next and info-panel span full width row 3 */
     .btn-next {
       grid-column: 1 / -1;
       grid-row: 3;
       display: none;
       padding: 13px;
       font-family: 'Outfit', sans-serif;
       font-weight: 500;
       font-size: 13px;
       letter-spacing: 0.12em;
       border: 1px solid rgba(140, 165, 255, 0.38);
       background: rgba(16, 22, 50, 0.7);
       color: #d8e2ff;
       border-radius: 16px;
       transition: background 0.2s, border-color 0.2s, transform 0.2s;
     }
   
     .btn-next:hover {
       background: rgba(22, 30, 65, 0.85);
       border-color: rgba(140, 165, 255, 0.6);
       transform: translateY(-1px);
     }
   
     .btn-next.visible { display: block; }
   
     .info-panel {
       grid-column: 1 / -1;
       grid-row: 4;
     }
   
     /* ── ANSWER MODAL (PC) ── */
     .answer-modal {
       padding: 24px;
     }
   
     .answer-modal-card {
       width: min(100%, 480px);
       padding: 26px 28px;
       border-radius: 22px;
       font-size: unset;
     }
   
     .answer-title {
       font-family: 'Cormorant Garamond', serif;
       font-size: 40px;
       letter-spacing: -0.02em;
     }
   
     .answer-status {
       font-family: 'Outfit', sans-serif;
       font-size: 14px;
     }
   
     .answer-detail {
       font-family: 'Outfit', sans-serif;
       font-weight: 300;
       font-size: 14px;
       line-height: 1.6;
     }
   
     .answer-next-btn {
       font-family: 'Outfit', sans-serif;
       font-weight: 600;
       font-size: 13px;
       letter-spacing: 0.18em;
       padding: 15px;
       border-radius: 14px;
       position: relative;
       overflow: hidden;
     }
   
     .answer-next-btn::after {
       content: "";
       position: absolute;
       top: -60%;
       left: -80%;
       width: 60%;
       height: 220%;
       background: linear-gradient(105deg, transparent, rgba(255,255,255,0.15), transparent);
       transform: skewX(-20deg);
       transition: left 0.38s ease;
       pointer-events: none;
     }
   
     .answer-next-btn:hover::after { left: 130%; }
   
     .answer-next-btn:hover {
       transform: translateY(-2px);
       filter: brightness(1.1);
       box-shadow: 0 14px 32px rgba(85, 125, 255, 0.4);
     }
   
     /* ── LEGAL FOOTER — bottom of page, NOT scrollable ── */
     .legal-footer {
       position: static;
       width: min(100%, 780px);
       margin: 32px auto 24px;
       padding: 28px 36px;
       max-height: none;        /* no scroll cap */
       overflow: visible;       /* no overflow scroll */
       border-radius: 22px;
       background: linear-gradient(155deg, rgba(13, 17, 38, 0.95), rgba(10, 14, 32, 0.92));
       border: 1px solid rgba(120, 140, 220, 0.16);
       box-shadow: 0 16px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
     }
   
     /* 2-column grid layout for legal sections */
    .legal-footer > *:not(.legal-copy):not(.footer-mobile-link) {
       display: contents;
     }
   
     /* Lay sections in two columns */
     .legal-footer {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 0 32px;
     }
   
     .legal-block {
       padding: 16px 0;
       border-top: 1px solid rgba(180, 196, 255, 0.12);
     }
   
     .legal-block + .legal-block {
       margin-top: 0;
       padding-top: 16px;
       border-top: 1px solid rgba(180, 196, 255, 0.12);
     }
   
     .legal-copy {
       grid-column: 1 / -1;
       margin-top: 12px;
       padding-top: 16px;
       border-top: 1px solid rgba(180, 196, 255, 0.12);
       font-size: 11px;
       color: rgba(193, 198, 232, 0.5);
       text-align: center;
     }
   
     .legal-block h2 {
       font-family: 'Cormorant Garamond', serif;
       font-weight: 600;
       font-size: 17px;
       margin-bottom: 6px;
       color: rgba(220, 228, 255, 0.9);
     }
   
     .legal-block p, .legal-block li {
       font-family: 'Outfit', sans-serif;
       font-weight: 300;
       font-size: 12px;
       line-height: 1.6;
       color: rgba(175, 185, 225, 0.7);
     }
   
     /* ── FINAL SCREEN (PC) ── */
     .final-title {
       font-family: 'Cormorant Garamond', serif;
     }
   
     .btn-restart {
       font-family: 'Outfit', sans-serif;
       font-weight: 600;
       letter-spacing: 0.14em;
       padding: 15px 40px;
       border-radius: 16px;
       width: auto;
       min-width: 220px;
       position: relative;
       overflow: hidden;
       transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, filter 0.18s ease;
     }
   
     .btn-restart::after {
       content: "";
       position: absolute;
       top: -60%;
       left: -80%;
       width: 60%;
       height: 220%;
       background: linear-gradient(105deg, transparent, rgba(255,255,255,0.15), transparent);
       transform: skewX(-20deg);
       transition: left 0.38s ease;
       pointer-events: none;
     }
   
     .btn-restart:hover::after { left: 130%; }
   
     .btn-restart:hover {
       transform: translateY(-3px) scale(1.02);
       filter: brightness(1.1);
       box-shadow: 0 14px 32px rgba(100, 130, 255, 0.4);
     }
   }