:root {
  --fw-font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --fw-text: #e9f6f5;
  --fw-muted: rgba(233,246,245,.72);

  --fw-bg: #0a1b1f;

  --fw-panel: rgba(255,255,255,.08);
  --fw-border: rgba(255,255,255,.12);

  --fw-aqua: #e23b2e;
  --fw-aqua-2: #b71f1a;

  --fw-r: 16px;
  --fw-r2: 22px;
  --fw-g: 16px;
}

*, *::before, *::after { box-sizing: border-box; }

html { height: 100%; }

body {
  margin: 0;
  font-family: var(--fw-font);
  color: var(--fw-text);
  background-color: var(--fw-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      to bottom,
      rgba(8,12,25,.10) 0%,
      rgba(7,20,22,.40) 88%,
      var(--fw-bg) 100%
    ),
    var(--fw-bg-image);
  background-position: center top, center top;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--fw-aqua); }

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

.fw-hero-logo a {
  display: inline-flex;
  pointer-events: auto;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

.fw-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.fw-card {
  background: var(--fw-panel);
  border: 1px solid var(--fw-border);
  border-radius: var(--fw-r2);
  padding: 18px;
}

.fw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(226,59,46,.45);
  background: rgba(226,59,46,.12);
  color: var(--fw-text);
  cursor: pointer;
  user-select: none;
}
.fw-btn:hover { background: rgba(226,59,46,.18); border-color: rgba(226,59,46,.62); }
.fw-btn:active { transform: translateY(1px); }

.site-header {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
  pointer-events: none;
}

.fw-page {
  flex: 1;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.site-header-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.site-header .actions,
.site-header nav,
.site-header .site-navigation,
.site-header .site-sale-banner,
.site-header .log-in { display: none; }

.site-header .user-actions {
  position: absolute;
  top: 18px;
  right: 20px;
}

.site-title {
  margin: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
}
.site-title a { display: inline-flex; align-items: center; }
.site-title img { height: 280px; width: auto; }

.site-header button:not(.fw-hero-icon) {
  font: inherit;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--fw-text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.site-header button:not(.fw-hero-icon):hover {
  border-color: rgba(226,59,46,.55);
  background: rgba(226,59,46,.10);
}

@media (max-width: 860px) {
  .site-header { top: 0; padding-top: 32px; }
  .site-header-inner { flex-wrap: wrap; gap: 14px; }
  .site-header .user-actions { top: 14px; right: 14px; }
  .fw-layout-wrap {
    flex-direction: column;
    padding-top: 220px;
  }
  .fw-sidebar {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-title { justify-content: flex-start; flex-basis: 100%; }
  .site-header .info { width: 100%; justify-content: center; }
}

.fw-hero-left,
.fw-hero-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  pointer-events: auto;
}

.fw-hero-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  pointer-events: auto;
}

@keyframes fw-hero-logo-z {
  0%,
  100% { transform: translateZ(0) scale(1); }
  50% { transform: translateZ(90px) scale(1.05); }
}

.fw-hero-logo img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  animation: fw-hero-logo-z 3.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .fw-hero-logo img { animation: none; }
}

.fw-hero-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd3cf;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  cursor: pointer;
  font: inherit;
}

.fw-hero-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
}

.fw-hero-top {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ff4a3d;
}

.fw-hero-bottom {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #ffd3cf;
}

.fw-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(6,16,18,.45);
  border: 1px solid rgba(226,59,46,.35);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.fw-hero-icon:hover {
  border-color: rgba(226,59,46,.70);
  background: rgba(226,59,46,.12);
  box-shadow: 0 0 18px rgba(226,59,46,.25);
}

.fw-hero-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: #ff4a3d;
}

