/* ====== CONSOLIDATED MASTER STYLESHEET ====== */
/* All CSS for the Deeds application in one file */
/* Consolidated on 2025-12-04 */

/* ====== GLOBAL STYLES ====== */
:root {
  color-scheme: light;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body {
  font-family: inherit;
  margin: 0; /* Removed default margin */
    display: flex;

}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translate(-50%, -150%);
  padding: 0.6rem 1.1rem;
  background: #f8fafc;
  color: #0f172a;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.25);
  transition: transform 160ms ease;
  z-index: 999;
}

.skip-link:focus-visible {
  transform: translate(-50%, 0);
}

/* ====== LANDING PAGE STYLES ====== */
.landing-body {
  min-height: 100vh;
  margin: 0;
  font-family: inherit;
  display: flex;
  flex-direction: column; /* Changed to column */

  /*align-items: center;
  justify-content: center; */
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 237, 213, 0.6),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(96, 165, 250, 0.45),
      transparent 50%
    ),
    linear-gradient(135deg, #080c1f 0%, #111b3a 55%, #1f2937 100%);
  color: #f8fafc;
  /*padding: clamp(1.5rem, 3vw, 3rem);*/
  box-sizing: border-box;
}

/* New Main Content Styling */
main {
  flex-grow: 1; /* Make main content fill remaining space */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Changed from center to flex-start */
  padding: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

/* ====== NAVIGATION BAR STYLES ====== */
.top-nav {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 10;
}

.nav-brand-container {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* Space between arrow and text */
}

.nav-back-link {
  display: inline-flex;
  padding: 0.35rem; /* Slightly larger click target */
  border-radius: 9999px; /* full-rounded */
  color: #f8fafc; /* white */
  transition: background-color 150ms ease;
}

.nav-back-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none; /* Override general 'a:hover' */
}

.nav-back-link:focus-visible {
  outline: 2px solid #facc15;
  outline-offset: 2px;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-back-icon {
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
}

.nav-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc; /* White text */
}

.nav-lang-switcher {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 150ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: #facc15;
}

/* ====== LANDING CONTAINER ====== */
.landing-container {
  width: min(64rem, 100%);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  background: rgba(10, 17, 40, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1.75rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 2rem 4rem rgba(4, 6, 18, 0.6);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.landing-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(220, 38, 38, 0.45),
      transparent 55%
    ),
    radial-gradient(
      circle at 90% 30%,
      rgba(234, 179, 8, 0.35),
      transparent 60%
    ),
    radial-gradient(circle at 20% 85%, rgba(22, 163, 74, 0.4), transparent 50%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.9;
}

.landing-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  /* prettier-ignore */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTYwJyBoZWlnaHQ9JzE2MCcgdmlld0JveD0nMCAwIDE2MCAxNjAnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PGcgZmlsbD0nbm9uZScgc3Ryb2tlPSdyZ2JhKDI0OCwyNTAsMjUyLDAuMTQpJyBzdHJva2Utd2lkdGg9JzYnPjxwYXRoIGQ9J00wIDQwaDQwdjQwSDB6TTgwIDBoNDB2NDBIODB6TTgwIDgwaDQwdjQwSDgwek00MCAxMjBoNDB2NDBINDB6TTEyMCA0MGg0MHY0MGgtNDB6Jy8+PC9nPjwvc3ZnPg==");
  background-size: 12rem;
  background-repeat: repeat;
  opacity: 0.25;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.landing-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.landing-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #facc15;
  margin: 0;
}

.landing-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(120deg, #facc15 0%, #f97316 45%, #22c55e 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.landing-description {
  margin: 0;
  color: rgba(226, 232, 240, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
}

.landing-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.landing-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.15);
  border: 1px solid rgba(250, 204, 21, 0.35);
  color: rgba(248, 250, 252, 0.85);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  cursor: pointer;
  transition: all 180ms ease;
}

.landing-tag:hover {
  background: rgba(250, 204, 21, 0.25);
  border-color: rgba(250, 204, 21, 0.5);
  transform: scale(1.05);
}

