:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --radius-sm: .375rem;
  --radius-md: .5rem;
  --radius-lg: .75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --color-bg: #09080c;
  --color-surface: #0f0d14;
  --color-surface-2: #14111c;
  --color-surface-offset: #1a1724;
  --color-divider: rgba(245, 166, 35, 0.07);
  --color-text: #e8e4d8;
  --color-text-muted: #a09880;
  --color-text-faint: #5a5548;
  --color-corona: #f5a623;
  --color-sun-core: #fff8e8;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
  --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.15), 0 0 80px rgba(245, 166, 35, 0.06);
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(245, 166, 35, .07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(245, 166, 35, .03) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-12) var(--space-4) var(--space-20);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 20% 15%, rgba(255, 255, 255, .4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 8%, rgba(255, 255, 255, .5) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 25%, rgba(255, 255, 255, .3) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 40%, rgba(255, 255, 255, .2) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 65%, rgba(255, 255, 255, .35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 70%, rgba(255, 255, 255, .4) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 85%, rgba(255, 255, 255, .25) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 55%, rgba(255, 255, 255, .3) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 90%, rgba(255, 255, 255, .2) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 30%, rgba(255, 255, 255, .35) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 75%, rgba(255, 255, 255, .2) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 45%, rgba(255, 255, 255, .3) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 50%, rgba(255, 255, 255, .25) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 12%, rgba(255, 255, 255, .4) 0%, transparent 100%);
}
.eclipse-hero {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: var(--space-6);
  flex-shrink: 0;
}
.eclipse-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(245, 166, 35, .35)) drop-shadow(0 0 60px rgba(245, 166, 35, .15));
}
@keyframes corona-pulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
@keyframes corona-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes shimmer-ring {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}
.corona-group {
  animation: corona-pulse 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  transform-origin: 110px 110px;
}
.corona-rays {
  animation: corona-rotate 120s linear infinite;
  transform-origin: 110px 110px;
  opacity: .4;
}
.eclipse-ring {
  animation: shimmer-ring 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.page-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: var(--space-10);
  max-width: 640px;
  width: 100%;
  padding: 0 var(--space-4);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-sun-core);
  text-shadow: 0 0 30px rgba(245, 166, 35, .6), 0 0 60px rgba(245, 166, 35, .2);
  line-height: 1.2;
  margin-bottom: var(--space-3);
  word-break: break-word;
}
.page-header p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 300;
}
.progress-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 0 var(--space-2);
}
.progress-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.progress-track {
  flex: 1;
  height: 3px;
  background: var(--color-surface-offset);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-corona) 0%, #ffd97d 100%);
  border-radius: var(--radius-full);
  transition: width 600ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px rgba(245, 166, 35, .6);
  width: 0%;
}
.progress-count {
  font-size: var(--text-xs);
  color: var(--color-corona);
  font-family: var(--font-display);
  letter-spacing: .05em;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 60px;
  text-align: right;
}
.table-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 166, 35, .12);
  box-shadow: var(--shadow-glow), 0 0 0 1px rgba(245, 166, 35, .04) inset;
  overflow: hidden;
}
.table-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 166, 35, .4) 50%, transparent 100%);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.schedule-table thead th {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-corona);
  padding: var(--space-4) var(--space-6);
  text-align: left;
  background: var(--color-surface-2);
  border-bottom: 1px solid rgba(245, 166, 35, .15);
  font-weight: 600;
  word-break: break-word;
  white-space: normal;
}
.schedule-table thead th:first-child {
  padding-left: var(--space-5);
}
.schedule-table thead th.col-check {
  width: auto;
  min-width: 72px;
  text-align: center;
  white-space: nowrap;
}
.schedule-row {
  position: relative;
  border-bottom: 1px solid var(--color-divider);
  transition: background var(--transition-interactive), opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.schedule-row:last-child {
  border-bottom: none;
}
.schedule-row:hover:not(.row-done) {
  background: rgba(245, 166, 35, .04);
}
.schedule-row.row-done {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
}
.schedule-row td {
  padding: var(--space-4) var(--space-6);
  vertical-align: middle;
  white-space: normal;
  word-break: break-word;
}
.schedule-row td:first-child {
  padding-left: var(--space-5);
}
.col-check-cell {
  text-align: center;
  padding: var(--space-4) var(--space-4) !important;
  width: 52px;
}
.eclipse-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(245, 166, 35, .3);
  background: transparent;
  cursor: pointer;
  position: relative;
  display: block;
  margin: 0 auto;
  transition: border-color var(--transition-interactive), background var(--transition-interactive), box-shadow var(--transition-interactive), transform 150ms cubic-bezier(0.16, 1, 0.3, 1);
}
.eclipse-checkbox:hover {
  border-color: var(--color-corona);
  box-shadow: 0 0 12px rgba(245, 166, 35, .3);
  transform: scale(1.1);
}
.eclipse-checkbox:active {
  transform: scale(0.95);
}
.eclipse-checkbox:checked {
  background: var(--color-corona);
  border-color: var(--color-corona);
  box-shadow: 0 0 16px rgba(245, 166, 35, .5);
}
.eclipse-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--color-bg);
  border-radius: var(--radius-full);
  box-shadow: 0 0 6px rgba(245, 166, 35, .4);
}
.cell-time {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--color-corona);
  letter-spacing: .06em;
  white-space: normal;
  font-weight: 500;
  opacity: .85;
}
.cell-activity {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  white-space: normal;
}
.cell-duration {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: .04em;
}
.duration-badge {
  display: inline-block;
  padding: 2px var(--space-2);
  border-radius: var(--radius-full);
  background: rgba(245, 166, 35, .08);
  border: 1px solid rgba(245, 166, 35, .12);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: .03em;
}
.cell-details {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  font-weight: 300;
}
.details-input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(245, 166, 35, .18);
  border-radius: var(--radius-sm);
  padding: .65rem .75rem;
  background: rgba(255, 255, 255, .04);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.4;
  outline: none;
}
.details-input::placeholder {
  color: rgba(224, 200, 132, .7);
}
.details-input:focus {
  border-color: rgba(245, 166, 35, .5);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, .08);
}
.all-done {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, .12) 0%, rgba(9, 8, 12, .95) 60%);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.all-done.visible {
  opacity: 1;
  pointer-events: all;
}
.all-done h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-sun-core);
  text-shadow: 0 0 40px rgba(245, 166, 35, .7), 0 0 80px rgba(245, 166, 35, .3);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  animation: done-glow 2s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}
