/* Carrot Climber - Bunny Styles */
:root {
  /* Thematic CSS Variables */
  --jump-power: #6a00f4; /* Фиолетово-синий (электрик) */
  --root-boost: #ff006e; /* Ярко-розовый (фуксия) */
  --climb-fade: #00cc99; /* Изумрудный (тропический) */
  --bunny-bounce: #ff9e00; /* Апельсиновый (сочный) */
  --carrot-glow: #ff3e41; /* Алый (красный Ferrari) */
  --sky-float: #00b4ff; /* Лазурный (небесный) */
  --grass-hop: #00d166; /* Зелёный (кислотный) */
  --cloud-soft: #f0f8ff; /* Голубовато-белый (AliceBlue) */
  --earth-warm: #b76e79; /* Пыльная роза (розово-коричневый) */
  --shadow-deep: #1a1a2e; /* Тёмно-синий (ночной) */

  /* Typography */
  --font-family-primary: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-family-secondary: "Georgia", "Times New Roman", serif;

  /* Spacing */
  --hop-gap: 1rem;
  --leap-spacing: 2rem;
  --bounce-padding: 1.5rem;
  --climb-margin: 3rem;

  /* Breakpoints */
  --mobile-hop: 360px;
  --tablet-leap: 768px;
  --desktop-bounce: 1280px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  line-height: 1.6;
  color: var(--shadow-deep);
  background: linear-gradient(
    135deg,
    var(--sky-float) 0%,
    var(--cloud-soft) 100%
  );
  min-height: 100vh;
}

/* Container */
.climb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--bounce-padding);
}

/* Header Styles */
.bunny-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-flex {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 1rem;
}

.logo-bounce {
  transition: transform 0.3s ease;
}

.logo-bounce:hover {
  transform: scale(1.05);
}

.carrot-logo {
  text-decoration: none;
  color: var(--jump-power);
  font-weight: bold;
  font-size: 1.5rem;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Navigation */
.hop-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--leap-spacing);
}

.nav-link {
  text-decoration: none;
  color: var(--shadow-deep);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--jump-power);
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.hero-bunny {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

/* Burger Menu */
.burger-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  z-index: 1001;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: var(--shadow-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Cookie Consent Bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--jump-power);
}

.cookie-bar.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem var(--bounce-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text h4 {
  color: var(--jump-power);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.cookie-text p {
  color: var(--shadow-deep);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.accept-btn {
  background: linear-gradient(135deg, var(--jump-power), var(--carrot-glow));
  color: white;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.learn-btn {
  background: rgba(255, 107, 53, 0.1);
  color: var(--jump-power);
  border: 1px solid var(--jump-power);
}

.learn-btn:hover {
  background: var(--jump-power);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .cookie-content {
    padding: 1rem;
  }

  .cookie-text h4 {
    font-size: 1rem;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    max-width: none;
  }
}

/* Main Content */
.hop-main {
  min-height: calc(100vh - 200px);
}

/* Hero Section */
.bunny-hero {
  background: linear-gradient(
    135deg,
    var(--sky-float) 0%,
    var(--bunny-bounce) 50%,
    var(--carrot-glow) 100%
  );
  padding: var(--climb-margin) 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
}

.bunny-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.4)"/></svg>');
  animation: float 6s ease-in-out infinite;
}

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

.carrot-title {
  font-size: 3.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.leap-slogan {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.start-bounce {
  background: var(--jump-power);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.start-bounce:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: #ff5722;
}

/* Hero Image */
.hero-image {
  margin-top: 2rem;
  text-align: center;
}

.bunny-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.bunny-hero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Power Boost Section */
.power-boost {
  padding: var(--climb-margin) 0;
  background: linear-gradient(135deg, var(--cloud-soft) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.power-boost::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,107,53,0.1)"/><circle cx="90" cy="30" r="0.8" fill="rgba(255,107,53,0.1)"/><circle cx="20" cy="80" r="1.2" fill="rgba(255,107,53,0.1)"/><circle cx="80" cy="70" r="0.6" fill="rgba(255,107,53,0.1)"/></svg>');
  animation: float 8s ease-in-out infinite;
}

.boost-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--shadow-deep);
  margin-bottom: var(--leap-spacing);
  position: relative;
  z-index: 1;
}

.boost-intro {
  max-width: 800px;
  margin: 0 auto var(--leap-spacing);
  text-align: center;
  position: relative;
  z-index: 1;
}

.boost-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--shadow-deep);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.boost-description:last-child {
  margin-bottom: 0;
}

.boost-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: var(--leap-spacing);
  justify-content: center;
  position: relative;
  z-index: 1;
}

