:root {
  --ff-bg: #050806;
  --ff-bg-soft: #081008;
  --ff-bg-card: rgba(255, 255, 255, 0.035);
  --ff-text: #f4f1ea;
  --ff-muted: #a8aaa2;
  --ff-green: #76b82a;
  --ff-red: #d71920;
  --ff-border: rgba(255, 255, 255, 0.11);
  --ff-border-green: rgba(118, 184, 42, 0.28);
  --ff-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --ff-max: 1360px;
  --ff-content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ff-bg);
  color: var(--ff-text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 4%, rgba(118, 184, 42, 0.11), transparent 28%),
    radial-gradient(circle at 18% 10%, rgba(215, 25, 32, 0.075), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.022), transparent 42%);
  z-index: -1;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.ff-container {
  width: min(var(--ff-content), calc(100% - 64px));
  margin: 0 auto;
}

.ff-header .ff-container {
  width: min(var(--ff-content), calc(100% - 64px));
}

.ff-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 28px 0;
}

.admin-bar .ff-header {
  top: 32px;
}

.ff-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
}

.ff-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  text-transform: uppercase;
  max-width: 270px;
}

.ff-logo__main {
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 18px;
}

.ff-logo__sub {
  margin-top: 6px;
  color: var(--ff-green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.38em;
}

.ff-logo-stage {
  position: relative;
  left: -18px;
  top: 4px;
  width: 190px;
  max-width: 190px;
  animation: ff-logo-bob 5.8s ease-in-out infinite;
  will-change: top;
}

.custom-logo-link {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 190px;
  max-width: 190px;
  max-height: 130px;
}

.custom-logo {
  display: block;
  width: auto;
  height: 130px;
  max-width: 190px;
  max-height: 130px;
  object-fit: contain;
  object-position: left top;
  transform-origin: 50% 10%;
  animation: ff-logo-swing 5.8s ease-in-out infinite;
}

.ff-nav {
  margin-left: auto;
  padding-top: 18px;
}

.ff-nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ff-nav__list a {
  position: relative;
  text-decoration: none;
  color: var(--ff-text);
  opacity: 0.82;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transition: color 180ms ease, opacity 180ms ease;
}

.ff-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--ff-green);
  transition: right 180ms ease;
}

.ff-nav__list a:hover {
  color: var(--ff-green);
  opacity: 1;
}

.ff-nav__list a:hover::after {
  right: 0;
}

.ff-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ff-border);
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  padding: 0;
}

.ff-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ff-text);
  margin: 5px auto;
}

.ff-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 160px 0 86px;
}

.ff-hero__media {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image), linear-gradient(135deg, #101810, #1d0d0e);
  background-position: var(--hero-position, center center), center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  z-index: -3;
  transform: scale(1.01);
  filter: saturate(0.88) brightness(0.8);
}

.ff-hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 16%, rgba(118,184,42,0.12), transparent 28%),
    linear-gradient(90deg, rgba(5, 8, 6, 0.97), rgba(5, 8, 6, 0.72) 40%, rgba(5, 8, 6, 0.26)),
    linear-gradient(0deg, var(--ff-bg), transparent 32%);
  z-index: -2;
}

.ff-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.ff-kicker {
  margin: 0 0 18px;
  color: var(--ff-green);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 900;
}

.ff-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5.25vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.067em;
  text-transform: uppercase;
}

.ff-hero h1 span,
.ff-studio__copy h2 span,
.ff-contact h2 span {
  color: var(--ff-green);
}

.ff-hero__text {
  max-width: 470px;
  margin: 24px 0 32px;
  color: var(--ff-muted);
  font-size: 15px;
  line-height: 1.75;
}

.ff-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ff-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--ff-border);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.11em;
  font-weight: 900;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.ff-button:hover {
  transform: translateY(-2px);
  border-color: var(--ff-green);
}

.ff-button--primary {
  background: var(--ff-green);
  border-color: var(--ff-green);
  color: #071006;
}

.ff-button--primary:hover {
  background: #8bd33a;
}

.ff-button--ghost {
  background: rgba(255,255,255,0.018);
  color: var(--ff-text);
}

.ff-section {
  padding: 82px 0;
  position: relative;
}

.ff-section-heading {
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}

.ff-section-heading h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.ff-section-heading > p {
  margin: 0;
  color: var(--ff-muted);
  line-height: 1.7;
  font-size: 14px;
}

.ff-games-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  grid-auto-rows: 300px;
  gap: 18px;
}

.ff-game-card {
  position: relative;
  display: block;
  min-height: 300px;
  color: var(--ff-text);
  text-decoration: none;
  border: 1px solid var(--ff-border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--ff-bg-card);
  box-shadow: var(--ff-shadow);
}

.ff-game-card--large {
  grid-row: span 2;
}