.fw-swap {
  display: inline-block;
  overflow: hidden;
  height: 1.1em;
  max-width: min(320px, 35vw);
}
.fw-swap-inner {
  display: block;
  transition: transform .22s ease;
}
.fw-swap-a,
.fw-swap-b {
  display: block;
  height: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fw-hero-info:hover .fw-swap-inner { transform: translateY(-1.1em); }

.fw-layout-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 360px;
  padding-bottom: 60px;
}

.fw-sidebar {
  flex: 0 0 280px;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fw-sidebar-user {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  max-height: 110px;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    rgba(7,20,22,.55) 0%,
    rgba(7,20,22,.35) 100%
  );
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;

  /* allow glow layers */
  position: relative;
}

/* Subtle glow "backplate" behind the skin so it's readable on dark bg */
.fw-sidebar-user::before{
  content:"";
  position:absolute;
  left: 14px;
  top: 10px;
  width: 96px;
  height: 120px;
  pointer-events:none;
  z-index: 0;
  background: radial-gradient(circle at 45% 35%,
    rgba(255,74,61,.28) 0%,
    rgba(255,74,61,.14) 28%,
    rgba(255,74,61,0) 70%
  );
  filter: blur(2px);
  opacity: .95;
}

/* Ensure the canvas + info sit above the glow backplate */
.fw-sidebar-user > *{ position: relative; z-index: 1; }

/* --- Skin canvas glow + brighten --- */
.fw-skin-canvas{
  flex-shrink: 0;
  image-rendering: pixelated;
  display: block;

  /* makes the model read brighter without washing out */
  filter:
    brightness(1.18)
    saturate(1.08)
    drop-shadow(0 0 6px rgba(255,74,61,.28))
    drop-shadow(0 0 16px rgba(255,74,61,.20))
    drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

/* Optional: slightly stronger glow on hover (matches your button polish) */
.fw-sidebar-user:hover .fw-skin-canvas{
  filter:
    brightness(1.24)
    saturate(1.10)
    drop-shadow(0 0 8px rgba(255,74,61,.34))
    drop-shadow(0 0 22px rgba(255,74,61,.24))
    drop-shadow(0 12px 22px rgba(0,0,0,.38));
}

.fw-sidebar-avatar {
  width: 50px;
  height: auto;
  border-radius: 0;
  image-rendering: pixelated;
  border: 0;
  flex-shrink: 0;
}

.fw-sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fw-sidebar-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--fw-text);
}

/* --- MUCH MORE POLISHED Login/Logout button (only affects these links) --- */
a.fw-sidebar-login,
a.fw-sidebar-logout{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 38px !important;
  padding: 0 18px !important;
  min-width: 92px !important;

  border-radius: 14px !important;
  border: 1px solid rgba(255,74,61,.55) !important;

  background:
    radial-gradient(120% 140% at 30% 20%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(180deg, rgba(255,74,61,.20) 0%, rgba(183,31,26,.10) 100%) !important;

  color: var(--fw-text) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .02em !important;

  box-shadow:
    0 14px 30px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 0 0 1px rgba(0,0,0,.22) !important;

  text-decoration: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;

  transition:
    transform .12s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    filter .18s ease !important;
}

a.fw-sidebar-login:hover,
a.fw-sidebar-logout:hover{
  border-color: rgba(255,74,61,.85) !important;
  filter: saturate(1.08) brightness(1.05) !important;
  box-shadow:
    0 18px 38px rgba(0,0,0,.42),
    0 0 22px rgba(255,74,61,.20),
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 0 0 1px rgba(0,0,0,.18) !important;
}

a.fw-sidebar-login:active,
a.fw-sidebar-logout:active{
  transform: translateY(1px) scale(.99) !important;
}
/* --- end button --- */

.fw-sidebar-nav {
  background: linear-gradient(
    to bottom,
    rgba(7,20,22,.50) 0%,
    rgba(7,20,22,.28) 75%,
    rgba(7,20,22,0) 100%
  );
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 10px 0;
  overflow: visible;
}

.fw-sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 14px;
}

