:root {
  --accent: #0fa4f5;
  --accent-soft: rgba(20, 164, 245, 0.15);
  --accent-glow: rgba(66, 176, 245, 0.4);
  --text: #F4F4F6;
  --muted: #9A9AA2;
  --panel: rgba(20, 20, 22, 0.4);
  --panel-border: rgba(255, 255, 255, 0.08);
  --panel-border-hover: rgba(255, 255, 255, 0.15);
  --ok: #4ade80;
  --warn: #facc15;
  --danger: #ef4444;
  --bg: #0B0B0D;
}

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

body {
  margin: 0;
  background:
    radial-gradient(1200px 800px at 85% -10%, rgba(15, 164, 245, 0.18), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(15, 164, 245, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(circle at 50% 10%, black, transparent 80%);
  mask-image: radial-gradient(circle at 50% 10%, black, transparent 80%);
  z-index: 0;
}

/* ---- Animations ---- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 164, 245, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(15, 164, 245, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(15, 164, 245, 0);
  }
}

/* ---- header ---- */
header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(16px, 4vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeIn 0.8s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.2s;
}

.brand:hover {
  transform: translateY(-2px);
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0072ff, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 164, 245, 0.4);
  flex-shrink: 0;
}

.logo svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #000;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-name span {
  color: var(--accent);
}

.brand-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mode-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(12px);
}

.tab {
  padding: 8px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  color: var(--muted);
}

.tab:hover:not(.active) {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.tab.active {
  background: var(--accent);
  color: #0B0B0D;
  box-shadow: 0 4px 12px rgba(15, 164, 245, 0.3);
}

/* ---- auth header ---- */
.auth-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-btn {
  padding: 9px 18px;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.auth-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

.auth-btn.primary {
  background: var(--accent);
  color: #0B0B0D;
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(15, 164, 245, 0.3);
}

.auth-btn.primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(15, 164, 245, 0.4);
}

.auth-btn:active {
  transform: scale(0.97);
}

.auth-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 0 8px;
}

.auth-user svg {
  color: var(--accent);
}

/* ---- main ---- */
main {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 40px) 80px;
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero {
  padding: 30px 0 40px;
  max-width: 720px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 600px;
}

/* ---- cards (premium glassmorphism) ---- */
.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  border-color: var(--panel-border-hover);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-title svg {
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(15, 164, 245, 0.4));
}

.section-title h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.2px;
}

/* ---- layouts ---- */
.pub-top {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 24px;
  align-items: start;
}

@media(max-width: 900px) {
  .pub-top {
    grid-template-columns: 1fr;
  }
}

.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  align-items: start;
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 10px;
}

@media(max-width: 768px) {
  .form-2col {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}

/* ---- calendar ---- */
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.cal-nav {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cal-nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.cal-nav:active {
  transform: scale(0.95);
}

.cal-month-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.week-row,
.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.week-row {
  margin-bottom: 10px;
}

.wd {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.day-btn {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--panel-border);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  overflow: hidden;
}

.day-btn.empty {
  background: transparent;
  border-color: transparent;
  pointer-events: none;
}

.day-btn.past,
.day-btn.blocked {
  background: rgba(255, 255, 255, 0.01);
  color: rgba(255, 255, 255, 0.15);
  border-color: transparent;
  cursor: not-allowed;
}

.day-btn.blocked {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 4px, transparent 4px, transparent 8px);
}

.day-btn.occupied {
  background: repeating-linear-gradient(-45deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.05) 5px, rgba(239, 68, 68, 0.1) 5px, rgba(239, 68, 68, 0.1) 10px);
  border-color: rgba(239, 68, 68, 0.2);
  color: rgba(239, 68, 68, 0.8);
  cursor: not-allowed;
}

.day-btn.occupied::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  bottom: 6px;
  box-shadow: 0 0 8px #ef4444;
  animation: pulseGlow 2s infinite;
}

.day-btn.booked {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.25);
  color: #4ade80;
  cursor: not-allowed;
}

.day-btn.pending-day {
  background: rgba(250, 204, 21, 0.08);
  border-color: rgba(250, 204, 21, 0.25);
  color: #facc15;
  cursor: not-allowed;
}

.day-btn.pending-day::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #facc15;
  bottom: 6px;
  box-shadow: 0 0 8px #facc15;
  animation: pulseGlow 2s infinite;
}

.day-btn.selected {
  background: var(--accent);
  color: #0B0B0D;
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(15, 164, 245, 0.4);
  font-weight: 700;
  z-index: 2;
}

.day-btn.available:not(.selected):hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.admin-mode .day-btn.available:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--panel-border);
}

.legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--panel-border);
}

.leg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.leg-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- form elements ---- */
.col-head {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--panel-border);
  color: var(--text);
}

