* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #1a1d29;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(196, 181, 253, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  max-width: 980px;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
}
.container::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(196, 181, 253, 0.1));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.container:hover {
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(167, 139, 250, 0.18);
}
.container:hover::before {
  opacity: 1;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: -0.02em;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
  border-radius: 2px;
}

h4 {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
  color: #6b7280;
}
h4 span {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.8125rem;
  transition: all 0.2s ease;
  display: inline-block;
  border: 1px solid transparent;
}
h4 span:first-child {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.15);
}
h4 span:last-child {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #dc2626;
  border-color: rgba(239, 68, 68, 0.15);
}
h4 span:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

canvas {
  display: block;
  margin: 0 auto 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(139, 92, 246, 0.04), 0 1px 3px rgba(0, 0, 0, 0.03);
  background: #ffffff;
  border: 1px solid rgba(167, 139, 250, 0.1);
  transition: all 0.2s ease;
  position: relative;
}
canvas::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: -1;
}
canvas:hover {
  border-color: rgba(167, 139, 250, 0.2);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}
canvas:hover::before {
  opacity: 1;
}

.footer-link {
  text-align: center;
}

a {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-block;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(167, 139, 250, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.15);
  position: relative;
  overflow: hidden;
}
a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(167, 139, 250, 0.08));
  opacity: 0;
  transition: opacity 0.2s ease;
}
a:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(167, 139, 250, 0.08));
  border-color: rgba(139, 92, 246, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}
a:hover::before {
  opacity: 1;
}
a:active {
  transform: translateY(0);
}/*# sourceMappingURL=calendar.css.map */