/* ===== CSS Variables / Design System ===== */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(210, 50%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(210, 50%, 15%);
  --primary: hsl(200, 80%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(180, 60%, 40%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(200, 30%, 85%);
  --muted-foreground: hsl(210, 30%, 40%);
  --accent: hsl(45, 100%, 55%);
  --accent-foreground: hsl(210, 50%, 15%);
  --destructive: hsl(0, 72%, 50%);
  --border: hsl(200, 30%, 80%);
  --radius: 1rem;
  --font-sans: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dark {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(210, 50%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(210, 50%, 15%);
  --primary: hsl(200, 80%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(180, 50%, 35%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(200, 30%, 85%);
  --muted-foreground: hsl(210, 30%, 40%);
  --accent: hsl(45, 100%, 50%);
  --accent-foreground: hsl(210, 50%, 15%);
  --border: hsl(200, 30%, 80%);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

#app {
  min-height: 100vh;
  position: relative;
}

/* ===== Animated Background ===== */
.animated-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: hsl(0, 0%, 100%);
}

.main-content {
  position: relative;
  z-index: 10;
}

/* ===== Container ===== */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 800px;
}

/* ===== Header ===== */
.header {
  padding: 2rem 1rem;
  position: relative;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.header-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--foreground);
  text-shadow: none;
}

.fish-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.bounce {
  animation: bounce 1s infinite;
}

.bounce.delay {
  animation-delay: 0.2s;
}

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

/* Theme Toggle */
.theme-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.theme-toggle:hover {
  background: var(--border);
  transform: scale(1.1);
}

.theme-toggle .icon {
  width: 20px;
  height: 20px;
  color: var(--foreground);
}

.theme-toggle .moon-icon { display: none; }
.dark .theme-toggle .sun-icon { display: none; }
.dark .theme-toggle .moon-icon { display: block; }

/* ===== Game Section ===== */
.game-section {
  padding: 1.5rem 1rem;
}

.game-wrapper {
  max-width: 1024px;
  margin: 0 auto;
}

.game-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: hsl(0, 0%, 100%);
  border: 1px solid var(--border);
}

.game-container iframe {
  width: 100%;
  aspect-ratio: 4/3;
  border: none;
  display: block;
}

@media (min-width: 768px) {
  .game-container iframe {
    aspect-ratio: 16/9;
  }
}

/* Loading Screen */
.loading-screen {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0, 0%, 100%);
  z-index: 20;
  transition: opacity 0.3s;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  padding: 1.5rem;
}

.loading-thumbnail {
  width: 96px;
  height: 96px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 2px solid rgba(255,200,50,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.loading-title {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: bold;
  font-style: italic;
}

.progress-container {
  width: 100%;
  height: 12px;
  background: var(--muted);
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid rgba(255,200,50,0.2);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9999px;
  transition: width 0.3s ease-out;
}

.loading-text {
  color: rgba(255,200,50,0.7);
  font-size: 0.875rem;
}

/* Top Control */
.top-control {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}

.control-btn {
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}

.control-btn:hover {
  background: rgba(0,0,0,0.7);
  transform: scale(1.05);
}

.control-btn .icon {
  width: 18px;
  height: 18px;
  color: white;
}

.control-btn .volume-off { display: none; }
.control-btn.muted .volume-on { display: none; }
.control-btn.muted .volume-off { display: block; }

/* Bottom Toolbar */
.bottom-toolbar {
  background: rgb(0 0 0);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,200,50,0.2);
  padding: 0.75rem 1rem;
}

.toolbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Game Branding */
.game-branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.2;
}

.brand-author {
  color: rgba(255,200,50,0.5);
  font-size: 0.75rem;
  line-height: 1.2;
}

/* Toolbar Actions */
.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.action-btn:hover {
  background: rgba(255,255,255,0.2);
}

.action-btn .icon {
  width: 16px;
  height: 16px;
}

.action-btn .btn-text {
  display: none;
}

@media (min-width: 640px) {
  .action-btn .btn-text {
    display: inline;
  }
}

.action-btn .minimize { display: none; }
.game-container.fullscreen .action-btn .maximize { display: none; }
.game-container.fullscreen .action-btn .minimize { display: block; }

/* Share Dropdown */
.share-dropdown {
  position: relative;
}

.share-menu {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30,40,60,0.95);
  border: 1px solid rgba(255,200,50,0.2);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 180px;
  display: none;
  margin-bottom: 8px;
  backdrop-filter: blur(12px);
  z-index: 50;
}

.share-menu.open {
  display: block;
}

.share-item {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: none;
  border: none;
  color: white;
  text-align: left;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.share-item:hover {
  background: rgba(255,255,255,0.1);
}

.share-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0.25rem 0;
}

/* Rating */
.rating-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
}

.star-btn {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  transition: transform 0.2s;
}

.star-btn:hover {
  transform: scale(1.1);
}