.lang-switcher-container {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

.landing-button {
  width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, #b91c1c, #ca8a04, #047857);
  color: #f8fafc;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 1rem 2.25rem rgba(202, 138, 4, 0.4);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.landing-button:hover,
.landing-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 1.5rem 3rem rgba(202, 138, 4, 0.45);
}

.landing-button:focus-visible {
  outline: 3px solid rgba(248, 250, 252, 0.95);
  outline-offset: 2px;
}

.landing-link {
  font-weight: 500;
  color: #f8fafc;
  opacity: 0.85;
  transition: opacity 180ms ease;
}

.landing-link:hover,
.landing-link:focus-visible {
  opacity: 1;
}

.landing-link:focus-visible {
  outline: 3px solid #facc15;
  outline-offset: 4px;
}

.landing-visual {
  position: relative;
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 18rem;
  box-shadow: 0 1.75rem 3.5rem rgba(8, 12, 31, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.landing-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 31, 0) 0%,
    rgba(8, 12, 31, 0.75) 100%
  );
}

.landing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-visual-caption {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.85);
}

.landing-player {
  grid-column: 1 / -1;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.landing-player-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.landing-player h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.landing-player p {
  margin: 0;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.95rem;
}

.landing-player audio {
  width: 100%;
  height: 2.75rem;
  border-radius: 999px;
  accent-color: #f97316;
}

.landing-player audio:focus-visible {
  outline: 3px solid rgba(250, 204, 21, 0.7);
  outline-offset: 4px;
}

/* ====== SIGNUP/LOGIN FORM STYLES ====== */
/* Container for language switching buttons */
.lang-switcher-container {
  width: min(26rem, 100%);
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.signup-form {
  width: min(26rem, 100%);
  margin-inline: auto;
  padding: 2.5rem 2rem;
  background: rgba(8, 12, 31, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.5rem;
  box-shadow: 0 1.75rem 3.5rem rgba(8, 12, 31, 0.55);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  margin-top: 1rem; /* Add some space below lang switcher */
}

/* Added styles for logo to replicate old look */
.signup-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.signup-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: #0d9488; /* Replicated teal-600 */
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}
/* End added logo styles */

.signup-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(120deg, #facc15 0%, #f97316 40%, #22c55e 100%);
  -webkit-background-clip: text;
  color: transparent;
  margin: 0;
}

.signup-subtitle {
  text-align: center;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* This class wraps the form inputs for spacing */
.signup-form-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.signup-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signup-field label {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 500;
  display: block;
}

.signup-email {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 500;
  display: block;
}

.signup-field input {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.65);
  color: #f8fafc;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  width: 100%; /* Ensure input takes full width */
  box-sizing: border-box; /* Include padding in width */
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.signup-field input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

/* Style for password input wrapper */
.signup-field .relative {
  position: relative;
}

.signup-button {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #b91c1c, #ca8a04, #047857);
  color: #f8fafc;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02rem;
  box-shadow: 0 1rem 2.25rem rgba(202, 138, 4, 0.4);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  font-size: 1rem; /* Added for consistency */
  display: inline-flex; /* For centering text */
  align-items: center;
  justify-content: center;
}

.signup-button:hover,
.signup-button:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 1.5rem 3rem rgba(202, 138, 4, 0.45);
}

.signup-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1rem 2.25rem rgba(202, 138, 4, 0.4);
}

.signup-footer {
  text-align: center;
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.signup-footer a {
  color: #facc15;
  font-weight: 600;
}

.signup-footer a:hover {
  text-decoration: underline;
}

/* Added style for form message */
.form-message {
  min-height: 1.75rem;
  text-align: left;
  font-size: 0.875rem;
  color: #f87171; /* Red for errors */
}

/* ====== DASHBOARD STYLES ====== */
.dashboard-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  width: 100%;
}

.gradient-title {
  background: linear-gradient(
    120deg,
    #facc15 0%,
    #f97316 40%,
    #22c55e 100%
  );
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0;
}

.stat-card {
  background: rgba(10, 17, 40, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(4, 6, 18, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top right,
    rgba(250, 204, 21, 0.2),
    transparent 60%
  );
  pointer-events: none;
}

.action-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 200ms ease;
  cursor: pointer;
}

.action-card:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 204, 21, 0.5);
  box-shadow: 0 1rem 2rem rgba(250, 204, 21, 0.2);
}

/* ====== CHOOSE PAGE STYLES ====== */
.choose-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.content-card {
  background: rgba(10, 17, 40, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 1rem 2rem rgba(4, 6, 18, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top right,
    rgba(250, 204, 21, 0.15),
    transparent 60%
  );
  pointer-events: none;
}

.info-banner {
  border: 2px dashed rgba(45, 212, 191, 0.3);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(20, 184, 166, 0.1);
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.875rem;
}

.deed-option {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 200ms ease;
}

.deed-option:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(250, 204, 21, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(250, 204, 21, 0.2);
}

.deed-option-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}

