@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700&display=swap');

.font-kids {
  font-family: 'Fredoka One', cursive;
}

.font-body {
  font-family: 'Nunito', sans-serif;
}

.admin-shell {
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 45%, #fdf2f8 100%);
}

.public-shell {
  background: linear-gradient(135deg, #f3e8ff 0%, #ffe4f1 55%, #fff6d8 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.soft-orb {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.page-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.soft-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
}

.guide-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.icon-bubble {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4ff, #fff1f7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.top-player {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.rank-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  color: #7c3aed;
}

.game-panel {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.stat-chip {
  min-width: 88px;
  border-radius: 1.1rem;
  background: #f8fafc;
  padding: 0.8rem 1rem;
  text-align: center;
}

@media (max-width: 640px) {
  .hero-pill {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
  }

  .stat-chip {
    min-width: 0;
    width: 100%;
  }

  .icon-bubble {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
  }
}