.field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.field-label svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: 0.3s;
}

.f-input,
.f-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.f-input:hover,
.f-textarea:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.f-input:focus,
.f-textarea:focus {
  border-color: var(--accent) !important;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(15, 164, 245, 0.15), inset 0 2px 6px rgba(0, 0, 0, 0.1);
}

.f-input:focus+.field-label svg,
.f-textarea:focus+.field-label svg {
  opacity: 1;
  color: var(--accent);
}

.f-input::placeholder,
.f-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}

.f-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* ---- range slider ---- */
.f-range {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  appearance: none;
  outline: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  margin: 10px 0;
}

.f-range::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 4px solid var(--accent);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 164, 245, 0.5);
  transition: transform 0.2s;
}

.f-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.f-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 4px solid var(--accent);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 164, 245, 0.5);
  transition: transform 0.2s;
}

.range-ends {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ---- chips ---- */
.chip {
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  transition: all 0.25s ease;
}

.chip:hover:not(.active) {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.chip.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(15, 164, 245, 0.15);
}

/* ---- price box ---- */
.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 164, 245, 0.1), rgba(15, 164, 245, 0.02));
  border: 1px solid rgba(15, 164, 245, 0.3);
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(15, 164, 245, 0.1);
}

.price-val {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-top: 4px;
  text-shadow: 0 2px 10px rgba(15, 164, 245, 0.3);
}

.price-label {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}

/* ---- custom checkbox ---- */
.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  margin: 20px 0;
  padding: 12px;
  border-radius: 12px;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.01);
}

.check-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.check-row input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.check-row span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  opacity: 0.8;
}

/* ---- buttons ---- */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #0072ff, var(--accent));
  color: #0B0B0D;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  box-shadow: 0 8px 24px rgba(15, 164, 245, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-main:disabled {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-main:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 164, 245, 0.5);
  filter: brightness(1.1);
}

.btn-main:not(:disabled):active {
  transform: scale(0.98);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: scale(0.97);
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: all 0.25s ease;
}

.btn-action.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(15, 164, 245, 0.15);
}

.btn-action:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-action svg {
  width: 16px;
  height: 16px;
}

/* ---- modals ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.hidden {
  display: none !important;
}

.modal-card {
  background: rgba(15, 15, 18, 0.9);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 32px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.modal-card::-webkit-scrollbar {
  width: 6px;
}

.modal-card::-webkit-scrollbar-track {
  background: transparent;
}

.modal-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.modal-card::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.modal-card.wide {
  max-width: 600px;
}

.modal-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  transform: rotate(90deg);
}

/* ---- verify modal specific ---- */
.verify-grid {
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 12px 16px;
  border: 1px solid var(--panel-border);
}

.verify-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

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

.verify-row span {
  color: var(--muted);
}

.verify-row b {
  color: var(--text);
  text-align: right;
  font-weight: 600;
}

.verify-desc {
  padding: 14px;
  border-radius: 12px;
  margin: 10px 0 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--panel-border);
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  opacity: 0.9;
}

.verify-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(15, 164, 245, 0.1);
  border-radius: 12px;
  margin-top: 16px;
}

.verify-total span {
  font-weight: 600;
  color: var(--text);
}

.verify-total b {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  color: var(--accent);
  font-weight: 800;
}

/* ---- admin stats ---- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 10px 0 24px;
}

.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-top: 8px;
  line-height: 1;
}

/* ---- bcard ---- */
.bcard {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--panel-border);
  margin-bottom: 16px;
  transition: 0.2s;
}

.bcard:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.03);
}

.bcard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.bcard-server {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
}

.status-dot {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid;
  background: rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bcard-name {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.bcard-right {
  text-align: right;
}

.bcard-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  line-height: 1.1;
}

.bcard-id {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Metadata row of booking cards */
.meta-row {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 5px 12px;
  border-radius: 10px;
  border: 1px solid var(--panel-border);
  white-space: nowrap;
}

.meta-row svg {
  color: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}

/* ---- sub panels ---- */
.sub-panel {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
}

/* ---- utilities ---- */
.info-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.info-card-title svg {
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(15, 164, 245, 0.4));
}

.info-card-title span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.info-card-body {
  color: var(--text);
  opacity: 0.85;
  font-size: 14px;
  line-height: 1.7;
}

.mt-8 {
  margin-top: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-22 {
  margin-top: 22px;
}

.hidden {
  display: none !important;
}

.muted-note {
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0 0;
}

.warn-note {
  color: var(--warn);
  font-size: 13px;
  margin: 10px 0 0;
  background: rgba(250, 204, 21, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  display: inline-block;
}

.flex-wrap-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.date-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(15, 164, 245, 0.15);
  border: 1px solid rgba(15, 164, 245, 0.3);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(15, 164, 245, 0.1);
}

.date-chip .remove-x {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 2px;
  border-radius: 50%;
  transition: 0.2s;
}

.date-chip .remove-x:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.pill {
  padding: 6px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: 0.2s;
}

.pill.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}

.pill:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(5) hue-rotate(345deg);
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 0.7;
}