.boost-item {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  padding: var(--bounce-padding);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.boost-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.boost-item:hover::before {
  left: 100%;
}

.boost-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--jump-power);
}

.boost-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.boost-item:hover .boost-icon {
  transform: scale(1.1) rotate(5deg);
}

.carrot-glow {
  background: linear-gradient(135deg, var(--carrot-glow), var(--jump-power));
  color: white;
}

.cloud-float {
  background: linear-gradient(135deg, var(--sky-float), var(--climb-fade));
  color: white;
}

.speed-dash {
  background: linear-gradient(135deg, var(--root-boost), var(--grass-hop));
  color: white;
}

/* Leap Guide Section - Completely Redesigned */
.leap-guide {
  padding: calc(var(--climb-margin) * 1.5) 0;
  background: linear-gradient(
    135deg,
    var(--climb-fade) 0%,
    var(--root-boost) 100%
  );
  position: relative;
  overflow: hidden;
}

.leap-guide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: float 15s ease-in-out infinite;
}

.guide-header {
  text-align: center;
  margin-bottom: calc(var(--leap-spacing) * 2);
  position: relative;
  z-index: 1;
}

.guide-title {
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(45deg, var(--cloud-soft), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guide-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 1px;
}

.guide-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--leap-spacing) * 1.5);
  margin-bottom: calc(var(--leap-spacing) * 2);
  position: relative;
  z-index: 1;
}

.guide-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: calc(var(--bounce-padding) * 1.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.guide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--jump-power),
    var(--carrot-glow),
    var(--root-boost)
  );
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.guide-card:hover::before {
  transform: scaleX(1);
}

.guide-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
  animation: bounce 2s ease-in-out infinite;
}