.deed-option-desc {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.7);
  margin: 0.5rem 0 0 0;
  line-height: 1.5;
}

.deed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.75rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.badge-dot.teal {
  background: #2dd4bf;
}

.badge-dot.amber {
  background: #fbbf24;
}

.badge-dot.indigo {
  background: #818cf8;
}

.deed-button {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
}

.deed-button:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: #22c55e;
  transform: scale(1.05);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid #22c55e;
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 0.5rem 1rem rgba(34, 197, 94, 0.3);
  transition: all 200ms ease;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

.filter-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.filter-item {
  background: rgba(15, 23, 42, 0.65);
  border-radius: 0.75rem;
  padding: 1rem;
}

.filter-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.9);
  margin: 0 0 0.5rem 0;
}

.filter-desc {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
  margin: 0;
  line-height: 1.5;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.section-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr;
}

/* ====== PROFILE STYLES ====== */
.profile-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid rgba(34, 197, 94, 0.5);
}

.stat-box {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.75rem;
  padding: 1rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6);
  margin: 0;
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0.25rem 0 0 0;
}

.stat-value.highlight {
  color: #22c55e;
}

.pref-item {
  background: rgba(15, 23, 42, 0.65);
  border-radius: 0.75rem;
  padding: 1rem;
}

.pref-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.9);
  margin: 0 0 0.25rem 0;
}

.pref-desc {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.7);
  margin: 0;
}

.deed-item {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 200ms ease;
}

.deed-item:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(250, 204, 21, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(250, 204, 21, 0.2);
}

.deed-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}

.deed-meta {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.6);
  margin: 0.25rem 0 0 0;
}

.deed-note {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.5);
  margin: 0.5rem 0 0 0;
  line-height: 1.5;
}

.streak-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.65);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.streak-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #22c55e;
  margin-top: 0.25rem;
}

.streak-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}

.streak-desc {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
  margin: 0;
}

.action-button {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.65);
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
}

.action-button:hover {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.account-label {
  color: rgba(226, 232, 240, 0.7);
}

.account-value {
  color: #f8fafc;
  font-weight: 600;
}

/* ====== SUBMIT PAGE STYLES ====== */
.submit-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
  background: linear-gradient(
    to bottom right,
    rgba(34, 197, 94, 0.2),
    rgba(22, 163, 74, 0.3)
  );
  color: #22c55e;
}

.section-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.deed-list {
  display: grid;
  gap: 0.75rem;
}

.deed-card {
  background: rgba(15, 23, 42, 0.65);
  border: 2px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 200ms ease;
}

.deed-card:hover {
  border-color: rgba(250, 204, 21, 0.4);
  background: rgba(15, 23, 42, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(250, 204, 21, 0.2);
}

.deed-card.active {
  border-color: #22c55e;
  background: linear-gradient(
    to bottom right,
    rgba(34, 197, 94, 0.15),
    rgba(22, 163, 74, 0.1)
  );
  box-shadow: 0 0.75rem 1.5rem rgba(34, 197, 94, 0.3);
}

.deed-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}

.deed-card p {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.7);
  margin: 0.5rem 0 0 0;
  line-height: 1.5;
}

.deed-card .meta {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

.deed-card .meta.teal {
  color: #2dd4bf;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.9);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.65);
  color: #f8fafc;
  font-size: 0.875rem;
  transition: all 150ms ease;
  font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(226, 232, 240, 0.4);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #22c55e;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-hint {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
  margin-top: 0.25rem;
}

.submit-button {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid #22c55e;
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.5rem rgba(34, 197, 94, 0.3);
  transition: all 200ms ease;
  cursor: pointer;
}

.submit-button:hover {
  box-shadow: 0 1rem 2rem rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

/* ====== LEADERBOARD STYLES ====== */
.leaderboard-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  width: 100%;
}

.stat-highlight {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: right;
  position: relative;
  overflow: hidden;
}

.stat-highlight::before {
  content: "";
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
}

.leaderboard-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.leaderboard-table thead {
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.9),
    rgba(30, 41, 59, 0.9)
  );
}