/* ---- Premium Animations & Drifting Background Glow ---- */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.g1 {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(15, 164, 245, 0.22), transparent 65%);
  top: -220px;
  right: -120px;
  animation: drift1 22s ease-in-out infinite alternate;
}

.g2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(15, 164, 245, 0.10), transparent 65%);
  bottom: -180px;
  left: -160px;
  animation: drift2 27s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(60px, 40px);
  }
}

@keyframes drift2 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-50px, 30px);
  }
}

/* Staggered Reveal class */
.reveal {
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Success Checkmark Ring Animations */
.ok-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.ok-circle {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ok);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B0B0D;
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.35);
  animation: checkPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.ok-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--ok);
  animation: ringExpand 1.2s ease-out 2;
}

@keyframes checkPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes ringExpand {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Admin Booking Grid — 2 columns with scroll */
.admin-bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 16px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 8px;
  margin-top: 14px;
}

@media (max-width: 950px) {
  .admin-bookings-grid {
    grid-template-columns: 1fr;
  }
}

.admin-bookings-grid::-webkit-scrollbar {
  width: 6px;
}

.admin-bookings-grid::-webkit-scrollbar-track {
  background: transparent;
}

.admin-bookings-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.admin-bookings-grid::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ============================================================
   TOAST NOTIFICATION SYSTEM
   ============================================================ */
#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 380px;
  width: calc(100vw - 48px);
}

.toast {
  pointer-events: all;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.toast:hover {
  transform: translateX(-4px);
}

.toast.toast-exit {
  animation: toastOut 0.35s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
    max-height: 120px;
    margin-bottom: 0;
  }
  to {
    opacity: 0;
    transform: translateX(60px) scale(0.88);
    max-height: 0;
    margin-bottom: -12px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Progress bar */
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 0 16px;
  animation: toastProgress linear forwards;
}

@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
}

/* Icon wrapper */
.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Text */
.toast-content {
  flex: 1;
  min-width: 0;
}

.toast-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}

.toast-message {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  word-break: break-word;
}

/* Close button */
.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 2px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.toast-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

/* Variants */
.toast-error {
  background: rgba(20, 8, 8, 0.88);
  border-color: rgba(239, 68, 68, 0.35);
}
.toast-error .toast-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
.toast-error .toast-progress {
  background: #ef4444;
}

.toast-success {
  background: rgba(8, 20, 12, 0.88);
  border-color: rgba(74, 222, 128, 0.3);
}
.toast-success .toast-icon {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}
.toast-success .toast-progress {
  background: #4ade80;
}

.toast-warning {
  background: rgba(20, 16, 4, 0.88);
  border-color: rgba(250, 204, 21, 0.3);
}
.toast-warning .toast-icon {
  background: rgba(250, 204, 21, 0.12);
  color: #facc15;
}
.toast-warning .toast-progress {
  background: #facc15;
}

.toast-info {
  background: rgba(4, 16, 24, 0.88);
  border-color: rgba(15, 164, 245, 0.3);
}
.toast-info .toast-icon {
  background: rgba(15, 164, 245, 0.12);
  color: var(--accent);
}
.toast-info .toast-progress {
  background: var(--accent);
}

/* ---- Quill Editor Overrides ---- */
.ql-toolbar.ql-snow {
  border: 1px solid var(--panel-border) !important;
  background: #18181b !important;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.ql-container.ql-snow {
  border: 1px solid var(--panel-border) !important;
  border-top: none !important;
  background: rgba(255, 255, 255, 0.01) !important;
  color: var(--text) !important;
  font-family: 'Outfit', sans-serif !important;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  min-height: 140px;
}
.ql-snow .ql-stroke {
  stroke: var(--muted) !important;
}
.ql-snow .ql-fill {
  fill: var(--muted) !important;
}
.ql-snow .ql-picker {
  color: var(--muted) !important;
}
.ql-snow .ql-picker-options {
  background-color: #18181b !important;
  border-color: var(--panel-border) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important;
}
.ql-snow .ql-picker-item:hover, .ql-snow .ql-picker-item.ql-selected {
  color: var(--accent) !important;
}
.ql-snow.ql-toolbar button:hover .ql-stroke, 
.ql-snow.ql-toolbar button.ql-active .ql-stroke {
  stroke: var(--accent) !important;
}
.ql-snow.ql-toolbar button:hover .ql-fill, 
.ql-snow.ql-toolbar button.ql-active .ql-fill {
  fill: var(--accent) !important;
}