.guide-card h3 {
  color: var(--shadow-deep);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.guide-card p {
  color: var(--shadow-deep);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
  opacity: 0.8;
}

.card-tip {
  background: linear-gradient(135deg, var(--jump-power), var(--carrot-glow));
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.card-tip::before {
  content: "💡";
  margin-right: 0.5rem;
}

.guide-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: calc(var(--bounce-padding) * 1.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

/* Card-specific animations */
.basic-controls:hover .card-icon {
  animation: shake 0.5s ease-in-out;
}
.carrot-collecting:hover .card-icon {
  animation: pulse 1s ease-in-out infinite;
}
.platform-types:hover .card-icon {
  animation: float 2s ease-in-out infinite;
}
.power-ups:hover .card-icon {
  animation: flash 0.8s ease-in-out;
}
.advanced-tips:hover .card-icon {
  animation: tada 1s ease-in-out;
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes flash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/* Responsive Design for New Leap Guide */
@media (max-width: 768px) {
  .guide-title {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }

  .guide-subtitle {
    font-size: 1.1rem;
  }

  .guide-cards {
    grid-template-columns: 1fr;
    gap: var(--leap-spacing);
  }

  .guide-card {
    padding: var(--bounce-padding);
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .guide-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .guide-title {
    font-size: 2.2rem;
  }

  .guide-subtitle {
    font-size: 1rem;
  }

  .guide-cards {
    gap: calc(var(--leap-spacing) * 0.8);
  }

  .guide-card {
    padding: calc(var(--bounce-padding) * 0.8);
    border-radius: 20px;
  }

  .card-icon {
    font-size: 2rem;
  }

  .guide-card h3 {
    font-size: 1.2rem;
  }

  .card-tip {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 360px) {
  .guide-title {
    font-size: 1.8rem;
  }

  .guide-subtitle {
    font-size: 0.9rem;
  }

  .guide-cards {
    gap: calc(var(--leap-spacing) * 0.6);
  }

  .guide-card {
    padding: calc(var(--bounce-padding) * 0.6);
    border-radius: 15px;
  }

  .card-icon {
    font-size: 1.8rem;
  }

  .guide-card h3 {
    font-size: 1.1rem;
  }

  .card-tip {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
  }
}

/* Bunny Feedback Section */
.bunny-feedback {
  padding: calc(var(--climb-margin) * 1.2) 0;
  background: linear-gradient(135deg, #f8fafc 60%, #e0f7fa 100%);
}
.feedback-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--jump-power);
  margin-bottom: var(--leap-spacing);
  font-weight: 900;
  letter-spacing: -1px;
}
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: calc(var(--leap-spacing) * 1.2);
}
.feedback-item {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(76, 205, 196, 0.1),
    0 2px 8px rgba(255, 107, 53, 0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border: 1.5px solid rgba(76, 205, 196, 0.1);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  backdrop-filter: blur(8px);
}
.feedback-item:hover {
  box-shadow: 0 16px 48px rgba(76, 205, 196, 0.18),
    0 4px 16px rgba(255, 107, 53, 0.13);
  transform: translateY(-6px) scale(1.015);
  background: rgba(255, 255, 255, 0.97);
}
.feedback-author {
  color: var(--jump-power);
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  display: block;
}
.feedback-text {
  color: var(--shadow-deep);
  font-size: 1.08rem;
  line-height: 1.7;
  opacity: 0.95;
  font-style: italic;
  margin-bottom: 0.2em;
  position: relative;
  z-index: 1;
  quotes: "\201C""\201D";
}
.feedback-text:before {
  content: open-quote;
  color: var(--carrot-glow);
  font-size: 1.5em;
  vertical-align: -0.2em;
  margin-right: 0.1em;
}
.feedback-text:after {
  content: close-quote;
  color: var(--carrot-glow);
  font-size: 1.5em;
  vertical-align: -0.2em;
  margin-left: 0.1em;
}
@media (max-width: 768px) {
  .feedback-title {
    font-size: 2rem;
  }
  .feedback-grid {
    gap: var(--leap-spacing);
  }
  .feedback-item {
    padding: 1.2rem 1rem 1rem 1rem;
    border-radius: 14px;
    min-height: 120px;
  }
}
@media (max-width: 480px) {
  .feedback-title {
    font-size: 1.3rem;
  }
  .feedback-grid {
    gap: calc(var(--leap-spacing) * 0.7);
  }
  .feedback-item {
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
    border-radius: 8px;
    min-height: 80px;
  }
  .feedback-author {
    font-size: 1rem;
  }
  .feedback-text {
    font-size: 0.97rem;
  }
}

/* Sky Levels Section */
.sky-levels {
  padding: calc(var(--climb-margin) * 1.2) 0;
  background: linear-gradient(
    135deg,
    var(--sky-float) 60%,
    var(--climb-fade) 100%
  );
  position: relative;
  overflow: hidden;
}
.levels-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--climb-fade);
  margin-bottom: var(--leap-spacing);
  font-weight: 900;
  letter-spacing: -1px;
}
.levels-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--leap-spacing) * 1.2);
}
@media (max-width: 900px) {
  .levels-showcase {
    grid-template-columns: 1fr;
  }
}
.level-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(69, 183, 209, 0.1),
    0 2px 8px rgba(255, 107, 53, 0.07);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  border: 1.5px solid rgba(69, 183, 209, 0.1);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  backdrop-filter: blur(8px);
  position: relative;
}
.level-card:hover {
  box-shadow: 0 16px 48px rgba(69, 183, 209, 0.18),
    0 4px 16px rgba(255, 107, 53, 0.13);
  transform: translateY(-6px) scale(1.025);
  background: rgba(255, 255, 255, 0.97);
}
.level-icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  display: block;
  text-align: center;
  filter: drop-shadow(0 2px 6px rgba(69, 183, 209, 0.12));
}
.level-card h3 {
  color: var(--climb-fade);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
  text-align: center;
}
.level-card p {
  color: var(--shadow-deep);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
  opacity: 0.9;
}
.gradient-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 12px rgba(69, 183, 209, 0.13);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.forest-dot {
  background: radial-gradient(
    circle at 30% 30%,
    var(--grass-hop) 70%,
    var(--bunny-bounce) 100%
  );
}
.clouds-dot {
  background: radial-gradient(
    circle at 60% 40%,
    var(--sky-float) 70%,
    var(--climb-fade) 100%
  );
}
.disappearing-dot {
  background: radial-gradient(
    circle at 50% 60%,
    var(--earth-warm) 70%,
    var(--carrot-glow) 100%
  );
}
.carrot-dot {
  background: radial-gradient(
    circle at 40% 60%,
    var(--carrot-glow) 60%,
    var(--jump-power) 100%
  );
}
.level-card:hover .gradient-dot {
  transform: scale(1.13) rotate(8deg);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.13);
}
@media (max-width: 768px) {
  .levels-title {
    font-size: 2rem;
  }
  .levels-showcase {
    gap: var(--leap-spacing);
  }
  .level-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    border-radius: 14px;
    min-height: 120px;
  }
  .level-icon {
    font-size: 1.5rem;
  }
  .level-card h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .levels-title {
    font-size: 1.3rem;
  }
  .levels-showcase {
    gap: calc(var(--leap-spacing) * 0.7);
  }
  .level-card {
    padding: 0.7rem 0.3rem 0.5rem 0.3rem;
    border-radius: 8px;
    min-height: 80px;
  }
  .level-icon {
    font-size: 1.1rem;
  }
  .level-card h3 {
    font-size: 1rem;
  }
}

