/* ═══ КОКТЕЙЛЬ БЮРО — МИНИМАЛЬНЫЙ ГЛОБАЛЬНЫЙ CSS ═══ */
/* Только то, что нельзя настроить через редактор Tilda */

/* Фон и базовый цвет */
body, .t-body {
  background-color: #060606 !important;
  -webkit-font-smoothing: antialiased;
}
::selection { background: #F0EDE8; color: #060606; }

/* Film grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 9998; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #060606; }
::-webkit-scrollbar-thumb { background: #222; }
::-webkit-scrollbar-thumb:hover { background: #F0EDE8; }

/* Header — прозрачный фон + blur при скролле */
.t-header {
  background: transparent !important;
  transition: all 0.5s !important;
}
.t-header_fixed.t-header_scroll {
  background: rgba(6, 6, 6, 0.9) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
}

/* Мобильное меню */
.t-menusub { background: #060606 !important; }
.t-menuburger__line { background-color: #F0EDE8 !important; }

/* Reveal animation для HTML-embed скриптов */
.kb-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 0.9s cubic-bezier(.4,0,.2,1);
}
.kb-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero: текст по центру */
#rec2103063171 .tn-group.main-text {
  position: absolute !important;
  top: calc(50% + 40px) !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 10;
}

/* Hero: затемнение прозрачно для мыши */
#rec2103063171 .overlay-hero {
  pointer-events: none !important;
}