.ff-game-card:nth-child(4) {
  grid-column: 2 / 4;
}

.ff-game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--game-image);
  background-position: var(--game-position, center center);
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 520ms ease, filter 520ms ease;
  filter: brightness(0.82) saturate(0.9);
}

.ff-game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04) 12%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(45deg, rgba(118, 184, 42, 0.07), transparent 45%);
}

.ff-game-card:hover::before {
  transform: scale(1.055);
  filter: brightness(0.96) saturate(1.04);
}

.ff-game-card__content {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
}

.ff-game-card__content span {
  display: block;
  color: var(--ff-green);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 900;
  margin-bottom: 10px;
}

.ff-game-card__content h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.94;
  letter-spacing: -0.052em;
  text-transform: uppercase;
  text-wrap: balance;
}

.ff-game-card:not(.ff-game-card--large) .ff-game-card__content h3 {
  font-size: 30px;
}

.ff-studio {
  padding-top: 96px;
}

.ff-studio__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.ff-studio__image {
  min-height: 430px;
  border-radius: 30px;
  border: 1px solid var(--ff-border);
  background-image:
    linear-gradient(0deg, rgba(0,0,0,0.40), rgba(0,0,0,0.14)),
    var(--studio-image),
    linear-gradient(135deg, #111b11, #23090b);
  background-position:
    center center,
    var(--studio-position, center center),
    center center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  box-shadow: var(--ff-shadow);
  filter: brightness(0.9) saturate(0.88);
}

.ff-studio__copy h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.ff-studio__copy p {
  margin: 0 0 30px;
  max-width: 520px;
  color: var(--ff-muted);
  font-size: 16px;
  line-height: 1.78;
}

.ff-contact {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
  min-height: 310px;
  padding: clamp(34px, 4.8vw, 64px);
  border-radius: 32px;
  border: 1px solid var(--ff-border-green);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5,8,6,0.94), rgba(5,8,6,0.62)),
    radial-gradient(circle at 84% 30%, rgba(215,25,32,0.20), transparent 34%),
    radial-gradient(circle at 70% 70%, rgba(118,184,42,0.13), transparent 32%),
    var(--contact-image);
  background-position:
    center center,
    center center,
    center center,
    var(--contact-position, center center);
  background-size: cover, cover, cover, cover;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  box-shadow: var(--ff-shadow);
}

