/* GLOBAL MIKU THEME STYLING */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Helvetica, sans-serif;
  background: linear-gradient(to bottom, #e0f7fa, #ffffff);
  color: #1b1b1b;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}

.container {
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: #17bebb;
  margin-bottom: 2rem;
}
h2 {
  font-size: 2rem;
  color: #17bebb;
  margin-bottom: 2rem;
}

.featured {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.character {
  background: #f4faff;
  border-left: 5px solid #9be7f4;
  border-radius: 10px;
  padding: 1rem;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: transform 0.2s ease;
}

.character:hover {
  transform: scale(1.03);
}

.character img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.image-label {
  font-style: italic;
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.4rem;
}

.character a {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #146a7c;
  text-decoration: none;
  font-size: 1.1rem;
}

.character a:hover {
  color: #0097a7;
  text-decoration: underline;
}

nav {
  margin-top: 2rem;
}

nav a {
  margin: 0 1rem;
  padding: 0.6rem 1rem;
  background-color: #cbf1ff;
  color: #146a7c;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

nav a:hover {
  background-color: #a3e8fa;
}
