/* ============================================
   🎨 TO-DO LIST — REDESIGN
   Glassmorphism · Micro-animations · Modern UI
   ============================================ */

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

/* ---------- Custom Properties ---------- */
:root {
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --page-bg-start: #201b44;
  --page-bg-mid: #0f122a;
  --page-bg-end: #080a1e;

  /* Glass panel base — overridden per theme */
  --glass-bg: rgba(18, 32, 58, 0.70);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-shadow: 0 24px 60px rgba(5, 9, 25, 0.40);

  /* Hero / input-panel tint — shifts with each theme */
  --hero-tint: rgba(28, 20, 70, 0.72);

  --text-primary: #f7f8ff;
  --text-muted: rgba(247, 249, 255, 0.65);
  --text-dark: #111827;

  --accent: #7c63ff;
  --accent-soft: rgba(124, 99, 255, 0.18);
  --accent-gradient: linear-gradient(135deg, #7c63ff, #4f8dff);

  --card-bg: rgba(255, 255, 255, 0.95);
  --card-border: rgba(12, 22, 48, 0.08);
  --card-radius: 24px;

  --success: #14b8a6;
  --danger: #ef4444;
  --warning: #f59e0b;

  --transition: 0.30s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--page-bg-start) 0%, var(--page-bg-mid) 45%, var(--page-bg-end) 100%);
  overflow-x: hidden;
  transition: background var(--transition);
}

/* ---------- Screen Reader Only ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Floating Decorative Shapes ---------- */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
  animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #4f8dff;
  bottom: -8%;
  right: -5%;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: #ffb86b;
  top: 50%;
  left: 60%;
  animation-delay: -10s;
}

.shape-4 {
  width: 200px;
  height: 200px;
  background: #ff8276;
  top: 20%;
  right: 15%;
  animation-delay: -15s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -40px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(40px, 30px) scale(1.02);
  }
}

/* ---------- Header / Navigation ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 20px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* Remove list styling from nested navigation lists */
.nav-left ul,
.nav-right ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.navbar a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--transition), transform var(--transition);
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
}

.navbar a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.navbar a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
}

/* Active nav tab — set by JS when switching Home / Documents */
.navbar a.active {
  background: rgba(255, 255, 255, 0.18);
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.08);
}

.theme-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-right: 4px;
}

/* ---------- Theme Switcher Circles ---------- */
.theme-btn {
  height: 40px;
  width: 40px;
  border: 2px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

#colour1 {
  background: #7c63ff;
}

#colour2 {
  background: #4f8dff;
}

#colour3 {
  background: #14b8a6;
}

#colour4 {
  background: #d57b1b;
}

#colour5 {
  background: #ef4444;
}

.theme-btn:hover {
  transform: scale(1.20);
  border-color: rgba(255, 255, 255, 0.80);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
}

/* Active theme swatch — set by JS via applyTheme() */
.theme-btn.active {
  transform: scale(1.15);
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35), 0 0 20px rgba(255, 255, 255, 0.20);
  outline: none;
}

/* ---------- Main Layout ---------- */
main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 16px 60px;
}

/* ---------- Sections ---------- */
section {
  width: 100%;
}

/* ---------- Hero Section ---------- */
.hero {
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
  padding: 36px 24px 28px;
  background: var(--hero-tint);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: var(--glass-shadow);
  transition: background var(--transition), border-color var(--transition);
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid var(--accent-soft);
  transition: background var(--transition), color var(--transition);
}

.heading {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--text-primary);
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 0%, #c4b5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 400;
}

/* ---------- Progress Bar ---------- */
.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.progress-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), #4f8dff);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 70px;
  text-align: right;
}

/* ---------- Input Panel ---------- */
.input-panel {
  width: 100%;
  background: var(--hero-tint);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: var(--glass-shadow);
  transition: background var(--transition), border-color var(--transition);
}

.input-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
}

#task-category,
#task {
  height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: #121212;
  font-size: 15px;
  font-family: var(--font-family);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

#task-category {
  flex: 0 0 160px;
  min-width: 140px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

#task {
  flex: 1;
  min-width: 180px;
}

#task::placeholder {
  color: #8e8e9c;
}

#task:focus,
#task-category:focus {
  border-color: rgba(124, 99, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 99, 255, 0.12);
}

#submittask {
  height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-family);
  background: var(--accent-gradient);
  box-shadow: 0 8px 24px rgba(78, 98, 254, 0.30);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

