:root {
  color: #0a1929;
  background-color: skyblue;
  --bg-color: skyblue;
  --accent-color: #ffe850;
  --text-color: #0a1929;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  background: skyblue;
  background-image:
    url('/images/marshmallow-icon.png'),
    url('/images/marshmallow-icon.png'),
    url('/images/marshmallow-icon.png'),
    url('/images/marshmallow-icon.png');
  background-position: top left, top right, bottom left, bottom right;
  background-repeat: no-repeat;
  background-size: 80px 80px;
  font-size: 1.5rem;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #003d80;
  color: #ffe850;
  padding: 3rem 1.5rem 4rem;
  box-sizing: border-box;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.6rem, 7.5vw, 6rem);
}

/* Title icon - appears on left side of every title */
.title-icon {
  width: 200px;
  height: auto;
  margin-right: 1.5rem;
  vertical-align: middle;
  display: inline-block;
}

/* Title icon - appears on right side of every title */
.title-icon-right {
  width: 200px;
  height: auto;
  margin-left: 1.5rem;
  vertical-align: middle;
  display: inline-block;
}

h1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

p,
li {
  font-size: 1.5rem;
}

.settings-gear {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  z-index: 10000;
}

.settings-gear:hover {
  transform: rotate(90deg);
}

/* Flying Marshmallow */
.flying-marshmallow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.flying-marshmallow.active {
  opacity: 1;
}

.flying-marshmallow-img {
  width: 80px;
  height: auto;
  animation: wingFlap 0.3s ease-in-out infinite;
}

@keyframes wingFlap {
  0%, 100% {
    transform: rotate(-10deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-10px);
  }
}

/* Corner Marshmallows */
.corner-marshmallow {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
}

.corner-marshmallow-img {
  width: 100px;
  height: auto;
}

.top-left {
  top: 80px;
  left: 20px;
}

.top-right {
  top: 80px;
  right: 20px;
}

.bottom-left {
  bottom: 20px;
  left: 20px;
}

.bottom-right {
  bottom: 20px;
  right: 20px;
}

/* Marshmallowverse image and text box */
.marshmallowverse-image-container {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

.marshmallowverse-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
}

.marshmallowverse-text-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid #001a33;
}

.marshmallowverse-text-box p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #001a33;
}

/* Scattered decoration marshmallows */
.deco-marshmallow {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  opacity: 0.6;
}

.deco-marshmallow-img {
  width: 60px;
  height: auto;
}

.deco-marshmallow.flipped {
  transform: scaleX(-1);
}

.deco-container {
  position: relative;
  width: 100%;
}