.fw-sidebar-nav li { position: relative; }
.fw-sidebar-nav > ul > li { margin: 4px 0; }

.fw-sidebar-nav > ul > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: rgba(255,255,255,.94);
  border-radius: 18px;
  background: transparent;
  transition: background .15s ease, box-shadow .15s ease, color .15s ease;
}

.fw-nav-row {
  width: 100%;
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  background: transparent;
  overflow: hidden;
  transition: background .15s ease, box-shadow .15s ease;
}

.fw-nav-parent-link,
.fw-nav-row > a {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: rgba(255,255,255,.94);
  background: transparent;
}

.fw-nav-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  max-width: 38px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.98;
}

.fw-sidebar-nav a:hover { color: #fff; }

.fw-sidebar-nav > ul > li > a:hover,
.fw-nav-row:hover {
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.fw-sidebar-nav > ul > li.fw-nav-active > a {
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
  color: #fff;
}

.fw-nav-has-children.fw-nav-active > .fw-nav-row {
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
}

.fw-nav-item.fw-nav-active > .fw-nav-row {
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
}

.fw-nav-toggle {
  width: 48px;
  min-width: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0 !important;
  background: transparent;
  color: rgba(233,246,245,.72);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background .15s ease, color .15s ease;
}

.fw-nav-row:hover > .fw-nav-toggle {
  background: rgba(255,255,255,.06);
  color: #fff;
}

.fw-nav-has-children.fw-nav-active > .fw-nav-row > .fw-nav-toggle {
  color: #ff4a3d;
}

.fw-nav-chevron {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  font-size: 0;
  line-height: 0;
}

.fw-nav-chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .18s ease;
}

.fw-nav-open .fw-nav-chevron::before,
.fw-nav-toggle[aria-expanded="true"] .fw-nav-chevron::before {
  transform: rotate(45deg);
}

.fw-subnav {
  padding-left: 22px;
  margin: 6px 0 0;
}

.fw-subnav li a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.86);
  border-radius: 12px;
  transition: background .15s ease, color .15s ease;
}

.fw-subnav li a:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}

.fw-subnav li.fw-nav-active > a {
  background: rgba(255,74,61,.09);
  color: #fff;
}

.fw-sidebar-modules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.fw-sidebar-modules ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.fw-sidebar-modules li {
  width: 100%;
  padding: 0;
  margin: 0;
}

.fw-sidebar-modules .widget {
  background: linear-gradient(to bottom, rgba(7,20,22,.50) 0%, rgba(7,20,22,.28) 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 16px 20px;
  color: rgba(233,246,245,.88);
  width: 100%;
  box-sizing: border-box;
}

.fw-sidebar-modules .widget-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(226,59,46,.92);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.fw-sidebar-modules .purchases {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fw-sidebar-modules .purchase {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fw-sidebar-modules .purchase .avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
  image-rendering: pixelated;
}

.fw-sidebar-modules .purchase .info { min-width: 0; }

.fw-sidebar-modules .purchase .username {
  font-size: 13px;
  font-weight: 600;
  color: var(--fw-text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fw-sidebar-modules .purchase .info p {
  font-size: 11px;
  color: rgba(233,246,245,.55);
  margin: 2px 0 0;
}

.fw-sidebar-modules .purchase .info time {
  font-size: 11px;
  color: rgba(233,246,245,.45);
}

.fw-sidebar-modules .purchase .price {
  color: #f6ad55;
  font-weight: 600;
}

.fw-sidebar-modules .sep { margin: 0 3px; opacity: .4; }

.fw-sidebar-modules .widget-top-donator { text-align: center; }

.fw-sidebar-modules .widget-top-donator .avatar {
  width: 68px;
  height: auto;
  max-height: 102px;
  border-radius: 8px;
  margin: 0 auto 10px;
  display: block;
  image-rendering: pixelated;
}

.fw-sidebar-modules .widget-top-donator .username {
  font-size: 14px;
  font-weight: 700;
  color: var(--fw-text);
  margin: 0 0 4px;
}

.fw-sidebar-modules .widget-top-donator p {
  font-size: 12px;
  color: rgba(233,246,245,.60);
  margin: 0;
}

.fw-sidebar-modules .widget-top-donator strong { color: #f6ad55; }

.fw-sidebar-modules .empty {
  font-size: 12px;
  color: rgba(233,246,245,.45);
  text-align: center;
  margin: 0;
  padding: 8px 0;
}

.fw-main-panel {
  flex: 1;
  min-width: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,20,22,.50) 0%,
    rgba(7,20,22,.28) 75%,
    rgba(7,20,22,0) 100%
  );
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 40px 48px 80px;
}

body.fw-is-ranks-page .fw-main-panel {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.fw-welcome {
  text-align: center;
  padding: 20px 0 40px;
}

.fw-welcome-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(233,246,245,.55);
  margin: 0 0 8px;
}

.fw-welcome-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--fw-text);
  margin: 0 0 20px;
}

.fw-welcome-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff4a3d, transparent);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.fw-welcome-body {
  font-size: 16px;
  font-weight: 700;
  color: var(--fw-text);
  margin: 0 0 16px;
}

