/* Animations + notices + cookies + auth chrome */

/* Top notice */
.tbt-notice {
  background: #ffee00;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 70;
}
.tbt-notice__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.55rem 2.5rem 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.tbt-notice__text { color: #000; }
.tbt-notice__text:hover { text-decoration: underline; }
.tbt-notice__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #000;
}
.tbt-notice.is-hidden { display: none; }

/* Cookie */
.tbt-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  max-width: 560px;
}
.tbt-cookie__inner {
  background: #111;
  border: 1px solid rgba(255, 238, 0, 0.4);
  padding: 1rem 1.1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.tbt-cookie__msg {
  margin: 0;
  font-size: 13px;
  color: #f1f1f1;
  flex: 1;
}
.tbt-cookie__msg a { color: #ffee00; text-decoration: underline; }
.tbt-cookie__accept {
  flex-shrink: 0;
  background: #ffee00;
  color: #000;
  border: 0;
  padding: 0.7rem 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.tbt-cookie__accept:hover { background: #fff; }

/* Account link */
.moo-account {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f1f1f1;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.moo-account:hover { color: #ffee00; }

.tbt-auth-form { max-width: 420px; margin: 1.5rem auto 0; text-align: left; }
.tbt-auth-error { color: #ff8aa0; grid-column: 1 / -1; }
.tbt-auth-remember { flex-direction: row !important; align-items: center; gap: 0.5rem !important; text-transform: none; letter-spacing: 0; font-size: 13px; }
.tbt-auth-links { text-align: center; color: #aaa; }
.tbt-auth-links a { color: #ffee00; }

/* Animations */
.tbt-anim-on .moo-section,
.tbt-anim-on .moo-pillar,
.tbt-anim-on .moo-offer,
.tbt-anim-on .moo-mega,
.tbt-anim-on .moo-embed {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.tbt-anim-on .is-inview {
  opacity: 1 !important;
  transform: none !important;
}
.tbt-anim-on .moo-pillar {
  transition: opacity 0.55s ease, transform 0.55s ease, background 0.15s ease;
}
.tbt-anim-on .moo-pillar:nth-child(2) { transition-delay: 0.08s; }
.tbt-anim-on .moo-pillar:nth-child(3) { transition-delay: 0.16s; }
.tbt-anim-on .moo-btn,
.tbt-anim-on .moo-pillar {
  transition: transform 0.18s ease, background 0.15s ease, color 0.15s ease, opacity 0.55s ease;
}
.tbt-anim-on .moo-btn:hover,
.tbt-anim-on .moo-pillar:hover {
  transform: translateY(-2px);
}
.tbt-anim-on .moo-hero__copy {
  animation: tbt-hero-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes tbt-hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
body:not(.tbt-ticker-on) .moo-ticker__track {
  animation: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .tbt-anim-on .moo-section,
  .tbt-anim-on .moo-pillar,
  .tbt-anim-on .moo-offer,
  .tbt-anim-on .moo-mega,
  .tbt-anim-on .moo-embed,
  .tbt-anim-on .moo-hero__copy {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