/* Burrow Upgrades Section */
.burrow-upgrades {
  padding: var(--climb-margin) 0;
  background: white;
}

.upgrades-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--shadow-deep);
  margin-bottom: var(--leap-spacing);
}

.upgrades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--leap-spacing) * 1.2);
}
.upgrade-item {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(255, 167, 38, 0.1),
    0 2px 8px rgba(76, 205, 196, 0.07);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  border: 1.5px solid rgba(255, 167, 38, 0.1);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  backdrop-filter: blur(8px);
  position: relative;
}
.upgrade-item:hover {
  box-shadow: 0 16px 48px rgba(255, 167, 38, 0.18),
    0 4px 16px rgba(76, 205, 196, 0.13);
  transform: translateY(-6px) scale(1.025);
  background: rgba(255, 255, 255, 0.97);
}
.upgrade-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 12px rgba(255, 167, 38, 0.13);
  border: 3px solid var(--jump-power);
  background: var(--cloud-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.upgrade-item:hover .upgrade-avatar {
  box-shadow: 0 6px 24px rgba(255, 167, 38, 0.18);
  border-color: var(--carrot-glow);
}
.upgrade-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.upgrade-item h3 {
  color: var(--jump-power);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
  text-align: center;
}
.upgrade-item p {
  color: var(--shadow-deep);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .upgrades-grid {
    gap: var(--leap-spacing);
  }
  .upgrade-item {
    padding: 1.2rem 1rem 1rem 1rem;
    border-radius: 14px;
    min-height: 140px;
  }
  .upgrade-avatar {
    width: 54px;
    height: 54px;
    margin-bottom: 0.7rem;
  }
  .upgrade-item h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .upgrades-grid {
    gap: calc(var(--leap-spacing) * 0.7);
  }
  .upgrade-item {
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
    border-radius: 8px;
    min-height: 80px;
  }
  .upgrade-avatar {
    width: 38px;
    height: 38px;
    margin-bottom: 0.5rem;
  }
  .upgrade-item h3 {
    font-size: 1rem;
  }
}

/* Footer Styles */
.bunny-footer {
  background: var(--shadow-deep);
  color: white;
  padding: var(--climb-margin) 0 var(--bounce-padding);
}

.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--leap-spacing);
  margin-bottom: var(--leap-spacing);
}
.footer-section {
  width: 100%;
  margin-bottom: 0.5rem;
}
.footer-title {
  color: var(--jump-power);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: left;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
.footer-link {
  color: var(--cloud-soft);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s;
  font-weight: 500;
}
.footer-link:hover {
  color: var(--jump-power);
}
@media (max-width: 900px) {
  .footer-links {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .footer-flex {
    gap: 1.2rem;
  }
  .footer-links {
    flex-direction: column-reverse;
    gap: 0.3rem;
    align-items: flex-start;
  }
  .footer-section {
    margin-bottom: 0.2rem;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--cloud-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--jump-power);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-block;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--bounce-padding);
  text-align: center;
}

.copyright-text {
  opacity: 0.8;
}

.footer-contacts {
  margin-top: 0.7rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--cloud-soft);
  opacity: 0.92;
}
.footer-contact-icon {
  font-size: 1.2em;
  opacity: 0.85;
}
.footer-contact-link {
  color: var(--cloud-soft);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-contact-link:hover {
  color: var(--jump-power);
}
.footer-contact-text {
  color: var(--cloud-soft);
  opacity: 0.85;
  font-size: 1em;
}
@media (max-width: 768px) {
  .footer-contacts {
    gap: 0.3rem;
  }
  .footer-contact-item {
    font-size: 0.97rem;
  }
}
@media (max-width: 480px) {
  .footer-contact-item {
    font-size: 0.93rem;
  }
}

/* Journal Page Styles */
.journal-hero {
  background: linear-gradient(
    135deg,
    var(--sky-float) 0%,
    var(--bunny-bounce) 100%
  );
  padding: var(--climb-margin) 0;
  text-align: center;
  color: white;
}

.journal-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.journal-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.game-patches,
.bunny-tales {
  padding: var(--climb-margin) 0;
  background: white;
}

.patches-title,
.tales-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--shadow-deep);
  margin-bottom: var(--leap-spacing);
}