.fw-welcome-desc { max-width: 640px; margin: 0 auto; }

.fw-topbar {
  position: absolute;
  top: 16px;
  right: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}

.fw-topbar-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(7,20,22,.42);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--fw-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .18s, border-color .18s;
}
.fw-topbar-btn:hover {
  background: rgba(226,59,46,.15);
  border-color: rgba(226,59,46,.45);
  color: var(--fw-text);
}

.fw-welcome-payment-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px auto 24px;
  max-width: 500px;
}

.fw-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.15);
}

.fw-payment-logo {
  height: 80px;
  width: auto;
  display: block;
}

.fw-welcome-disclaimer {
  font-size: 13px;
  color: rgba(233,246,245,.50);
  margin-top: 8px;
}

.fw-welcome-desc p {
  font-size: 14px;
  color: rgba(233,246,245,.78);
  line-height: 1.7;
  margin: 0 0 10px;
}

.fw-welcome-desc a {
  color: #ff4a3d;
  text-decoration: underline;
}

.fw-footer {
  background: rgba(7,20,22,.70);
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: auto;
}

.fw-footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.fw-footer-cols {
  display: flex;
  gap: 120px;
  margin-right: auto;
  margin-left: 280px;
}

.fw-footer-top { padding: 48px 0 40px; }

.fw-footer-brand { flex: 1; max-width: 340px; }

.fw-footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--fw-text);
  margin: 0 0 12px;
}

.fw-footer-tagline {
  font-size: 13px;
  color: rgba(233,246,245,.60);
  line-height: 1.65;
  margin: 0 0 20px;
}

.fw-footer-socials {
  display: flex;
  gap: 10px;
}

.fw-footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.09);
  border:  1px solid rgba(255,255,255,.12);
  color: rgba(233,246,245,.78);
  text-decoration: none;
  transition: background .18s, border-color .18s, color .18s;
}
.fw-footer-social-btn:hover {
  background: rgba(226,59,46,.15);
  border-color: rgba(226,59,46,.45);
  color: var(--fw-text);
}

.fw-footer-col { flex: 0 0 auto; }

.fw-footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ff4a3d;
  margin: 0 0 18px;
}

.fw-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fw-footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(233,246,245,.68);
  text-decoration: none;
  transition: color .15s, padding-left .15s;
  display: inline-block;
}
.fw-footer-links a:hover {
  color: #ff4a3d;
  padding-left: 4px;
}

.fw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 0;
  background: rgba(255,255,255,.04);
}
.fw-footer-bottom .fw-footer-inner { align-items: center; }

.fw-footer-copy,
.fw-footer-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,.62);
}