.all-done p {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
}
.reset-btn {
  margin-top: var(--space-8);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid rgba(245, 166, 35, .4);
  color: var(--color-corona);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.reset-btn:hover {
  background: rgba(245, 166, 35, .1);
  border-color: var(--color-corona);
  box-shadow: 0 0 20px rgba(245, 166, 35, .2);
}
.reset-btn:active {
  transform: scale(0.97);
}
@keyframes done-glow {
  from { text-shadow: 0 0 30px rgba(245, 166, 35, .5), 0 0 60px rgba(245, 166, 35, .2); }
  to { text-shadow: 0 0 50px rgba(245, 166, 35, .8), 0 0 100px rgba(245, 166, 35, .4); }
}
@keyframes ripple-out {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(3.5); opacity: 0; }
}
.check-ripple {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245, 166, 35, .4);
  pointer-events: none;
  animation: ripple-out 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 101;
  animation: particle-fall linear forwards;
}
@keyframes particle-fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
.page-footer {
  position: relative;
  z-index: 1;
  margin-top: var(--space-8);
  text-align: center;
  width: 100%;
  max-width: 760px;
  padding: 0 var(--space-2);
}
.page-footer p {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: .15em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  body { padding: var(--space-10) var(--space-3) var(--space-16); }
  .progress-container { gap: var(--space-3); flex-wrap: wrap; justify-content: space-between; }
  .progress-count { text-align: left; width: 100%; }
}
@media (max-width: 640px) {
  .schedule-table { min-width: 100%; }
  .schedule-table thead th.col-duration,
  .schedule-row td.cell-duration,
  .schedule-table thead th.col-details,
  .schedule-row td.cell-details {
    display: none;
  }
  .cell-time { min-width: 90px; }
  .cell-activity { min-width: 110px; white-space: normal; }
  .table-container { border-radius: var(--radius-lg); }
  .eclipse-hero { width: 150px; height: 150px; }
  .schedule-row td { padding: var(--space-3) var(--space-4); }
  .page-header { margin-bottom: var(--space-8); }
}
@media (max-width: 520px) {
  .page-header h1 { font-size: 1.75rem; }
  .page-header p { font-size: .9rem; }
  .eclipse-hero { width: 130px; height: 130px; }
  .progress-count { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