#submittask:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(78, 98, 254, 0.40);
}

#submittask:active {
  transform: translateY(0);
}

.input-actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

#savepdf {
  height: 46px;
  padding: 0 28px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-family);
  background: linear-gradient(135deg, #ff8276, #ffb86b);
  box-shadow: 0 8px 24px rgba(255, 128, 109, 0.24);
  transition: transform var(--transition), box-shadow var(--transition);
}

#savepdf:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 128, 109, 0.35);
}

#savepdf:active {
  transform: translateY(0);
}

/* ---------- Empty State ---------- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  animation: fadeInUp 0.5s ease;
}

.empty-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 4px;
}

.empty-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.empty-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 300px;
}

/* ---------- Notes Container (Task Cards) ---------- */
#notes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  justify-content: center;
  padding: 0 0 20px;
  list-style: none;
}

/* ---------- Individual Task Card ---------- */
.notes {
  width: min(100%, 380px);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 18px 20px 20px;
  box-shadow: 0 12px 40px rgba(9, 15, 45, 0.12);
  color: var(--text-dark);
  overflow-wrap: break-word;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
  animation-delay: calc(var(--i, 0) * 0.05s);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notes:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(9, 15, 45, 0.20);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notes:active {
  cursor: grabbing;
}

/* ---------- Category Badge ---------- */
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  width: fit-content;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ---------- Note Row ---------- */
.note-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.note-text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #0d1631;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(245, 247, 250, 0.80);
  border: 1px solid rgba(16, 24, 56, 0.06);
  outline: none;
  min-height: 44px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.note-text:focus {
  border-color: rgba(124, 99, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(124, 99, 255, 0.10);
}

/* ---------- Completed Animation ---------- */
.completed {
  text-decoration: line-through;
  opacity: 0.60;
  position: relative;
}

.completed::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--success);
  border-radius: 2px;
  animation: strikeThrough 0.35s ease forwards;
  transform-origin: left;
}

@keyframes strikeThrough {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* ---------- Actions (Dropdown + Buttons) ---------- */
.note-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.note-type {
  flex: 1;
  min-width: 100px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(19, 30, 70, 0.12);
  padding: 0 10px;
  background-color: #fff;
  color: #2d3d6f;
  font-weight: 600;
  font-size: 13px;
  font-family: var(--font-family);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.note-check,
.note-delete {
  height: 40px;
  min-width: 44px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-family);
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 16px;
}

.note-check {
  background: linear-gradient(135deg, var(--success), #0f766e);
  color: #fff;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.25);
}

.note-delete {
  background: linear-gradient(135deg, var(--danger), #b91c1c);
  color: #fff;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25);
}

.note-check:hover,
.note-delete:hover {
  transform: translateY(-2px);
}

.note-check:active,
.note-delete:active {
  transform: translateY(0);
}

/* ---------- Documents Tab ---------- */
.documents-header {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.documents-header .heading {
  font-size: clamp(28px, 4vw, 48px);
}

.documents-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 0 0 30px;
  list-style: none;
}

/* ---------- Document Card (.doc-item) — matches JS-generated HTML ---------- */
.doc-item {
  width: min(100%, 700px);
  padding: 18px 22px;
  background: var(--glass-bg);
  color: var(--text-primary);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition), background var(--transition);
  animation: fadeInUp 0.4s ease forwards;
}

.doc-item:hover {
  transform: translateY(-3px);
  background: rgba(23, 35, 68, 0.85);
}

.doc-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.doc-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  word-break: break-all;
  margin-bottom: 4px;
}

.doc-info {
  flex: 1 1 200px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.doc-date {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.doc-task-count {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.doc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.doc-btn {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-family);
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}

.doc-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.doc-btn.del {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.30);
  color: #fca5a5;
}

.doc-btn.del:hover {
  background: rgba(239, 68, 68, 0.30);
}

@media (max-width: 600px) {
  .doc-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .doc-actions {
    width: 100%;
  }

  .doc-btn {
    flex: 1;
    justify-content: center;
  }
}

.document-item {
  width: min(100%, 700px);
  padding: 18px 22px;
  background: var(--glass-bg);
  color: var(--text-primary);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition), background var(--transition);
  animation: fadeInUp 0.4s ease forwards;
}

.document-item:hover {
  transform: translateY(-3px);
  background: rgba(23, 35, 68, 0.85);
}

.document-item span {
  flex: 1 1 200px;
  min-width: 160px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
}

.doc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.document-item button {
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-family);
}