.ff-contact h2 {
  margin: 0 0 20px;
  max-width: 720px;
  font-size: clamp(38px, 4.7vw, 70px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.ff-contact p {
  margin: 0;
  max-width: 540px;
  color: var(--ff-muted);
  line-height: 1.72;
  font-size: 15px;
}

.ff-contact__actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.ff-contact__email {
  color: var(--ff-text);
  text-decoration: none;
  opacity: 0.82;
  font-size: 14px;
}

.ff-footer {
  border-top: 1px solid var(--ff-border);
  padding: 50px 0 30px;
  color: var(--ff-muted);
}

.ff-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 38px;
}

.ff-footer h4 {
  margin: 0 0 14px;
  color: var(--ff-green);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.ff-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ff-footer a {
  color: var(--ff-muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.ff-footer a:hover {
  color: var(--ff-green);
}

.ff-footer__brand p {
  margin: 16px 0 0;
  max-width: 240px;
}

.ff-footer__bottom {
  margin-top: 34px;
  opacity: 0.72;
}

.ff-page {
  padding: 150px 0 80px;
  min-height: 70vh;
}

.ff-page__content {
  max-width: 850px;
}

.ff-page h1 {
  margin: 0 0 30px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.ff-content {
  color: var(--ff-muted);
  font-size: 17px;
  line-height: 1.8;
}

.ff-featured-image {
  margin: 26px 0;
  border-radius: 24px;
  overflow: hidden;
}

@media (max-width: 1180px) {
  .ff-container {
    width: min(100% - 44px, var(--ff-content));
  }

  .ff-header .ff-container {
    width: min(var(--ff-content), calc(100% - 44px));
  }

  .ff-logo-stage {
    left: -10px;
    top: 2px;
    width: 170px;
    max-width: 170px;
  }

  .custom-logo-link {
    width: 170px;
    max-width: 170px;
    max-height: 118px;
  }

  .custom-logo {
    height: 118px;
    max-width: 170px;
    max-height: 118px;
  }

  .ff-hero {
    padding-top: 138px;
  }
}

@media (max-width: 980px) {
  .admin-bar .ff-header {
    top: 46px;
  }

  .ff-header__inner {
    align-items: center;
  }

  .ff-logo-stage {
    left: -6px;
    top: 0;
    width: 146px;
    max-width: 146px;
  }

  .custom-logo-link {
    width: 146px;
    max-width: 146px;
    max-height: 96px;
  }

  .custom-logo {
    height: 96px;
    max-width: 146px;
    max-height: 96px;
  }

  .ff-nav {
    position: fixed;
    inset: 82px 22px auto 22px;
    display: none;
    padding: 20px;
    border: 1px solid var(--ff-border);
    border-radius: 22px;
    background: rgba(5, 8, 6, 0.94);
    backdrop-filter: blur(18px);
  }

  .ff-nav.is-open {
    display: block;
  }

  .ff-nav__list {
    display: grid;
    gap: 18px;
  }

  .ff-nav__list a::after {
    display: none;
  }

  .ff-menu-toggle {
    display: block;
  }

  .ff-hero {
    min-height: 86vh;
    padding-top: 132px;
  }

  .ff-section-heading,
  .ff-studio__grid,
  .ff-contact,
  .ff-footer__grid {
    grid-template-columns: 1fr;
  }

  .ff-section-heading {
    align-items: start;
  }

  .ff-games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ff-game-card--large,
  .ff-game-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .ff-contact__actions {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .ff-container,
  .ff-header .ff-container {
    width: min(100% - 28px, var(--ff-max));
  }

  .ff-header {
    padding: 16px 0;
  }

  .ff-logo {
    max-width: 150px;
  }

  .ff-logo-stage {
    left: -2px;
    top: 0;
    width: 104px;
    max-width: 104px;
  }

  .custom-logo-link {
    width: 104px;
    max-width: 104px;
    max-height: 58px;
  }

  .custom-logo {
    height: 58px;
    max-width: 104px;
    max-height: 58px;
  }

  .ff-hero {
    min-height: 86vh;
    padding-top: 116px;
  }

  .ff-hero h1 {
    font-size: clamp(38px, 12.5vw, 56px);
    line-height: 0.96;
  }

  .ff-hero__text {
    font-size: 15px;
  }

  .ff-games-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 350px;
  }

  .ff-game-card {
    min-height: 350px;
  }

  .ff-game-card:not(.ff-game-card--large) .ff-game-card__content h3 {
    font-size: 28px;
  }

  .ff-section {
    padding: 62px 0;
  }

  .ff-studio {
    padding-top: 68px;
  }

  .ff-studio__image {
    min-height: 320px;
  }

  .ff-contact {
    padding: 28px;
    min-height: 360px;
  }

  .ff-footer__grid {
    gap: 26px;
  }
}


.ff-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: transform, opacity;
}

.ff-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ff-reveal-group .ff-reveal:nth-child(1) { transition-delay: 60ms; }
.ff-reveal-group .ff-reveal:nth-child(2) { transition-delay: 140ms; }

.ff-game-card.ff-reveal:nth-child(1) { transition-delay: 40ms; }
.ff-game-card.ff-reveal:nth-child(2) { transition-delay: 110ms; }
.ff-game-card.ff-reveal:nth-child(3) { transition-delay: 180ms; }
.ff-game-card.ff-reveal:nth-child(4) { transition-delay: 250ms; }

.ff-button,
.ff-contact__actions,
.ff-contact__email {
  position: relative;
  z-index: 1;
}

.ff-game-card:nth-child(2),
.ff-game-card:nth-child(3) {
  animation: ff-soft-float 8s ease-in-out infinite;
}

.ff-game-card:nth-child(3) {
  animation-delay: 1.2s;
}

.ff-contact {
  overflow: hidden;
}



@keyframes ff-logo-bob {
  0%, 100% { top: 4px; }
  25% { top: -7px; }
  50% { top: -17px; }
  75% { top: -7px; }
}

@keyframes ff-logo-swing {
  0%, 100% { transform: rotate(-1.6deg); }
  25% { transform: rotate(0.8deg); }
  50% { transform: rotate(2.2deg); }
  75% { transform: rotate(-0.8deg); }
}

@media (max-width: 1180px) {
  @keyframes ff-logo-bob {
    0%, 100% { top: 2px; }
    50% { top: -12px; }
  }
}

@media (max-width: 620px) {
  @keyframes ff-logo-bob {
    0%, 100% { top: 0; }
    50% { top: -7px; }
  }
}

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


@media (prefers-reduced-motion: reduce) {
  .custom-logo-link,
  .ff-game-card,
  .ff-reveal {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


.ff-logo-stage:hover,
.ff-logo-stage:hover .custom-logo {
  animation-duration: 3.8s;
}

/* v2.13 - smoother logo motion and mobile polish */
.ff-logo-stage {
  position: relative !important;
  animation: ff-logo-float-smooth 6.8s cubic-bezier(.45, 0, .55, 1) infinite !important;
  will-change: transform !important;
}

.ff-logo-stage .custom-logo {
  animation: ff-logo-swing-smooth 6.8s cubic-bezier(.45, 0, .55, 1) infinite !important;
  will-change: transform !important;
}

@keyframes ff-logo-float-smooth {
  0%   { transform: translate3d(0, 0, 0); }
  20%  { transform: translate3d(1px, -4px, 0); }
  40%  { transform: translate3d(2px, -10px, 0); }
  60%  { transform: translate3d(-1px, -14px, 0); }
  80%  { transform: translate3d(-2px, -6px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes ff-logo-swing-smooth {
  0%   { transform: rotate(-1.2deg); }
  25%  { transform: rotate(.7deg); }
  50%  { transform: rotate(1.5deg); }
  75%  { transform: rotate(-.5deg); }
  100% { transform: rotate(-1.2deg); }
}

@media (max-width: 620px) {
  .ff-header {
    padding: 14px 0;
  }

  .ff-logo-stage {
    left: 0 !important;
    top: 0 !important;
    width: 118px !important;
    max-width: 118px !important;
  }

  .custom-logo-link {
    width: 118px !important;
    max-width: 118px !important;
    max-height: 76px !important;
  }

  .custom-logo {
    height: 76px !important;
    max-width: 118px !important;
    max-height: 76px !important;
  }

  .ff-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .ff-hero {
    min-height: 72vh;
    padding-top: 126px;
    padding-bottom: 52px;
    align-items: flex-start;
  }

  .ff-hero__shade {
    background:
      radial-gradient(circle at 72% 14%, rgba(118,184,42,0.18), transparent 34%),
      linear-gradient(90deg, rgba(5, 8, 6, 0.93), rgba(5, 8, 6, 0.76) 58%, rgba(5, 8, 6, 0.38)),
      linear-gradient(0deg, var(--ff-bg), transparent 30%);
  }

  .ff-hero h1 {
    max-width: 340px;
    font-size: clamp(34px, 11.5vw, 48px);
    line-height: .93;
    letter-spacing: -.06em;
  }

  .ff-kicker {
    font-size: 9px;
    letter-spacing: .2em;
    margin-bottom: 12px;
  }

  .ff-hero__text {
    max-width: 300px;
    margin: 18px 0 22px;
    font-size: 13px;
    line-height: 1.55;
  }

  .ff-button {
    min-height: 38px;
    padding: 0 16px;
    font-size: 9px;
    letter-spacing: .1em;
  }

  .ff-section {
    padding: 48px 0;
  }

  .ff-section-heading {
    gap: 16px;
    margin-bottom: 22px;
  }

  .ff-section-heading h2 {
    font-size: clamp(28px, 10vw, 38px);
    line-height: .95;
  }

  .ff-section-heading > p {
    max-width: 300px;
    font-size: 12px;
    line-height: 1.55;
  }

  .ff-games-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .ff-game-card,
  .ff-game-card--large {
    min-height: 215px !important;
    height: 215px;
    border-radius: 18px;
  }

  .ff-game-card__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .ff-game-card__content span {
    font-size: 9px;
    margin-bottom: 7px;
  }

  .ff-game-card__content h3,
  .ff-game-card:not(.ff-game-card--large) .ff-game-card__content h3 {
    font-size: 22px;
    line-height: .96;
  }

  .ff-studio {
    padding-top: 50px;
  }

  .ff-studio__grid {
    gap: 26px;
  }

  .ff-studio__image {
    min-height: 220px;
    border-radius: 20px;
  }

  .ff-studio__copy h2 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: .95;
    margin-bottom: 16px;
  }

  .ff-studio__copy p {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .ff-contact {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
    gap: 22px;
  }

  .ff-contact h2 {
    font-size: clamp(28px, 10vw, 40px);
    line-height: .95;
    margin-bottom: 14px;
  }

  .ff-contact p {
    font-size: 12px;
    line-height: 1.55;
  }

  .ff-contact__actions {
    gap: 10px;
  }

  .ff-contact__email {
    font-size: 12px;
  }

  .ff-footer {
    padding: 38px 0 26px;
  }

  .ff-footer__grid {
    gap: 24px;
  }

  .ff-footer h4 {
    margin-bottom: 10px;
  }

  .ff-footer ul {
    gap: 6px;
  }

  @keyframes ff-logo-float-smooth {
    0%   { transform: translate3d(0, 0, 0); }
    35%  { transform: translate3d(1px, -5px, 0); }
    70%  { transform: translate3d(-1px, -8px, 0); }
    100% { transform: translate3d(0, 0, 0); }
  }

  @keyframes ff-logo-swing-smooth {
    0%   { transform: rotate(-.8deg); }
    50%  { transform: rotate(1deg); }
    100% { transform: rotate(-.8deg); }
  }
}


/* v2.17 Navigation usability fix */
@media (max-width: 980px) {
  .ff-nav__list a {
    display: block;
    padding: 8px 0;
  }
}