.leaderboard-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: rgba(226, 232, 240, 0.8);
  font-weight: 700;
}

.leaderboard-table th:last-child {
  text-align: right;
}

.leaderboard-table tbody {
  background: rgba(15, 23, 42, 0.65);
}

.leaderboard-table tbody tr {
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.leaderboard-table tbody tr:last-child {
  border-bottom: none;
}

.leaderboard-table tbody tr:hover {
  background: rgba(250, 204, 21, 0.05);
}

.leaderboard-table td {
  padding: 1rem;
  color: rgba(248, 250, 252, 0.9);
}

.leaderboard-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #facc15;
}

/* Leaderboard – Blocks & Shoutouts */

.leaderboard-block-item,
.leaderboard-shoutout-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.9);
}

.leaderboard-block-item:last-child,
.leaderboard-shoutout-item:last-child {
  border-bottom: none;
}

.leaderboard-block-name,
.leaderboard-shoutout-name {
  font-weight: 500;
}

.leaderboard-block-score,
.leaderboard-shoutout-score {
  font-weight: 600;
  color: #facc15;
}


.section-card {
  background: rgba(10, 17, 40, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.icon-orange {
  background: linear-gradient(
    to bottom right,
    rgba(251, 146, 60, 0.2),
    rgba(249, 115, 22, 0.3)
  );
  color: #fb923c;
}

.icon-pink {
  background: linear-gradient(
    to bottom right,
    rgba(244, 114, 182, 0.2),
    rgba(236, 72, 153, 0.3)
  );
  color: #f472b6;
}

.icon-teal {
  background: linear-gradient(
    to bottom right,
    rgba(45, 212, 191, 0.2),
    rgba(20, 184, 166, 0.3)
  );
  color: #2dd4bf;
}

.icon-purple {
  background: linear-gradient(
    to bottom right,
    rgba(168, 85, 247, 0.2),
    rgba(147, 51, 234, 0.3)
  );
  color: #a855f7;
}

.empty-state {
  border: 2px dashed rgba(148, 163, 184, 0.3);
  border-radius: 0.75rem;
  padding: 2rem 1rem;
  text-align: center;
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.875rem;
  background: rgba(15, 23, 42, 0.4);
}

.skeleton-loader {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.skeleton-bar {
  background: rgba(148, 163, 184, 0.2);
  border-radius: 0.25rem;
  height: 1rem;
}

/* ====== OFFLINE PAGE STYLES ====== */
.offline-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  opacity: 0.6;
}

.offline-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a143c 0%, #00b7b3 100%);
}

.offline-card {
  background: white;
  border-radius: 1rem;
  padding: 3rem 2rem;
  max-width: 500px;
  margin: 1rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.retry-button {
  background: #00b7b3;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
}

.retry-button:hover {
  background: #009a96;
}

.offline-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ====== ADMIN THEME STYLES ====== */
:root {
  --admin-primary: #7c3aed;
  --admin-primary-dark: #6d28d9;
  --admin-primary-light: #a78bfa;
  --admin-accent: #10b981;
  --admin-warning: #f59e0b;
  --admin-danger: #ef4444;
  --admin-bg: linear-gradient(to bottom right, #faf5ff, #ffffff, #f3e8ff);
}

/* ====== ADMIN LAYOUT ====== */
.admin-container {
  min-height: 100vh;
  background: var(--admin-bg);
}

.admin-header {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgb(226 232 240);
}

.admin-theme {
  background: linear-gradient(to bottom right, #faf5ff, #ffffff, #f3e8ff);
}

.admin-accent {
  background-color: #7c3aed;
}

.admin-accent-hover:hover {
  background-color: #6d28d9;
}

.admin-badge {
  background-color: #7c3aed;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ====== ADMIN CARDS ====== */
.admin-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgb(241 245 249);
}

.admin-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.admin-card-header {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(100 116 139);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.admin-card-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: rgb(15 23 42);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.admin-card-label {
  font-size: 0.875rem;
  color: rgb(148 163 184);
}

/* ====== ADMIN STATS CARDS ====== */
.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--admin-primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card.pending::before {
  background: var(--admin-warning);
}

.stat-card.verified::before {
  background: var(--admin-accent);
}

.stat-card.users::before {
  background: var(--admin-primary);
}

/* ====== ADMIN BUTTONS ====== */
.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  outline: none;
}

.admin-btn-primary {
  background: var(--admin-primary);
  color: white;
}

.admin-btn-primary:hover {
  background: var(--admin-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.admin-btn-secondary {
  background: rgb(241 245 249);
  color: rgb(51 65 85);
}

.admin-btn-secondary:hover {
  background: rgb(226 232 240);
}

.admin-btn-success {
  background: var(--admin-accent);
  color: white;
}

.admin-btn-success:hover {
  background: #059669;
}

.admin-btn-danger {
  background: var(--admin-danger);
  color: white;
}

.admin-btn-danger:hover {
  background: #dc2626;
}

/* ====== ADMIN BADGES ====== */
.admin-badge-primary {
  background: rgb(237 233 254);
  color: var(--admin-primary);
}

.admin-badge-success {
  background: rgb(209 250 229);
  color: rgb(6 95 70);
}

.admin-badge-warning {
  background: rgb(254 243 199);
  color: rgb(146 64 14);
}

.admin-badge-danger {
  background: rgb(254 226 226);
  color: rgb(127 29 29);
}

/* ====== ADMIN TABLE ====== */
.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.admin-table thead {
  background: rgb(248 250 252);
}

.admin-table th {
  padding: 0.75rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(100 116 139);
  border-bottom: 1px solid rgb(226 232 240);
}

.admin-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgb(241 245 249);
  font-size: 0.875rem;
  color: rgb(51 65 85);
}

.admin-table tbody tr {
  transition: background-color 0.15s;
}

.admin-table tbody tr:hover {
  background: rgb(248 250 252);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

/* ====== ADMIN LOADING STATES ====== */
.skeleton {
  background: linear-gradient(
    90deg,
    rgb(226 232 240) 0%,
    rgb(241 245 249) 50%,
    rgb(226 232 240) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 1rem;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.skeleton-card {
  height: 120px;
  border-radius: 1rem;
}

/* ====== ADMIN EMPTY STATES ====== */
.empty-state {
  padding: 4rem 2rem;
  text-align: center;
  color: rgb(148 163 184);
}

.empty-state-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  opacity: 0.4;
}

.empty-state-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(51 65 85);
  margin-bottom: 0.5rem;
}

.empty-state-description {
  font-size: 0.875rem;
  color: rgb(148 163 184);
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

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

/* ====== UTILITIES ====== */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ====== DASHBOARD UTILITY CLASSES ====== */

/* Section Spacing */
.section-spacing {
  margin-bottom: 3rem;
}

/* Typography */
.eyebrow-text {
  font-size: 0.75rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #facc15;
  margin: 0 0 0.75rem 0;
}

.subtitle-text {
  margin-top: 0.75rem;
  color: rgba(226, 232, 240, 0.8);
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f8fafc;
  margin: 0 0 1rem 0;
}

/* Grid Layouts */
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin-bottom: 3rem;
}

.actions-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.profile-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.status-grid {
  display: grid;
  gap: 1rem;
}

/* Stat Card Components */
.stat-card-label {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.7);
  margin: 0;
}

.stat-card-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0 0 0;
}

.stat-card-value-yellow {
  color: #facc15;
}

.stat-card-value-orange {
  color: #f97316;
}

.stat-card-value-green {
  color: #22c55e;
}

.stat-card-note {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
  margin: 0.5rem 0 0 0;
}

/* Action Card Components */
.action-card-title {
  font-weight: 600;
  color: #f8fafc;
  margin: 0;
}

.action-card-description {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.7);
  margin: 0.5rem 0;
}

.action-card-meta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
}

.action-card-meta-yellow {
  color: #facc15;
}

.action-card-meta-orange {
  color: #f97316;
}

.action-card-meta-green {
  color: #22c55e;
}

/* Status Card Components */
.status-card-pending {
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(217, 119, 6, 0.4);
  border-radius: 0.75rem;
  padding: 1rem;
}

.status-card-verified {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 0.75rem;
  padding: 1rem;
}

.status-card-latest {
  background: rgba(148, 163, 184, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
}

.status-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin: 0;
}

.status-card-label-pending {
  color: rgba(253, 224, 71, 0.9);
}

.status-card-label-verified {
  color: rgba(134, 239, 172, 0.9);
}

.status-card-label-latest {
  color: rgba(226, 232, 240, 0.8);
}

.status-card-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.25rem 0 0 0;
}

.status-card-value-pending {
  color: #fbbf24;
}

.status-card-value-verified {
  color: #22c55e;
}

.status-card-value-latest {
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
}

/* Profile Card */
.profile-card {
  background: rgba(10, 17, 40, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
}

.profile-card-section {
  margin-bottom: 1rem;
}

.profile-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6);
  margin: 0;
}