.star-btn svg {
  width: 20px;
  height: 20px;
  fill: rgba(255,200,50,0.3);
  color: rgba(255,200,50,0.3);
  transition: all 0.2s;
}

.star-btn.active svg,
.star-btn.hover svg {
  fill: var(--accent);
  color: var(--accent);
}

.rating-text {
  color: rgba(255,200,50,0.7);
  font-size: 0.875rem;
  display: none;
}

@media (min-width: 768px) {
  .rating-text {
    display: inline;
  }
}

.pro-tip {
  text-align: center;
  color: rgba(255,200,50,0.7);
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* ===== Sections ===== */
.controls-section,
.info-section,
.article-section,
.comments-section,
.faq-section {
  padding: 3rem 1rem;
  position: relative;
  z-index: 10;
}

/* ===== Article ===== */
.game-article {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.dark .game-article {
  background: rgba(30,40,60,0.95);
}

.game-article h2 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.game-article h2:not(:first-child) {
  margin-top: 2rem;
}

.game-article h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin: 1.5rem 0 0.75rem;
}

.game-article p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.game-article ul {
  list-style: none;
  margin-bottom: 1rem;
}

.game-article li {
  color: var(--muted-foreground);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.game-article li::before {
  content: "🎣";
  position: absolute;
  left: 0;
}

.game-article strong {
  color: var(--foreground);
}

/* ===== Comment Actions ===== */
.comment-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.vote-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.625rem;
  background: rgba(0,150,200,0.1);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.vote-btn:hover {
  background: rgba(0,150,200,0.2);
}

.vote-btn.like-btn.active {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  color: #10b981;
}

.vote-btn.dislike-btn.active {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #ef4444;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Cards ===== */
.card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
}

.dark .card {
  background: rgba(30,40,60,0.95);
}

.card-header {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-align: center;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  padding: 1.25rem 1.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== Controls Grid ===== */
.controls-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
}

@media (min-width: 640px) {
  .controls-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .controls-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.control-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(var(--primary), 0.05), rgba(var(--secondary), 0.05));
  background: rgba(0,150,200,0.05);
  transition: all 0.3s;
}

.control-item:hover {
  background: rgba(0,150,200,0.1);
}

.control-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 15px rgba(0,150,200,0.3);
}

.control-step {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.control-item h4 {
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.control-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.dark .feature-card {
  background: rgba(30,40,60,0.95);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 15px rgba(0,150,200,0.3);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Tips Grid ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.95);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.dark .tip-item {
  background: rgba(30,40,60,0.95);
}

.tip-item:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.tip-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,150,200,0.3);
}

.tip-content h4 {
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.tip-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Stats Grid ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 4rem auto 0;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255,255,255,0.95);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.dark .stat-item {
  background: rgba(30,40,60,0.95);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* ===== Comments ===== */
.comment-form-card {
  margin-bottom: 1.5rem;
}

.comment-form-card form {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-form-card input,
.comment-form-card textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  font-size: 0.875rem;
  resize: none;
}

.comment-form-card input:focus,
.comment-form-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,150,200,0.2);
}

.primary-btn {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
}

.primary-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.dark .comment-card {
  background: rgba(30,40,60,0.95);
}

.comment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.comment-user {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comment-avatar svg {
  width: 20px;
  height: 20px;
  color: white;
}

.comment-info {
  flex: 1;
  min-width: 0;
}

.comment-name {
  font-weight: 600;
  color: var(--foreground);
}

.comment-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.comment-message {
  margin-top: 0.25rem;
  color: var(--foreground);
  opacity: 0.8;
  word-wrap: break-word;
}

.delete-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--muted-foreground);
  border-radius: 0.25rem;
  transition: all 0.2s;
}

.delete-btn:hover {
  color: var(--destructive);
  background: rgba(255,0,0,0.1);
}

.delete-btn svg {
  width: 16px;
  height: 16px;
}

.empty-comments {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--muted-foreground);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.dark .empty-comments {
  background: rgba(30,40,60,0.95);
}

.empty-comments svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  opacity: 0.5;
}

/* ===== Accordion / FAQ ===== */
.accordion {
  padding: 0 1.5rem 1.5rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.accordion-trigger:hover {
  color: var(--primary);
}

.accordion-trigger svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-item.open .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 1rem;
  background: hsl(0, 0%, 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  opacity: 0.8;
}

.footer-text {
  color: var(--foreground);
  font-size: 0.875rem;
}

.footer-copyright {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* ===== Toast ===== */
#toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 350px;
  animation: slideIn 0.3s ease-out;
}

.toast.destructive {
  background: var(--destructive);
  color: white;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  opacity: 0.9;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .header-title {
    font-size: 1.75rem;
  }
  
  .fish-icon {
    font-size: 1.75rem;
  }
  
  .toolbar-content {
    justify-content: center;
  }
  
  .game-branding,
  .rating-container {
    display: none;
  }
}