.patches-grid,
.tales-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--leap-spacing);
  justify-content: center;
}

.patch-item {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: linear-gradient(135deg, var(--cloud-soft) 0%, white 100%);
  padding: var(--bounce-padding);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.patch-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tale-item {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.tale-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
  transition: opacity 0.4s ease;
}

.tale-item:hover::before {
  opacity: 0.4;
}

.tale-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tale-overlay {
  position: relative;
  z-index: 2;
  padding: var(--bounce-padding);
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
  backdrop-filter: blur(6px);
  border-radius: 0 0 20px 20px;
  transition: all 0.4s ease;
}

.tale-item:hover .tale-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
}

.patch-date,
.tale-date {
  color: var(--jump-power);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.patch-title,
.tale-title {
  color: var(--shadow-deep);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.patch-content {
  color: var(--shadow-deep);
  line-height: 1.6;
}

.tale-date {
  color: var(--jump-power);
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tale-title {
  color: var(--shadow-deep);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tale-content {
  color: var(--shadow-deep);
  line-height: 1.6;
  font-size: 0.95rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(
    135deg,
    var(--sky-float) 0%,
    var(--bunny-bounce) 100%
  );
  padding: var(--climb-margin) 0;
  text-align: center;
  color: white;
}

.contact-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-info {
  padding: var(--climb-margin) 0;
  background: white;
}

.info-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: calc(var(--leap-spacing) * 1.5);
  max-width: 800px;
  margin: 0 auto;
}

.info-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  padding: calc(var(--bounce-padding) * 1.5);
  text-align: center;
  box-shadow: 0 8px 32px rgba(76, 205, 196, 0.1),
    0 2px 8px rgba(255, 107, 53, 0.07);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(76, 205, 196, 0.1);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.info-item:hover::before {
  left: 100%;
}

.info-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(76, 205, 196, 0.18),
    0 4px 16px rgba(255, 107, 53, 0.13);
  background: rgba(255, 255, 255, 0.97);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.info-item:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
}

.info-title {
  color: var(--jump-power);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.info-text {
  color: var(--shadow-deep);
  line-height: 1.6;
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-form {
  padding: var(--climb-margin) 0;
  background: linear-gradient(
    135deg,
    var(--bunny-bounce) 0%,
    var(--grass-hop) 100%
  );
}

.form-title {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: var(--leap-spacing);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bunny-form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: var(--bounce-padding);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--shadow-deep);
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--cloud-soft);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--jump-power);
}

.submit-bounce {
  background: var(--jump-power);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  width: 100%;
}

.submit-bounce:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: var(--jump-power);
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.loading-overlay.active {
  display: flex;
}

.loading-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 400px;
  width: 90%;
}

.loading-bunny {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: bounce 1s ease-in-out infinite;
}

.loading-content h3 {
  color: var(--jump-power);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.loading-content p {
  color: var(--shadow-deep);
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Success Notification */
.success-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 205, 196, 0.2);
  max-width: 400px;
  width: 90%;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
}

.success-notification.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.notification-content {
  text-align: center;
}

.notification-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: tada 1s ease-in-out;
}