.profile-card-value {
  color: #f8fafc;
  margin: 0.25rem 0 0 0;
}

/* Description Text */
.description-text {
  color: rgba(226, 232, 240, 0.75);
  margin-bottom: 1.5rem;
}

/* ====== CHOOSE PAGE UTILITY CLASSES ====== */

/* Eyebrow Variants */
.eyebrow-text-teal {
  font-size: 0.75rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: #2dd4bf;
  margin: 0 0 0.75rem 0;
}

/* Flex Containers */
.flex-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.flex-header-start {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.flex-header-compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.flex-column-gap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Card Headers */
.card-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}

.card-heading-small {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}

.card-subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.7);
}

/* Extended Subtitle */
.subtitle-text-extended {
  margin-top: 0.75rem;
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.6;
  max-width: 48rem;
}

/* Lists */
.deed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.deed-list-sidebar {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Deed Option Components */
.deed-option-footer {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.deed-option-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
}

/* Badge Variants */
.perfect-today-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #2dd4bf;
}

.small-text {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
}

/* Links */
.link-green {
  font-size: 0.875rem;
  color: #22c55e;
  text-decoration: none;
}

/* Utility */
.full-width {
  width: 100%;
}

.sidebar-height {
  height: max-content;
}

.sidebar-section {
  margin-bottom: 1.5rem;
}

