:root {
  --blue: #385384;
  --pink: #FF228B;
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-hover: #F7F9FC;
  --border: #E9E7E1;
  --text-primary: #161614;
  --text-secondary: #6B6B66;
  --text-muted: #9C9C96;
}

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

html {
  background: var(--bg);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 24px 56px;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
}

.mascot {
  position: relative;
  width: 100px;
  height: 130px;
  margin: 0 auto 20px;
  animation: bounce 2.4s ease-in-out infinite;
}

.mascot-shadow {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 8px;
  background: var(--blue);
  opacity: 0.1;
  border-radius: 50%;
  animation: shadow 1.8s ease-in-out infinite;
}

.mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.bubble {
  position: absolute;
  top: -6px;
  right: -58px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(22, 22, 20, 0.06);
}

.bubble::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 18px;
  width: 10px;
  height: 10px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--d) * 0.08s);
}

.greeting {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 12px;
}

.headline {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.accent-line {
  width: 32px;
  height: 3px;
  background: var(--pink);
  margin: 16px auto 0;
  border-radius: 2px;
  animation: pulseWidth 2.4s ease-in-out infinite;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.row {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: var(--surface-hover);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
}

.row:hover {
  border-color: var(--blue);
  background: var(--surface);
  transform: translateX(6px) scale(1.01);
  box-shadow: 0 8px 20px rgba(56, 83, 132, 0.10);
}

.row:active {
  transform: translateX(6px) scale(0.99);
}

.row-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.row-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 500;
}

.row-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.row-arrow {
  font-size: 18px;
  color: var(--text-muted);
  display: inline-block;
  transition: color 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.row:hover .row-arrow {
  color: var(--pink);
  transform: translateX(6px);
}

.footer {
  text-align: center;
  margin-top: 40px;
}

.clock {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.site-url {
  font-size: 11px;
  color: var(--text-muted);
}

@keyframes bounce {
  0% {
    transform: translate(0, 0) rotate(-8deg) scale(1);
  }
  15% {
    transform: translate(-6px, -18px) rotate(-14deg) scale(1.03, 0.97);
  }
  30% {
    transform: translate(-10px, 0) rotate(-4deg) scale(0.97, 1.04);
  }
  45% {
    transform: translate(-4px, -22px) rotate(6deg) scale(1.03, 0.97);
  }
  50% {
    transform: translate(0, 0) rotate(0deg) scale(0.97, 1.04);
  }
  65% {
    transform: translate(6px, -18px) rotate(14deg) scale(1.03, 0.97);
  }
  80% {
    transform: translate(10px, 0) rotate(4deg) scale(0.97, 1.04);
  }
  92% {
    transform: translate(4px, -14px) rotate(-6deg) scale(1.02, 0.98);
  }
  100% {
    transform: translate(0, 0) rotate(-8deg) scale(1);
  }
}

@keyframes shadow {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.1;
  }
  15%, 45%, 65%, 92% {
    transform: translateX(-50%) scale(0.6);
    opacity: 0.05;
  }
  30%, 50%, 80%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.1;
  }
}

@keyframes pulseWidth {
  0%, 100% {
    width: 32px;
    opacity: 1;
  }
  50% {
    width: 48px;
    opacity: 0.7;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  body {
    padding: 48px 20px 40px;
  }
  .row {
    padding: 18px 18px;
  }
}