/* ------------------------------
   Секция "Путешествие-игра"
------------------------------ */
.travel-game {
  padding: 60px 0 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

/* Декоративный фон (опционально) */
.travel-game::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(253, 189, 36, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.travel-game__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Левая колонка с текстом */
.travel-game__content {
  flex: 1;
  max-width: 550px;
}

.travel-game__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1e1e1e; /* чёрный */
}

.travel-game__subtitle {
  color: #1189BF; /* фирменный синий */
  font-size: 42px;
  font-weight: 600;
  display: inline-block;
  background: linear-gradient(120deg, #1189BF 0%, #FDBD24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.travel-game__description {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 35px;
}

/* Кнопка Старт */
.travel-game__btn {
  background: #FDBD24; /* жёлтый */
  color: #1e1e1e;
  font-size: 24px;
  font-weight: 700;
  padding: 16px 50px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(253, 189, 36, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.travel-game__btn:hover {
  background: #1189BF; /* синий */
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(17, 137, 191, 0.4);
}

.travel-game__btn:active {
  transform: translateY(0);
}

/* Правая колонка с маскотом */
.travel-game__mascot {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
}

.travel-game__mascot-img {
  width: 100%;
  height: auto;
  max-width: 380px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  animation: float 4s ease-in-out infinite;
}

/* Анимация плавания для львёнка */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Адаптивность */
@media (max-width: 992px) {
  .travel-game__inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .travel-game__content {
    max-width: 100%;
  }
  
  .travel-game__title {
    font-size: 42px;
  }
  
  .travel-game__subtitle {
    font-size: 36px;
  }
  
  .travel-game__mascot {
    max-width: 300px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .travel-game {
    padding: 60px 0;
  }
  
  .travel-game__title {
    font-size: 36px;
  }
  
  .travel-game__subtitle {
    font-size: 30px;
  }
  
  .travel-game__description {
    font-size: 16px;
  }
  
  .travel-game__btn {
    font-size: 20px;
    padding: 14px 40px;
  }
}