/* ====== LEADERBOARD PAGE UTILITY CLASSES ====== */

/* Hero Section */
.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.icon-eyebrow-flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-description {
  margin-top: 0.75rem;
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.6;
}

.stat-highlight-min {
  min-width: 12rem;
}

.relative-z10 {
  position: relative;
  z-index: 10;
}

/* Stat Labels */
.week-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: rgba(134, 239, 172, 0.9);
  margin: 0;
}

.week-label-alt {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.6);
}

.stat-number-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: #22c55e;
  margin: 0.5rem 0 0 0;
}

.stat-updated-text {
  font-size: 0.75rem;
  color: rgba(134, 239, 172, 0.7);
  margin: 0.25rem 0 0 0;
}

/* Section Headers */
.section-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-title-no-margin {
  margin-bottom: 0;
}

.table-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}

/* Table Wrapper */
.table-wrapper {
  overflow: hidden;
  border-radius: 0.75rem;
}

/* Skeleton Loader Widths */
.skeleton-width-xs {
  width: 1.5rem;
}

.skeleton-width-sm {
  width: 4rem;
}

.skeleton-width-md {
  width: 7rem;
}

.skeleton-width-lg {
  width: 8rem;
}

.skeleton-width-xl {
  width: 9rem;
}

.skeleton-width-2xl {
  width: 10rem;
}

.skeleton-width-3xl {
  width: 11rem;
}

.skeleton-ml-auto {
  margin-left: auto;
}

/* List Resets */
.list-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ====== PROFILE PAGE UTILITY CLASSES ====== */

/* Profile Header */
.profile-header-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
}

.avatar-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-label {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.6);
  margin: 0;
}

.profile-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0.25rem 0 0 0;
}

.profile-email {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.7);
  margin: 0.25rem 0 0 0;
}

/* Grid Layouts */
.grid-two-col {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.badge-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.stats-grid-auto {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.profile-sections-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.4fr 1fr;
}

.preferences-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.sidebar-grid {
  display: grid;
  gap: 1.5rem;
  grid-auto-rows: max-content;
}

/* List Layouts */
.account-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.streak-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recent-deeds-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Margin Utilities */
.mt-1 {
  margin-top: 1rem;
}

/* ====== SUBMIT PAGE UTILITY CLASSES ====== */

.submit-header-flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.submit-description {
  color: rgba(226, 232, 240, 0.8);
  margin: 0;
}

.submit-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.submit-footer {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.6);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .profile-sections-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .landing-container {
    padding: clamp(1.75rem, 5vw, 2.5rem);
  }

  .landing-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-button,
  .landing-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .admin-card {
    padding: 1rem;
  }

  .admin-card-value {
    font-size: 1.875rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.75rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-button,
  .landing-link {
    transition: none;
  }
}