.document-item button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* ---------- PDF Toast ---------- */
.pdf-message {
  position: fixed;
  top: 24px;
  right: 24px;
  background: rgba(16, 185, 129, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  padding: 14px 24px;
  border-radius: 16px;
  /* display: none; */
  z-index: 1000;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
}

/* Show state — toggled by JS via classList.add("show") */
.pdf-message.show {
  display: block;
  animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .navbar {
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
  }

  .input-group {
    flex-direction: column;
    align-items: stretch;
  }

  #task-category {
    flex: 1;
  }

  #task {
    min-width: unset;
  }

  #submittask {
    width: 100%;
  }

  .notes {
    width: 100%;
  }

  .document-item {
    width: 100%;
  }

  .hero {
    padding: 28px 18px 24px;
  }

  .input-panel {
    padding: 16px 18px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 10px 0;
  }

  .navbar {
    flex-direction: column;
    padding: 10px 12px;
  }

  .nav-left ul,
  .nav-right ul {
    justify-content: center;
  }

  .navbar a {
    padding: 8px 14px;
    font-size: 14px;
  }

  .theme-label {
    display: none;
  }

  .theme-btn {
    height: 34px;
    width: 34px;
  }

  .heading {
    font-size: 36px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 4px 14px;
  }

  .note-actions {
    flex-direction: column;
  }

  .note-type {
    width: 100%;
  }

  .note-check,
  .note-delete {
    width: 100%;
    justify-content: center;
  }

  .document-item {
    flex-direction: column;
    align-items: stretch;
  }

  .doc-actions {
    flex-direction: column;
  }

  .document-item button {
    width: 100%;
  }
}

.theme1 {
  --page-bg-start: #201b44;
  --page-bg-mid: #0f122a;
  --page-bg-end: #080a1e;
  --accent: #7c63ff;
  --accent-soft: rgba(124, 99, 255, 0.18);
  --accent-gradient: linear-gradient(135deg, #7c63ff, #4f8dff);
  --glass-bg: rgba(18, 32, 58, 0.70);
  --glass-border: rgba(124, 99, 255, 0.15);
  --hero-tint: rgba(28, 20, 70, 0.72);
}

.theme2 {
  --page-bg-start: #06243a;
  --page-bg-mid: #0a3d62;
  --page-bg-end: #001219;
  --accent: #4f8dff;
  --accent-soft: rgba(79, 141, 255, 0.18);
  --accent-gradient: linear-gradient(135deg, #4f8dff, #38bdf8);
  --glass-bg: rgba(6, 30, 55, 0.72);
  --glass-border: rgba(79, 141, 255, 0.18);
  --hero-tint: rgba(8, 38, 70, 0.75);
}

.theme3 {
  --page-bg-start: #052e16;
  --page-bg-mid: #14532d;
  --page-bg-end: #022c22;
  --accent: #14b8a6;
  --accent-soft: rgba(20, 184, 166, 0.18);
  --accent-gradient: linear-gradient(135deg, #14b8a6, #22c55e);
  --glass-bg: rgba(5, 40, 22, 0.72);
  --glass-border: rgba(20, 184, 166, 0.18);
  --hero-tint: rgba(5, 50, 28, 0.76);
}

.theme4 {
  --page-bg-start: #db4505;
  --page-bg-mid: #9f4d21;
  --page-bg-end: #cb550c;
  --accent: #ffb86b;
  --accent-soft: rgba(255, 184, 107, 0.18);
  --accent-gradient: linear-gradient(135deg, #ffb86b, #f59e0b);
  --glass-bg: rgba(90, 35, 8, 0.72);
  --glass-border: rgba(255, 184, 107, 0.20);
  --hero-tint: rgba(110, 42, 6, 0.75);
}

.theme5 {
  --page-bg-start: #ef1414;
  --page-bg-mid: #7f1d1d;
  --page-bg-end: #cb0808;
  --accent: #ef4444;
  --accent-soft: rgba(239, 68, 68, 0.18);
  --accent-gradient: linear-gradient(135deg, #ef4444, #f97316);
  --glass-bg: rgba(90, 14, 14, 0.72);
  --glass-border: rgba(239, 68, 68, 0.22);
  --hero-tint: rgba(110, 10, 10, 0.76);
}
