    /* ============================================================
       CSS-Variablen — identisch mit app.css
       ============================================================ */
    :root {
      --bg-base:        #030712;
      --bg-surface:     rgba(8, 15, 32, 0.85);
      --bg-elevated:    rgba(12, 20, 42, 0.90);
      --bg-hover:       rgba(20, 32, 64, 0.95);
      --accent:         #0066cc;
      --accent-soft:    #003d7a;
      --accent-glow:    #00f2ff;
      --accent-purple:  #7c3aed;
      --cyan:           #00f2ff;
      --gold:           #f59e0b;
      --text-primary:   #dde8f0;
      --text-secondary: #7aa8c4;
      --text-muted:     #3a5068;
      --success:        #00e676;
      --warning:        #f59e0b;
      --danger:         #ff3d71;
      --border:         rgba(0, 180, 220, 0.12);
      --border-glow:    rgba(0, 242, 255, 0.08);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-primary);
      font-family: 'Exo 2', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: rgba(0, 180, 220, 0.20); border-radius: 2px; }

    /* ============================================================
       Sternfeld-Canvas
       ============================================================ */
    #starfield {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* ============================================================
       Layout-Grundgerüst
       ============================================================ */
    .site-content {
      position: relative;
      z-index: 1;
    }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* ============================================================
       Header / Navbar
       ============================================================ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      background: rgba(3, 7, 18, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 242, 255, 0.08);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1.25rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .logo {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent-glow);
      text-shadow: 0 0 16px rgba(0, 242, 255, 0.5), 0 0 32px rgba(0, 242, 255, 0.2);
      font-family: 'JetBrains Mono', monospace;
      text-decoration: none;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.625rem;
    }

    /* ============================================================
       Buttons
       ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.375rem;
      padding: 0.625rem 1.25rem;
      border-radius: 3px;
      font-family: 'Exo 2', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.15s ease;
      white-space: nowrap;
      clip-path: polygon(
        0 6px, 6px 0,
        calc(100% - 6px) 0, 100% 6px,
        100% calc(100% - 6px), calc(100% - 6px) 100%,
        6px 100%, 0 calc(100% - 6px)
      );
    }

    .btn-primary {
      background: linear-gradient(135deg, #7c3aed, #5b21b6);
      color: #fff;
      box-shadow: 0 0 16px rgba(124, 58, 237, 0.4);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, #8b5cf6, #6d28d9);
      box-shadow: 0 0 24px rgba(124, 58, 237, 0.6);
      transform: translateY(-1px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--accent-glow);
      border: 1px solid rgba(0, 242, 255, 0.3);
      box-shadow: none;
      clip-path: polygon(
        0 6px, 6px 0,
        calc(100% - 6px) 0, 100% 6px,
        100% calc(100% - 6px), calc(100% - 6px) 100%,
        6px 100%, 0 calc(100% - 6px)
      );
    }
    .btn-ghost:hover {
      background: rgba(0, 242, 255, 0.06);
      border-color: rgba(0, 242, 255, 0.55);
      box-shadow: 0 0 12px rgba(0, 242, 255, 0.15);
    }

    .btn-sm {
      padding: 0.4rem 0.875rem;
      font-size: 0.8rem;
    }

    .btn-lg {
      padding: 0.875rem 2rem;
      font-size: 1rem;
    }

    /* ============================================================
       Hero-Section
       ============================================================ */
    .hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 6rem 1.25rem 4rem;
    }

    .hero-eyebrow {
      display: inline-block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent-glow);
      border: 1px solid rgba(0, 242, 255, 0.25);
      padding: 0.25rem 0.875rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
      background: rgba(0, 242, 255, 0.04);
    }

    .hero-title {
      font-size: clamp(2.5rem, 10vw, 5.5rem);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 1.25rem;
      background: linear-gradient(135deg, #dde8f0 0%, #00f2ff 50%, #7c3aed 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: none;
      filter: drop-shadow(0 0 24px rgba(0, 242, 255, 0.25));
    }

    .hero-tagline {
      font-size: clamp(0.95rem, 2.5vw, 1.2rem);
      font-weight: 300;
      color: var(--text-secondary);
      max-width: 540px;
      line-height: 1.65;
      margin-bottom: 2.5rem;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.875rem;
      justify-content: center;
    }

    .hero-scroll-hint {
      margin-top: 4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-muted);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-family: 'JetBrains Mono', monospace;
      animation: float 2.5s ease-in-out infinite;
    }

    .scroll-arrow {
      width: 1px;
      height: 32px;
      background: linear-gradient(to bottom, transparent, var(--accent-glow));
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); opacity: 0.5; }
      50% { transform: translateY(6px); opacity: 1; }
    }

    /* ============================================================
       Abschnitt-Grundgerüst
       ============================================================ */
    .section {
      padding: 5rem 0;
    }

    .section-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent-glow);
      margin-bottom: 0.625rem;
    }

    .section-title {
      font-size: clamp(1.5rem, 4vw, 2.25rem);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.875rem;
    }

    .section-sub {
      font-size: 0.95rem;
      color: var(--text-secondary);
      max-width: 520px;
      line-height: 1.7;
    }

    /* Trennlinie */
    .glow-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.3), transparent);
      margin: 0;
    }

    /* ============================================================
       Features-Section
       ============================================================ */
    .features-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .features-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .feature-card {
      background: rgba(8, 16, 36, 0.72);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(0, 200, 240, 0.14);
      border-radius: 3px;
      padding: 1.75rem 1.5rem;
      position: relative;
      overflow: hidden;
      box-shadow:
        0 0 24px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(0, 242, 255, 0.10);
      clip-path: polygon(
        0 10px, 10px 0,
        calc(100% - 10px) 0, 100% 10px,
        100% calc(100% - 10px), calc(100% - 10px) 100%,
        10px 100%, 0 calc(100% - 10px)
      );
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(135deg, rgba(0,242,255,0.06) 0%, transparent 25%) 0 0 / 48px 48px no-repeat,
        linear-gradient(225deg, rgba(0,242,255,0.04) 0%, transparent 20%) 100% 0 / 48px 48px no-repeat;
    }

    .feature-card:hover {
      border-color: rgba(124, 58, 237, 0.45);
      box-shadow:
        0 0 32px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(124, 58, 237, 0.12),
        inset 0 1px 0 rgba(124, 58, 237, 0.15);
    }

    .feature-icon {
      font-size: 2.5rem;
      line-height: 1;
      margin-bottom: 1rem;
      display: block;
    }

    .feature-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.625rem;
      letter-spacing: 0.04em;
    }

    .feature-desc {
      font-size: 0.875rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* ============================================================
       Spielvorschau-Section
       ============================================================ */
    .preview-section {
      background: rgba(4, 10, 24, 0.55);
      border-top: 1px solid rgba(0, 242, 255, 0.07);
      border-bottom: 1px solid rgba(0, 242, 255, 0.07);
    }

    .preview-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .preview-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
      }
    }

    /* Fake UI Mockup */
    .ui-mockup {
      background: rgba(4, 10, 24, 0.88);
      border: 1px solid rgba(0, 242, 255, 0.18);
      border-radius: 3px;
      overflow: hidden;
      box-shadow:
        0 0 48px rgba(0, 0, 0, 0.8),
        0 0 24px rgba(0, 242, 255, 0.05);
      clip-path: polygon(
        0 10px, 10px 0,
        calc(100% - 10px) 0, 100% 10px,
        100% calc(100% - 10px), calc(100% - 10px) 100%,
        10px 100%, 0 calc(100% - 10px)
      );
    }

    .mockup-titlebar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.5rem 0.875rem;
      background: rgba(0, 242, 255, 0.04);
      border-bottom: 1px solid rgba(0, 242, 255, 0.10);
    }

    .mockup-title {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.625rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent-glow);
    }

    .mockup-dots {
      display: flex;
      gap: 0.3rem;
    }

    .mockup-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(0, 242, 255, 0.25);
    }

    /* Fake Ressourcenleiste */
    .mockup-resbar {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.875rem;
      background: rgba(4, 10, 24, 0.80);
      border-bottom: 1px solid rgba(0, 242, 255, 0.08);
      overflow-x: auto;
    }

    .mockup-res {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: var(--text-secondary);
      background: rgba(0, 180, 220, 0.06);
      border: 1px solid rgba(0, 180, 220, 0.12);
      border-radius: 2px;
      padding: 0.2rem 0.4rem;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .mockup-res .rate {
      color: var(--success);
      font-size: 0.55rem;
    }

    .mockup-body {
      padding: 0.875rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
    }

    .mockup-card {
      background: rgba(8, 16, 36, 0.72);
      border: 1px solid rgba(0, 200, 240, 0.10);
      border-radius: 2px;
      padding: 0.625rem;
    }

    .mockup-card-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .mockup-card-value {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--accent-glow);
    }

    .mockup-bar-wrap {
      margin-top: 0.35rem;
      height: 3px;
      background: rgba(0, 180, 220, 0.10);
      border-radius: 2px;
      overflow: hidden;
    }

    .mockup-bar {
      height: 100%;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--accent-glow), #7c3aed);
    }

    .mockup-status {
      grid-column: 1 / -1;
      background: rgba(124, 58, 237, 0.06);
      border: 1px solid rgba(124, 58, 237, 0.20);
      border-radius: 2px;
      padding: 0.5rem 0.625rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      color: var(--accent-glow);
      letter-spacing: 0.08em;
    }

    .mockup-status .blink {
      display: inline-block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--success);
      margin-right: 0.375rem;
      animation: blink 1.4s step-start infinite;
      vertical-align: middle;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    /* Rechte Spalte: Beschreibung */
    .preview-text {}

    .preview-list {
      list-style: none;
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .preview-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 0.875rem;
      color: var(--text-secondary);
      line-height: 1.55;
    }

    .preview-list li::before {
      content: '//';
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      color: var(--accent-glow);
      flex-shrink: 0;
      margin-top: 0.05rem;
      opacity: 0.7;
    }

    /* ============================================================
       Footer-CTA
       ============================================================ */
    .cta-section {
      padding: 5rem 0;
      text-align: center;
    }

    .cta-inner {
      background: rgba(8, 16, 36, 0.72);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(124, 58, 237, 0.25);
      border-radius: 3px;
      padding: 3rem 1.5rem;
      position: relative;
      overflow: hidden;
      clip-path: polygon(
        0 16px, 16px 0,
        calc(100% - 16px) 0, 100% 16px,
        100% calc(100% - 16px), calc(100% - 16px) 100%,
        16px 100%, 0 calc(100% - 16px)
      );
    }

    .cta-inner::before {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.6), transparent);
    }

    .cta-inner::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(124, 58, 237, 0.08), transparent);
    }

    .cta-title {
      font-size: clamp(1.35rem, 4vw, 2rem);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.875rem;
      position: relative;
      z-index: 1;
    }

    .cta-sub {
      font-size: 0.9rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .cta-btn-wrap {
      position: relative;
      z-index: 1;
    }

    /* ============================================================
       Site-Footer
       ============================================================ */
    .site-footer {
      padding: 1.75rem 1.25rem;
      border-top: 1px solid rgba(0, 242, 255, 0.07);
      text-align: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: var(--text-muted);
    }

    /* ============================================================
       Responsive: Desktop-Verbesserungen
       ============================================================ */
    @media (min-width: 1024px) {
      .hero {
        padding-top: 8rem;
      }
    }

    /* Auth-Overlay + Formular (app.css-Klassen) */
    .auth-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      overflow-y: auto;
      animation: overlay-in 0.2s ease;
    }
    @keyframes overlay-in {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .auth-panel-wrap {
      width: 100%;
      max-width: 460px;
      position: relative;
      padding: 1rem 0;
    }
    .auth-close-btn {
      position: absolute;
      top: 1.25rem;
      right: 0.25rem;
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 1.25rem;
      line-height: 1;
      padding: 0.25rem 0.5rem;
      z-index: 10;
    }
    .auth-close-btn:hover { color: var(--text-primary); }
    .maintenance-banner {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 110;
      padding: 0.65rem 1rem 0.75rem;
      background: rgba(120, 53, 15, 0.45);
      border-bottom: 1px solid rgba(251, 191, 36, 0.35);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .maintenance-banner-inner {
      max-width: 32rem;
      margin: 0 auto;
      text-align: center;
    }
    .maintenance-banner-title {
      font-weight: 600;
      color: #fde68a;
      font-size: 0.875rem;
      letter-spacing: 0.02em;
    }
    .maintenance-banner-text {
      font-size: 0.8125rem;
      color: rgba(254, 243, 199, 0.95);
      margin: 0.35rem 0 0.45rem;
      line-height: 1.45;
    }
    .forge-logo-sm {
      font-size: clamp(1.1rem, 3vw, 1.5rem);
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent-glow);
      text-shadow: 0 0 18px rgba(0, 242, 255, 0.45);
      font-family: 'JetBrains Mono', monospace;
    }

    /* Auth-Formular: dunkle Felder, auch wenn app.css noch lädt */
    .auth-overlay .panel {
      background: var(--bg-surface);
      border: 1px solid rgba(0, 242, 255, 0.15);
      border-radius: 3px;
      padding: 1.25rem 1rem;
    }
    .auth-overlay .input-label {
      display: block;
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--text-secondary);
      margin-bottom: 0.375rem;
    }
    .auth-overlay .input,
    .auth-overlay input.input {
      display: block;
      width: 100%;
      box-sizing: border-box;
      min-height: 44px;
      padding: 0.625rem 0.75rem;
      font-size: 0.875rem;
      font-family: 'Exo 2', sans-serif;
      color: var(--text-primary);
      background-color: rgba(12, 20, 42, 0.95);
      border: 1px solid var(--border);
      border-radius: 0.375rem;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }
    .auth-overlay .input::placeholder {
      color: var(--text-muted);
    }
    .auth-overlay .input:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.12);
    }
    .auth-overlay .input.input-error {
      border-color: var(--danger);
      box-shadow: 0 0 0 3px rgba(255, 61, 113, 0.15);
    }
    .auth-overlay .input:-webkit-autofill,
    .auth-overlay .input:-webkit-autofill:hover,
    .auth-overlay .input:-webkit-autofill:focus {
      -webkit-text-fill-color: var(--text-primary) !important;
      caret-color: var(--text-primary);
      border: 1px solid var(--border);
      -webkit-box-shadow: 0 0 0 1000px rgba(12, 20, 42, 0.98) inset !important;
      box-shadow: 0 0 0 1000px rgba(12, 20, 42, 0.98) inset;
      transition: background-color 99999s ease-out 0s;
    }
    .auth-overlay .input-error-text {
      font-size: 0.75rem;
      color: var(--danger);
      margin-top: 0.25rem;
    }
    .auth-overlay .btn-full { width: 100%; }

    .text-center { text-align: center; }
    .mb-1 { margin-bottom: 0.25rem; }
    .mb-2 { margin-bottom: 0.5rem; }
    .mb-3 { margin-bottom: 0.75rem; }
    .mb-4 { margin-bottom: 1rem; }
    .mb-5 { margin-bottom: 1.25rem; }
    .mt-1 { margin-top: 0.25rem; }
    .mt-2 { margin-top: 0.5rem; }
    .mt-3 { margin-top: 0.75rem; }
    .mt-4 { margin-top: 1rem; }
    .my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
    .text-xs { font-size: 0.75rem; }
    .text-sm { font-size: 0.875rem; }
    .font-semibold { font-weight: 600; }
    .flex { display: flex; }
    .flex-wrap { flex-wrap: wrap; }
    .items-center { align-items: center; }
    .justify-center { justify-content: center; }
    .justify-between { justify-content: space-between; }
    .gap-0 { gap: 0; }
    .gap-1 { gap: 0.25rem; }
    .gap-2 { gap: 0.5rem; }
    .space-y-3 > * + * { margin-top: 0.75rem; }
    .space-y-4 > * + * { margin-top: 1rem; }
    .grid { display: grid; }
    .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .col-span-2 { grid-column: span 2 / span 2; }
    .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .opacity-40 { opacity: 0.4; }
    .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
    .p-2 { padding: 0.5rem; }
    .p-3 { padding: 0.75rem; }
    .rounded { border-radius: 0.25rem; }
    .rounded-lg { border-radius: 0.5rem; }
    .break-all { word-break: break-all; }
    .underline { text-decoration: underline; }
    .bonus-tag {
      display: inline-block;
      font-size: 0.625rem;
      padding: 0.125rem 0.375rem;
      border-radius: 9999px;
      white-space: nowrap;
      line-height: 1.4;
    }
    .bonus-tag-pos { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
    .bonus-tag-neg { background: rgba(239, 68, 68, 0.15); color: #f87171; }
    .avatar-grid-img {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 50%;
      border: 2px solid var(--border);
      cursor: pointer;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
      display: block;
      object-fit: cover;
      background: var(--bg-elevated);
    }
    .avatar-grid-img:hover { border-color: var(--accent-soft); }
    .avatar-grid-img.selected {
      border-color: var(--accent);
      box-shadow: 0 0 14px rgba(124, 58, 237, 0.55);
    }
    .wizard-panel { animation: fade-in-up 0.18s ease forwards; }
    @keyframes fade-in-up {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