/* Disable interaction with decorations */
.deco-marshmallow {
  pointer-events: none !important;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Hide search section for now */
.search-section {
  display: none !important;
}

/* Visible page decorations (positioned in content area, not title box) */
.page-deco {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  opacity: 0.7;
}

.page-deco-img {
  width: 50px;
  height: auto;
}

.page-deco.flipped {
  transform: scaleX(-1);
}

code {
  background: rgba(255, 255, 255, 0.7);
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
}

.video-title {
  font-size: clamp(6.75rem, 18vw, 10.5rem);
  margin-bottom: 0.5rem;
}

.back-link {
  display: inline-block;
  color: #ffe850;
  text-decoration: none;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  transition: opacity 0.3s ease;
}

.back-link:hover {
  opacity: 0.8;
}

.back-link-img {
  width: 50px;
  height: 50px;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.back-link:hover .back-link-img {
  opacity: 0.8;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.video-card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 150px;
}

.video-card h3 {
  padding: 1rem;
  margin: 0;
  background-color: #002855;
  color: #ffe850;
  font-size: 1.5rem;
}

/* Character Grid */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.character-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.character-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.character-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.character-card h3 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.character-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cta-button {
  background-color: #002855;
  color: #ffe850;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  animation: color-change 5s infinite;
  font-size: 4.5rem;
}

.cta-button:hover {
  background-color: #ffe850;
  color: #001a33;
}

@keyframes color-change {
  0% { color: #ffe850; }
  25% { color: #ff6b6b; }
  50% { color: #4ecdc4; }
  75% { color: #45b7d1; }
  100% { color: #ffe850; }
}

.indented-text {
  margin-left: 2rem;
}

.achievement-content {
  padding: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.nav-link {
  color: #ffe850;
  text-decoration: none;
  font-size: 1.2rem;
  animation: color-change 5s infinite;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

.big-button {
  background-color: #002855;
  color: #ffe850;
  padding: 2rem 4rem;
  border-radius: 1rem;
  text-decoration: none;
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 400px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.big-button:hover {
  background-color: #ffe850;
  color: #002855;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Game Styles */
.game-container {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

.game-header h2 {
  font-size: 2.5rem;
  color: #002855;
  margin-bottom: 0.5rem;
}

.game-header p {
  font-size: 1.2rem;
  color: #102a43;
  margin-bottom: 2rem;
}

.score-display {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-label {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.score-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #001a33;
}

.click-area {
  margin: 3rem 0;
}

.click-button {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.click-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.click-button:active {
  transform: scale(0.95);
}

.marshmallow-icon {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.marshmallow-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.click-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.upgrades-container {
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.upgrades-container h3 {
  font-size: 2rem;
  color: #001a33;
  margin-bottom: 1.5rem;
}

.upgrade-button {
  width: 100%;
  padding: 1.5rem;
  margin: 1rem 0;
  border: 2px solid #001a33;
  border-radius: 0.5rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: left;
}

.upgrade-button:hover {
  background: #001a33;
  color: white;
  transform: translateX(10px);
}

.upgrade-button strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.floating-number {
  position: fixed;
  pointer-events: none;
  font-size: 2rem;
  font-weight: bold;
  color: #ffe850;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: float-up 1s ease-out;
  z-index: 1000;
}

@keyframes float-up {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px);
  }
}

.achievement-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ffe850;
  color: #001a33;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: slide-in 0.5s ease-out;
  z-index: 1000;
}

@keyframes slide-in {
  0% {
    transform: translateX(400px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

/* Global Music Toggle Button */
.global-music-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #001a33;
  color: #ffe850;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-music-toggle:hover {
  background: #ffe850;
  color: #001a33;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.global-music-toggle:active {
  transform: scale(0.95);
}

/* Reset Button */
.game-controls {
  margin: 2rem 0;
  text-align: center;
}

.reset-button {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.reset-button:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.reset-button:active {
  transform: translateY(0);
}

/* Games List Page */
.games-list {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

.games-list h2 {
  font-size: 2.5rem;
  color: #001a33;
  margin-bottom: 2rem;
}

.game-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.game-card h3 {
  font-size: 2rem;
  color: #001a33;
  margin-bottom: 1rem;
}

.game-card p {
  font-size: 1.2rem;
  color: #0a1929;
  margin-bottom: 1.5rem;
}

/* Comment Section Styles */
.comments-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comments-section h2 {
  font-size: 2.5rem;
  color: #001a33;
  margin-bottom: 0.5rem;
}

.comments-section p {
  font-size: 1.2rem;
  color: #0a1929;
  margin-bottom: 2rem;
}

.comment-form {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #d9e8f5;
  border-radius: 0.5rem;
}

.comment-form h3 {
  font-size: 1.8rem;
  color: #001a33;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 1.1rem;
  color: #0a1929;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 0.5rem;
  font-family: system-ui, sans-serif;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #001a33;
  box-shadow: 0 0 0 3px rgba(0, 26, 51, 0.1);
}

.submit-comment-btn {
  background: #001a33;
  color: #ffe850;
  padding: 0.75rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-comment-btn:hover {
  background: #ffe850;
  color: #001a33;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.comments-container {
  margin-top: 2rem;
}

.no-comments {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  padding: 2rem;
  font-style: italic;
}

.comment-item {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: #f0f5fa;
  border-radius: 0.5rem;
  border-left: 4px solid #001a33;
}

.main-comment {
  background: #ffffff;
  border-left: 4px solid #001a33;
}

.reply-comment {
  background: #f0f4f8;
  border-left: 4px solid #4ecdc4;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comment-username {
  font-size: 1.2rem;
  font-weight: bold;
  color: #001a33;
}

.comment-date {
  font-size: 0.9rem;
  color: #666;
}

.comment-text {
  font-size: 1.1rem;
  color: #0a1929;
  line-height: 1.6;
  margin-bottom: 1rem;
  white-space: pre-wrap;
}

.reply-btn {
  background: #7eddd6;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reply-btn:hover {
  background: #6bc9d8;
  transform: translateY(-1px);
}

.reply-form {
  margin-top: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
  border: 2px solid #7eddd6;
}

.reply-form .form-group input,
.reply-form .form-group textarea {
  font-size: 0.9rem;
}

.submit-reply-btn {
  background: #7eddd6;
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.submit-reply-btn:hover {
  background: #6bc9d8;
}

.cancel-reply-btn {
  background: #ff6b6b;
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-reply-btn:hover {
  background: #ff5252;
}

.replies-container {
  margin-top: 1rem;
  padding-left: 1.5rem;
  border-left: 2px solid #ddd;
}

.reply-item {
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: #e8f4f8;
  border-radius: 0.25rem;
  border-left: 3px solid #4ecdc4;
}

/* Admin Section Styles */
.admin-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #d9e8f5;
  border-radius: 0.5rem;
  border: 2px solid #001a33;
}

.admin-toggle-btn {
  background: #001a33;
  color: #ffe850;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-toggle-btn:hover {
  background: #ffe850;
  color: #001a33;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.admin-toggle-btn.admin-logged-in {
  background: #7eddd6;
  color: white;
}

.admin-toggle-btn.admin-logged-in:hover {
  background: #6bc9d8;
}

.admin-login-form {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.admin-login-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem;
  font-size: 1rem;
  border: 2px solid #001a33;
  border-radius: 0.5rem;
}

.admin-login-form input:focus {
  outline: none;
  border-color: #7eddd6;
  box-shadow: 0 0 0 3px rgba(126, 221, 214, 0.2);
}

.admin-login-btn {
  background: #7eddd6;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-login-btn:hover {
  background: #6bc9d8;
  transform: translateY(-2px);
}

.admin-cancel-btn {
  background: #ff6b6b;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-cancel-btn:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.delete-btn {
  background: #ff6b6b;
  color: white;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: bold;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}

.delete-btn:hover {
  background: #ff5252;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Search Bar Styles */
.search-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  border: 2px solid #001a33;
  border-radius: 0.5rem;
  font-family: system-ui, sans-serif;
}

.search-input:focus {
  outline: none;
  border-color: #7eddd6;
  box-shadow: 0 0 0 3px rgba(126, 221, 214, 0.2);
}

.search-button {
  background: #001a33;
  color: #ffe850;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-button:hover {
  background: #ffe850;
  color: #001a33;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.search-results {
  margin-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
}

.search-results h3 {
  font-size: 1.5rem;
  color: #001a33;
  margin-bottom: 1rem;
}

.search-result-item {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #f0f5fa;
  border-radius: 0.5rem;
  border-left: 4px solid #001a33;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background: #d9e8f5;
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.result-location {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.location-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: bold;
}

.page-badge {
  background: #001a33;
  color: #ffe850;
}

.type-badge {
  background: #7eddd6;
  color: #001a33;
}

.result-text {
  margin: 0;
  font-size: 1.1rem;
  color: #0a1929;
  line-height: 1.5;
}

.search-highlight {
  background-color: #ffe850;
  color: #001a33;
  padding: 0.1rem 0.2rem;
  border-radius: 0.2rem;
  font-weight: bold;
}

.active-highlight {
  background-color: #ffe850;
  color: #001a33;
  padding: 0.2rem 0.3rem;
  border-radius: 0.3rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 232, 80, 0.5);
  animation: pulse-highlight 1s ease-in-out;
}

@keyframes pulse-highlight {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 232, 80, 0.5); }
  50% { box-shadow: 0 0 20px rgba(255, 232, 80, 0.8); }
}

.no-results {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  padding: 1rem;
  font-style: italic;
}
