body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to right, #e0f7fa, #e1bee7);
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 900px;
  margin: 3em auto;
  padding: 2em;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-align: center;
}

h1 {
  margin-bottom: 0.2em;
  font-size: 2.5em;
  color: #222;
}

.intro {
  color: #555;
  margin-bottom: 2em;
  font-size: 1.1em;
}

.day-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 1.2em;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-items: center;
}

.day-list li {
  width: 100%;
}

.day-list a {
  display: block;
  padding: 1em;
  background: linear-gradient(135deg, #42a5f5, #478ed1);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.day-list a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #1976d2, #1565c0);
}
