/* ── Inscripción específico ── */
    .page-wrap {
      max-width: 780px;
      margin: 0 auto;
      padding: 0 1rem 4rem;
    }

    .tournament-card {
      background: var(--surface);
      border: 0.5px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem 1.75rem;
      margin-bottom: 1.5rem;
    }

    .tournament-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 10px;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #70d0a0;
      animation: pulse 2s infinite;
    }

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

    .status-open  { color: #70d0a0; }
    .status-closed { color: #e07070; }
    .status-dot.closed { background: #e07070; animation: none; }

    .tournament-name {
      font-size: 22px;
      font-weight: 600;
      color: var(--gold-light);
      margin-bottom: 8px;
    }

    .tournament-meta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .meta-pill {
      font-size: 12px;
      color: var(--text-muted);
      background: var(--surface2);
      border: 0.5px solid var(--border);
      border-radius: 20px;
      padding: 4px 12px;
    }

    .no-tournament {
      text-align: center;
      padding: 3rem 1rem;
      color: var(--text-muted);
      font-size: 15px;
    }

    .register-card {
      background: var(--surface);
      border: 0.5px solid var(--border);
      border-radius: var(--radius);
      padding: 1.25rem 1.75rem;
      margin-bottom: 1.5rem;
    }

    .register-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 1rem;
    }

    .register-row {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .register-row .autocomplete-wrap {
      flex: 1;
    }

    .register-btn {
      padding: 9px 20px;
      border: 0.5px solid var(--gold);
      border-radius: var(--radius-sm);
      background: var(--surface);
      color: var(--gold-light);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.12s;
    }

    .register-btn:hover:not(:disabled) { background: var(--surface2); }
    .register-btn:disabled { opacity: 0.35; cursor: not-allowed; }

    .register-warn { font-size: 12px; color: #e07070; margin-top: 6px; display: none; }
    .register-ok   { font-size: 12px; color: #70d0a0; margin-top: 6px; display: none; }

    .registrants-card {
      background: var(--surface);
      border: 0.5px solid var(--border);
      border-radius: var(--radius);
      padding: 0.75rem 1.75rem;
      margin-bottom: 1.5rem;
    }

    .registrants-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .registrants-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .registrants-count {
      font-size: 12px;
      color: var(--text-muted);
    }

    .registrant-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 0.5px solid var(--border);
    }

    .registrant-row:last-child { border-bottom: none; }

    .registrant-num  { font-size: 12px; color: var(--text-muted); min-width: 24px; }
    .registrant-nick { font-size: 15px; color: var(--text); flex: 1; padding: 0 10px; }
    .registrant-seed { font-size: 13px; color: var(--gold); font-weight: 500; }
    .registrant-rating { font-size: 12px; color: var(--text-muted); }

    .registrants-empty {
      font-size: 13px;
      color: var(--text-muted);
      text-align: center;
      padding: 1.5rem 0;
    }

    /* ── Modal iniciar torneo ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(14,12,9,0.92);
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .modal-overlay.visible { display: flex; }

    .modal-box {
      background: var(--surface);
      border: 0.5px solid var(--border-strong);
      border-radius: var(--radius);
      padding: 2rem;
      max-width: 440px;
      width: 100%;
      animation: popIn 0.2s ease;
    }

    @keyframes popIn {
      from { transform: scale(0.93); opacity: 0; }
      to   { transform: scale(1);    opacity: 1; }
    }

    .modal-title {
      font-size: 17px;
      font-weight: 600;
      color: var(--gold-light);
      margin-bottom: 6px;
    }

    .modal-sub {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      line-height: 1.5;
    }

    .modal-admin-note {
      background: var(--surface2);
      border: 0.5px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
      line-height: 1.5;
    }

    .modal-admin-note strong { color: var(--text); }

    .google-btn {
      width: 100%;
      padding: 11px 16px;
      border: 0.5px solid var(--border-strong);
      border-radius: var(--radius-sm);
      background: var(--surface2);
      color: var(--text);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background 0.12s;
      margin-bottom: 10px;
    }
    .google-btn:hover { background: var(--surface); }

    .modal-cancel {
      width: 100%;
      padding: 9px;
      border: none;
      background: transparent;
      color: var(--text-muted);
      font-size: 13px;
      cursor: pointer;
    }
    .modal-cancel:hover { color: var(--text); }

    .modal-error {
      font-size: 12px;
      color: #e07070;
      text-align: center;
      margin-top: 8px;
      display: none;
    }

    /* ── Start Tournament button ── */
    .start-btn {
      width: 100%;
      padding: 12px 16px;
      border: 0.5px solid var(--gold);
      border-radius: var(--radius);
      background: var(--surface);
      color: var(--gold-light);
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.12s;
      margin-top: 0.5rem;
    }
    .start-btn:hover { background: var(--surface2); }

    .nav-link {
      display: inline-block;
      font-size: 13px;
      color: var(--gold);
      text-decoration: none;
      margin-bottom: 1.5rem;
    }
    .nav-link:hover { color: var(--gold-light); }