.notification-content h3 {
  color: var(--jump-power);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.notification-content p {
  color: var(--shadow-deep);
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.notification-close {
  background: var(--jump-power);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.notification-close:hover {
  background: var(--jump-power);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
  .success-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
  }

  .success-notification.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

.map-section {
  padding: var(--climb-margin) 0;
  background: white;
}

.map-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--shadow-deep);
  margin-bottom: var(--leap-spacing);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Policy Pages Styles */
.policy-hero {
  background: linear-gradient(
    135deg,
    var(--jump-power) 0%,
    var(--carrot-glow) 100%
  );
  padding: calc(var(--climb-margin) * 1.5) 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  animation: float 15s ease-in-out infinite;
}

.policy-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.policy-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.policy-content {
  padding: calc(var(--climb-margin) * 1.2) 0;
  background: linear-gradient(135deg, var(--cloud-soft) 60%, white 100%);
  position: relative;
  overflow: hidden;
}

.policy-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: calc(var(--bounce-padding) * 2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.policy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--jump-power),
    var(--carrot-glow),
    var(--root-boost)
  );
  border-radius: 25px 25px 0 0;
}

.policy-card h2 {
  color: var(--jump-power);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.5px;
  position: relative;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card h2::before {
  content: "";
  margin-right: 0;
  font-size: 1.2em;
}

.policy-card p {
  color: var(--shadow-deep);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.policy-card ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.policy-card li {
  color: var(--shadow-deep);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  position: relative;
}

.policy-card li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.1rem;
  font-size: 0.8em;
}

.policy-card strong {
  color: var(--jump-power);
  font-weight: 700;
}

@media (max-width: 768px) {
  .policy-title {
    font-size: 2.5rem;
  }

  .policy-subtitle {
    font-size: 1.1rem;
  }

  .policy-card {
    padding: calc(var(--bounce-padding) * 1.5);
    margin: 0 1rem;
  }

  .policy-card h2 {
    font-size: 1.5rem;
  }

  .policy-card p {
    font-size: 1rem;
  }

  .policy-card li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .policy-title {
    font-size: 2rem;
  }

  .policy-subtitle {
    font-size: 1rem;
  }

  .policy-card {
    padding: var(--bounce-padding);
    margin: 0 0.5rem;
    border-radius: 20px;
  }

  .policy-card h2 {
    font-size: 1.3rem;
  }

  .policy-card p {
    font-size: 0.95rem;
  }

  .policy-card li {
    font-size: 0.9rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .burger-toggle {
    display: flex;
  }

  .hop-nav {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

  .hop-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;
    gap: 1rem;
  }

  .carrot-title,
  .journal-title,
  .contact-title {
    font-size: 2.5rem;
  }

  .boost-grid,
  .feedback-grid,
  .levels-showcase,
  .upgrades-grid,
  .patches-grid,
  .tales-grid,
  .footer-flex {
    flex-direction: column-reverse;
    align-items: center;
  }

  .boost-item,
  .feedback-item,
  .level-card,
  .upgrade-item,
  .patch-item,
  .tale-item,
  .footer-section {
    min-width: 100%;
  }

  .info-grid {
    gap: var(--leap-spacing);
    max-width: 500px;
  }

  .info-item {
    padding: var(--bounce-padding);
    min-height: 150px;
  }

  .info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .info-title {
    font-size: 1.2rem;
  }

  .info-text {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .carrot-title,
  .journal-title,
  .contact-title {
    font-size: 2rem;
  }

  .leap-slogan,
  .journal-subtitle,
  .contact-subtitle {
    font-size: 1.1rem;
  }

  .climb-container {
    padding: 0 1rem;
  }
}

.leap-guide .guide-content {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 28px;
  padding: 2.2rem 2.5rem;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.13),
    0 2px 8px rgba(76, 205, 196, 0.08);
  margin-top: 2.5rem;
  margin-bottom: 0;
  border: 1.5px solid rgba(102, 126, 234, 0.13);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
  color: var(--shadow-deep);
  position: relative;
  z-index: 2;
  transition: box-shadow 0.3s, transform 0.3s;
}
.leap-guide .guide-content:hover {
  box-shadow: 0 30px 80px rgba(102, 126, 234, 0.18),
    0 4px 16px rgba(76, 205, 196, 0.12);
  transform: translateY(-6px) scale(1.01);
}
.leap-guide .guide-content h3,
.leap-guide .guide-content b {
  color: var(--jump-power);
  font-size: 1.13em;
  font-weight: bold;
  margin-top: 1.2em;
  margin-bottom: 0.3em;
  display: block;
}
.leap-guide .guide-content p {
  margin-bottom: 1.1em;
  line-height: 1.7;
  color: var(--shadow-deep);
}
@media (max-width: 768px) {
  .leap-guide .guide-content {
    padding: 1.2rem 1rem;
    font-size: 1rem;
    border-radius: 18px;
  }
}
@media (max-width: 480px) {
  .leap-guide .guide-content {
    padding: 0.7rem 0.5rem;
    font-size: 0.97rem;
    border-radius: 12px;
  }
}

.boost-title,
.guide-title,
.feedback-title,
.levels-title,
.upgrades-title,
.journal-title,
.contact-title,
.disclaimer-title,
.cookie-title,
.privacy-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--jump-power);
  margin-bottom: var(--leap-spacing);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(255, 107, 53, 0.08);
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .boost-title,
  .guide-title,
  .feedback-title,
  .levels-title,
  .upgrades-title,
  .journal-title,
  .contact-title,
  .disclaimer-title,
  .cookie-title,
  .privacy-title {
    font-size: 2rem;
    margin-bottom: calc(var(--leap-spacing) * 0.8);
  }
}
@media (max-width: 480px) {
  .boost-title,
  .guide-title,
  .feedback-title,
  .levels-title,
  .upgrades-title,
  .journal-title,
  .contact-title,
  .disclaimer-title,
  .cookie-title,
  .privacy-title {
    font-size: 1.3rem;
    margin-bottom: calc(var(--leap-spacing) * 0.6);
  }
}