/* ---- Fix font for brand name (numbers distortion) ---- */
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

/* ---- Posted Label on Calendar ---- */
.day-btn.day-posted {
  flex-direction: column;
  gap: 1px;
  padding-top: 4px;
  padding-bottom: 2px;
}
.day-posted-label {
  display: block;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--accent);
  line-height: 1;
  margin-top: 1px;
}

/* ---- Star Rating Input ---- */
.stars-input {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
}
.star-btn {
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
  display: flex;
  align-items: center;
}
.star-btn:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* ---- Review Prompt / Badges ---- */
.review-prompt {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--panel-border);
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: rgba(15, 164, 245, 0.08);
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-review:hover {
  background: rgba(15, 164, 245, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 164, 245, 0.2);
}
.btn-review.small {
  padding: 6px 14px;
  font-size: 12px;
  margin-top: 8px;
}
.review-sent-badge {
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(15, 164, 245, 0.06);
  border: 1px solid rgba(15, 164, 245, 0.15);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-approved-badge {
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.15);
  color: var(--ok);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-rejected-badge {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: var(--danger);
  font-size: 13px;
  display: grid;
  gap: 6px;
}
.review-rejected-badge .admin-msg {
  color: var(--muted);
  font-style: italic;
  font-size: 12px;
}
.posted-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(15, 164, 245, 0.1);
  border: 1px solid rgba(15, 164, 245, 0.2);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 6px;
}
.discount-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.08), rgba(15, 164, 245, 0.06));
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: var(--ok);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  animation: pulseGlow 2s infinite;
}

/* ---- Public Reviews Grid ---- */
.reviews-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.review-card {
  padding: 20px 22px !important;
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #0072ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #0B0B0D;
  flex-shrink: 0;
}
.review-user-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.review-server-name {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.review-body {
  display: grid;
  gap: 8px;
}
.review-section {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
}
.review-section.pro {
  background: rgba(74, 222, 128, 0.04);
  border: 1px solid rgba(74, 222, 128, 0.12);
}
.review-section.contra {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.12);
}
.review-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.review-section.pro .review-section-label { color: var(--ok); }
.review-section.contra .review-section-label { color: var(--danger); }
.review-date {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  text-align: right;
}

/* ---- Media Query for Mobile Header Buttons ---- */
@media (max-width: 600px) {
  header {
    padding: 16px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  
  .brand {
    text-align: center;
    justify-content: center;
  }
  
  .header-right {
    width: 100%;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
  }
  
  .mode-switch {
    padding: 3px;
    gap: 4px;
    flex-shrink: 0;
  }
  
  .tab {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 8px;
    white-space: nowrap;
  }
  
  .auth-area {
    gap: 6px;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
  
  .auth-btn {
    padding: 7px 10px;
    font-size: 11px;
    border-radius: 9px;
    white-space: nowrap;
  }
  
  .auth-user {
    padding: 0 4px;
    font-size: 11px;
    gap: 6px;
  }

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

/* ---- Admin Day Popover ---- */
.admin-day-popover {
  position: absolute;
  z-index: 1000;
  background: rgba(15, 15, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: popoverIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes popoverIn {
  from {
    opacity: 0;
    transform: translateY(4px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.admin-popover-btn {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-popover-btn.btn-postat {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(15, 164, 245, 0.3);
}

.admin-popover-btn.btn-postat:hover {
  background: var(--accent);
  color: #0B0B0D;
}

.admin-popover-btn.btn-anulat {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border-color: rgba(239, 68, 68, 0.3);
}

.admin-popover-btn.btn-anulat:hover {
  background: var(--danger);
  color: #0B0B0D;
}

/* Arrow pointing down */
.admin-day-popover::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: rgba(15, 15, 18, 0.95) transparent transparent;
  display: block;
  width: 0;
}

.day-btn.cancelled {
  background: repeating-linear-gradient(-45deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.08) 5px, rgba(239, 68, 68, 0.15) 5px, rgba(239, 68, 68, 0.15) 10px) !important;
  border-color: rgba(239, 68, 68, 0.4) !important;
  color: rgba(239, 68, 68, 0.7) !important;
  cursor: not-allowed;
}

.day-btn.cancelled .day-posted-label {
  color: var(--danger) !important;
  font-weight: 700;
  text-shadow: 0 0 6px rgba(239, 68, 68, 0.3);
}

.day-btn.cancelled::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  bottom: 6px;
  box-shadow: 0 0 8px #ef4444;
}

/* ---- App loading overlay ---- */
#app-loading {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0B0B0D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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