:root {
      --primary: #007cb5;
      --primary-dark: #005a8a;
      --text-dark: #0f172a;
      --text-medium: #475569;
      --text-light: #64748b;
      --border: #e2e8f0;
      --bg: #f8fafc;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'DM Sans', -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text-dark);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    /* HEADER */
    .header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .header-container {
      max-width: 1400px; margin: 0 auto;
      padding: 20px 40px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo-img { height: 55px; transition: all 0.3s ease; }
    .nav-buttons { display: flex; align-items: center; gap: 32px; }
    .nav-button {
      font-family: 'Outfit', sans-serif;
      font-size: 15px; font-weight: 600;
      color: #475569; text-decoration: none;
      position: relative; padding: 8px 0;
      transition: color 0.3s ease;
    }
    .nav-button::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px; background: var(--primary);
      transition: width 0.3s ease;
    }
    .nav-button:hover { color: var(--primary); }
    .nav-button:hover::after { width: 100%; }
    .burger-menu {
      display: none; flex-direction: column; gap: 6px;
      cursor: pointer; background: transparent; border: none; z-index: 101;
    }
    .burger-menu span {
      width: 28px; height: 3px; background: var(--primary);
      border-radius: 2px; transition: all 0.3s ease; display: block;
    }
    .burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
    .burger-menu.active span:nth-child(2) { opacity: 0; }
    .burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
    .mobile-menu {
      position: fixed; inset: 0; z-index: 99; background: #fff;
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(.76,0,.24,1);
      overflow-y: auto;
    }
    .mobile-menu.active { transform: translateX(0); }
    .mobile-menu-content {
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      gap: 4px; flex: 1; padding: 40px;
    }
    .mobile-menu .nav-button {
      font-size: 24px; font-weight: 700;
      padding: 14px 32px; border-radius: 12px;
      width: 100%; text-align: center;
    }
    .mobile-menu .nav-button:hover { color: var(--primary); background: #f0f9ff; }
    @media (max-width: 768px) {
      .burger-menu { display: flex; }
      .nav-buttons { display: none; }
      .logo-img { height: 40px; }
      .header-container { padding: 12px 20px; }
    }

    /* PAGE */
    .main-content { max-width: 600px; margin: 0 auto; padding: 60px 20px 80px; }

    .page-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 300;
      color: var(--primary);
      margin-bottom: 16px;
      text-align: center;
    }
    .page-subtitle {
      font-size: 17px; color: var(--text-medium);
      margin-bottom: 48px; text-align: center; line-height: 1.6;
    }

    .delete-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: 16px; padding: 48px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .warning-box {
      background: #fef2f2; border: 2px solid #ef4444;
      border-radius: 12px; padding: 24px; margin-bottom: 32px;
    }
    .warning-box h3 {
      color: #dc2626; font-size: 18px; font-weight: 700;
      margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
    }
    .warning-box p { color: #991b1b; line-height: 1.6; margin-bottom: 8px; }
    .warning-box ul { margin-top: 12px; padding-left: 24px; color: #991b1b; }
    .warning-box li { margin-bottom: 6px; }

    .form-group { margin-bottom: 24px; }
    .form-label {
      display: block; font-size: 14px; font-weight: 600;
      margin-bottom: 8px; color: var(--text-dark);
      font-family: 'Outfit', sans-serif;
    }
    .form-input {
      width: 100%; padding: 14px 16px; font-size: 15px;
      border: 1.5px solid var(--border); border-radius: 10px;
      font-family: 'DM Sans', sans-serif; color: var(--text-dark);
      background: #fff; outline: none; transition: border-color 0.2s;
    }
    .form-input:focus { border-color: var(--primary); }
    .help-text { font-size: 13px; color: var(--text-light); margin-top: 6px; }

    .checkbox-group {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 16px; background: #fef2f2;
      border: 1px solid #fecaca; border-radius: 8px; margin-bottom: 24px;
    }
    .checkbox-group input[type="checkbox"] {
      margin-top: 3px; width: 18px; height: 18px; cursor: pointer; flex-shrink: 0;
    }
    .checkbox-group label { color: #991b1b; font-weight: 500; cursor: pointer; line-height: 1.5; }

    .btn-danger {
      width: 100%; background: #dc2626; color: #fff;
      border: none; padding: 15px 32px; border-radius: 10px;
      font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700;
      cursor: pointer; transition: all 0.2s; margin-bottom: 12px; display: block;
    }
    .btn-danger:hover:not(:disabled) { background: #b91c1c; transform: translateY(-1px); }
    .btn-danger:disabled { background: #d1d5db; cursor: not-allowed; opacity: 0.6; }

    .btn-secondary {
      width: 100%; background: var(--bg); color: var(--text-dark);
      border: 1.5px solid var(--border); padding: 14px 32px; border-radius: 10px;
      font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
      cursor: pointer; text-decoration: none; display: block;
      text-align: center; transition: all 0.2s;
    }
    .btn-secondary:hover { background: #f1f5f9; }

    /* LOADING OVERLAY */
    .loading-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.8);
      display: none; flex-direction: column;
      align-items: center; justify-content: center; z-index: 9999;
    }
    .loading-overlay.active { display: flex; }
    .spinner {
      width: 56px; height: 56px;
      border: 5px solid rgba(255,255,255,0.2);
      border-top-color: #ef4444;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .loading-text { color: #fff; font-size: 17px; margin-top: 20px; font-weight: 500; }

    /* MODAL */
    .modal-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.8);
      display: none; align-items: center; justify-content: center;
      z-index: 1000; padding: 20px;
    }
    .modal-overlay.active { display: flex; }
    .modal {
      background: #fff; border-radius: 16px; padding: 40px;
      max-width: 440px; width: 100%;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4); text-align: center;
    }
    .modal-icon { font-size: 56px; margin-bottom: 16px; }
    .modal-title {
      font-family: 'Outfit', sans-serif;
      font-size: 24px; font-weight: 700; margin-bottom: 12px;
    }
    .modal.error .modal-title { color: #dc2626; }
    .modal.success .modal-title { color: #059669; }
    .modal-message { font-size: 15px; color: var(--text-medium); line-height: 1.6; margin-bottom: 28px; }
    .btn-modal {
      width: 100%; padding: 14px; border-radius: 10px;
      font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700;
      cursor: pointer; border: none; background: var(--primary); color: #fff;
      transition: background 0.2s;
    }
    .btn-modal:hover { background: var(--primary-dark); }

    /* FOOTER */
    .footer { padding: 52px 32px 36px; border-top: 1px solid var(--border); background: #fff; margin-top: 80px; }
    .footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }
    .footer-links { display: flex; gap: 8px 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
    .footer-link { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; color: #66636d; text-decoration: none; transition: color .2s; }
    .footer-link:hover { color: var(--primary); }
    .footer p { font-size: 13px; color: #94a3b8; }

    @media (max-width: 768px) {
      .footer { padding: 40px 20px 28px; }
      .delete-card { padding: 28px 20px; }
      .main-content { padding: 40px 20px 60px; }
    }

/* Extracted from inline style attributes - CSP unsafe-inline removal */
.mt-12 { margin-top:12px; }