.game-patches {
  padding: calc(var(--climb-margin) * 1.2) 0;
  background: linear-gradient(
    135deg,
    var(--cloud-soft) 60%,
    var(--sky-float) 100%
  );
  position: relative;
  overflow: hidden;
}
.patches-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--jump-power);
  margin-bottom: var(--leap-spacing);
  font-weight: 900;
  letter-spacing: -1px;
}
.patches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--leap-spacing) * 1.2);
  position: relative;
  z-index: 1;
}
.patch-item {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(69, 183, 209, 0.1),
    0 2px 8px rgba(255, 107, 53, 0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border: 1.5px solid rgba(69, 183, 209, 0.1);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  backdrop-filter: blur(8px);
  position: relative;
  animation: patchFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.patch-item:hover {
  box-shadow: 0 16px 48px rgba(69, 183, 209, 0.18),
    0 4px 16px rgba(255, 107, 53, 0.13);
  transform: translateY(-6px) scale(1.025);
  background: rgba(255, 255, 255, 0.97);
}
.patch-date {
  color: var(--jump-power);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  display: block;
}
.patch-title {
  color: var(--climb-fade);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
  text-align: left;
}
.patch-content {
  color: var(--shadow-deep);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: left;
  opacity: 0.92;
}
@keyframes patchFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .patches-title {
    font-size: 2rem;
  }
  .patches-grid {
    gap: var(--leap-spacing);
  }
  .patch-item {
    padding: 1.2rem 1rem 1rem 1rem;
    border-radius: 14px;
    min-height: 120px;
  }
  .patch-title {
    font-size: 1.1rem;
  }

  .tale-item {
    min-height: 220px;
  }

  .tale-overlay {
    padding: calc(var(--bounce-padding) * 0.8);
  }

  .tale-title {
    font-size: 1.2rem;
  }

  .tale-content {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .patches-title {
    font-size: 1.3rem;
  }
  .patches-grid {
    gap: calc(var(--leap-spacing) * 0.7);
  }
  .patch-item {
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
    border-radius: 8px;
    min-height: 80px;
  }
  .patch-date {
    font-size: 0.97rem;
  }
  .patch-title {
    font-size: 1rem;
  }

  .tale-item {
    min-height: 180px;
  }

  .tale-overlay {
    padding: calc(var(--bounce-padding) * 0.6);
  }

  .tale-title {
    font-size: 1.1rem;
  }

  .tale-content {
    font-size: 0.85rem;
  }

  .tale-date {
    font-size: 0.8rem;
  }

  .info-grid {
    gap: calc(var(--leap-spacing) * 0.7);
    max-width: 400px;
  }

  .info-item {
    padding: calc(var(--bounce-padding) * 0.8);
    min-height: 120px;
  }

  .info-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .info-title {
    font-size: 1.1rem;
  }

  .info-text {
    font-size: 0.9rem;
  }
}
