/* Базовые сбросы и унификация */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Глобальные настройки ссылок и кнопок */
#allrecords {
  -webkit-font-smoothing: antialiased;
  background-color: #a8d4e6;
}

#allrecords a,
#allrecords button,
#allrecords .t-radio,
#allrecords .t-checkbox,
#allrecords .t-img-select {
  outline: none;
}

#allrecords a {
  color: #ffd700;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease-in-out;
}

#allrecords a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #C9E2E3;
  transition: width 0.3s ease;
}

#allrecords a:hover {
  color: #fff; /* пример — меняем цвет при наведении */
}

#allrecords a:hover::after {
  width: 100%;
}

/* Специфический стиль для вашего элемента с текстом */
#rec718771382 .tn-elem[data-elem-id="1710934085217"] .tn-atom {
  color: #ffffff;
  font-size: 30px;
  font-family: 'DrukTextWideTT', Arial, sans-serif;
  line-height: 1.55;
  font-weight: 900;
  border-radius: 30px;
  background-position: center center;
  border: 0 solid transparent;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

/* Обертка для блока с текстом */
#rec718771382 .tn-elem[data-elem-id="1710934085217"] {
  color: #ffffff;
  text-align: center;
  z-index: 8;
  top: 0;
  left: calc(50% - 600px + -26px);
  width: 124px;
  height: 53px;
}

/* Кнопки */
.t-btn {
  display: inline-block;
  font-family: 'ReformaGrotesk', Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Подчеркивание для кнопок */
.uc-button-section .t-btn {
  position: relative;
}

.uc-button-section .t-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #C9E2E3;
  transition: width 0.3s ease;
}

.uc-button-section .t-btn:hover::after {
  width: 100%;
}





.hero-title {
  display: inline-block;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 12px;
  color: #fff;
  font-family: 'DrukTextWideTT', Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-title::after {
  content: '';
  display: block;
  width: 50%;
  height: 2px;
  background: #C9E2E3;
  margin: 6px auto 0;
  border-radius: 1px;
}

.hero-subtitle {
  margin-top: 10px;
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  font-family: Arial, sans-serif;
}

/* Без анимации для стабильности */



.uc-header-wrapper {
  background: rgba(255, 255, 255, 0.6) url('https://static.tildacdn.com/tild3963-3538-4139-b766-383034373063/textura.png') repeat;
  background-blend-mode: multiply;
  background-size: 200px auto;
  padding: 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px; /* если хотите скругление */
  width: 100%; /* по ширине контейнера */
  margin: 0 auto; /* центрируем если нужно */
}



.header-logo a {
  font-family: 'DrukTextWideTT', Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #5b3a1c;
  text-decoration: none;
}

.header-menu a {
  font-family: 'ReformaGrotesk', Arial, sans-serif;
  font-size: 18px;
  color: #5b3a1c;
  text-decoration: none;
  margin-left: 20px;
  position: relative;
}

.header-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a063;
  transition: width 0.3s ease;
}

.header-menu a:hover::after {
  width: 100%;
}



