body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffd6e7;
  font-family: 'Fredoka', sans-serif;
  cursor: url("levi_cursor.png") 16 16, auto;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
}

.navbar a {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.25);
  color: #ff69b4;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.navbar a:hover {
  transform: scale(1.08);
  background: white;
  color: #ff4fa3;
}

a,
button {
  cursor: url("sword_cursor.png") 16 16, pointer;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  text-align: center;
  width: 100%;
}

h1 {
  color: white;
  font-size: 4rem;
  text-shadow: 2px 2px 5px rgba(236, 92, 152, 0.379);
  margin-bottom: 25px;
}

.mimi-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mimi-section img {
  width: 280px;
  border-radius: 20px;
}

.speech-bubble {
  background: white;
  color: #ff69b4;
  padding: 20px;
  border-radius: 25px;
  font-size: 1.5rem;
  max-width: 250px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

.bubble-text {
  margin-bottom: 10px;
}

.bubble-heart {
  font-size: 1.6rem;
  line-height: 1;
}

.page-card {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  color: #ff69b4;
  padding: 35px;
  border-radius: 30px;
  max-width: 700px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  line-height: 1.8;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 15px;
}

.social-links a {
  text-decoration: none;
  background: rgba(255,255,255,0.8);
  color: #ff69b4;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 1.15rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.social-links a:hover {
  transform: scale(1.04);
  background: white;
  color: #ff4fa3;
}

.army-status-bottom {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(233, 44, 110, 0.448);
  color: white;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  white-space: nowrap;
  z-index: 10;
  animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {

  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translateX(-50%) scale(1.04);
    opacity: 1;
  }
}

.heart {
  position: absolute;
  bottom: -50px;
  color: white;
  font-size: 35px;
  animation: floatUp 6s linear infinite;
  opacity: 0.7;
}

@keyframes floatUp {

  0% {
    transform: translateY(0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateY(-110vh);
    opacity: 0;
  }
}

.sparkle {
  position: absolute;
  color: white;
  font-size: 22px;
  animation: twinkle 3s infinite;
  opacity: 0.8;
}

@keyframes twinkle {

  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

.cursor-glitter {
  position: absolute;
  pointer-events: none;
  font-size: 14px;
  animation: glitterFade 0.8s linear forwards;
  z-index: 9999;
}

@keyframes glitterFade {

  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-15px) scale(0.5);
  }
}

.mikasa-gif {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 120px;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 768px) {

  body {
    padding: 20px;
    overflow-y: auto;
  }

  .navbar {
    top: 10px;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    width: 95%;
  }

  .navbar a {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  h1 {
    font-size: 2.5rem;
    margin-top: 100px;
  }

  .mimi-section {
    flex-direction: column;
  }

  .mimi-section img {
    width: 220px;
  }

  .speech-bubble {
    font-size: 1.2rem;
  }

  .speech-bubble::after {
    display: none;
  }

  .page-card {
    width: 90%;
    padding: 25px;
    font-size: 1rem;
  }

  .mikasa-gif {
    width: 85px;
    bottom: 10px;
    right: 10px;
  }

  .gallery {
    grid-template-columns: 1fr;
    width: 95%;
  }
}