.flicktool-filter-bar,
.flicktool-card {
  --ft-accent: #003153;
  --ft-accent-glow: rgba(0, 49, 83, 0.12);
  --ft-text-main: #003153;
  --ft-text-muted: #64748b;
  --ft-input-bg: #ffffff;
  --ft-input-border: #B6C2D1;
  --ft-btn-bg: #ffffff;
  --ft-btn-text: #003153;
  --ft-shadow-premium: 0 4px 12px rgba(0, 49, 83, 0.05);
  --ft-gradient: linear-gradient(135deg, #003153, #002147);
}

.flicktool-cover {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}


.flicktool-cover>* {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .flicktool-cover {
    padding: 0 !important;
    border-radius: 12px;
  }
}

.wp-block-cover p {
  margin: 0 !important;
  padding: 0 !important;
}

.flicktool-filter-bar {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.flicktool-search-container {
  width: 100%;
  max-width: 720px;
  margin-bottom: 8px !important;
}

.flicktool-search-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.flicktool-search-input {
  width: 100% !important;
  padding: 16px 120px 16px 26px !important;
  background: #ffffff !important;
  border: 1.5px solid #B6C2D1 !important;
  border-radius: 99px !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--ft-text-main) !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  text-align: left !important;
  font-family: 'Inter', sans-serif !important;
}

.flicktool-search-input::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}

.flicktool-search-input:focus {
  outline: none;
  border: 1.5px solid #90a1b9 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1) !important;
}

.flicktool-search-controls {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.flicktool-search-clear {
  display: none;
  cursor: pointer;
  pointer-events: auto;
  color: #94a3b8;
  transition: color 0.2s, transform 0.2s;
  background: none;
  border: none;
  padding: 5px;
  margin-right: 8px;
  line-height: 0;
}

.flicktool-search-clear:hover {
  color: #E63946;
  transform: scale(1.1);
}

.flicktool-search-separator {
  width: 1px;
  height: 28px;
  background: #cbd5e1;
  margin-right: 12px;
  pointer-events: none;
  opacity: 0.8;
}

.flicktool-search-icon {
  color: #E63946 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto !important;
  cursor: pointer !important;
  width: 24px;
  height: 24px;
  position: static !important;
  transition: transform 0.2s ease;
}

.flicktool-search-icon:hover {
  transform: scale(1.15);
}

.flicktool-search-icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 2.5 !important;
}

.flicktool-trending-bar {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-top: 8px !important;
  margin-bottom: 2px !important;
  padding: 0 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ft-trending-label {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--ft-text-muted) !important;
  font-family: 'Inter', sans-serif !important;
  margin: 0 15px 0 0 !important;
  padding: 0 !important;
}

.ft-trending-text {
  display: inline !important;
}

.ft-trending-label svg {
  flex-shrink: 0 !important;
  transform: translateY(3px) !important;

}

.ft-trending-link {
  display: inline-flex !important;
  align-items: baseline !important;
  white-space: nowrap !important;
  gap: 8px !important;
  color: var(--ft-text-muted) !important;
  font-size: 13.5px !important;
  font-family: 'Inter', sans-serif !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  margin: 0 15px 0 0 !important;
  padding: 0 !important;
}

.ft-trending-link:hover {
  color: var(--ft-accent) !important;
}

.ft-trending-link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E63946;
  box-shadow: 0 0 0 rgba(230, 57, 70, 0.4);
  animation: ft-pulse-glow 2s infinite;
  display: inline-block !important;
  flex-shrink: 0 !important;
  transform: translateY(-1.5px) !important;

}

@keyframes ft-pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6);
  }

  70% {
    box-shadow: 0 0 0 5px rgba(230, 57, 70, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

.flicktool-categories-container {
  width: 100%;
  max-width: 1200px;
}

.flicktool-categories-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 10px !important;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.flicktool-category-btn {
  background: #ffffff !important;
  color: #003153 !important;
  border: 1.5px solid var(--ft-input-border) !important;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s !important;
  padding: 8px 18px !important;
  font-size: 0.9rem !important;
  border-radius: 99px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: 0 2px 4px rgba(0, 49, 83, 0.06) !important;
}

.flicktool-category-btn:hover {
  background: #e2e8f0 !important;
  border: 1.5px solid var(--ft-accent) !important;
  color: var(--ft-accent) !important;
  transform: none !important;
  box-shadow: 0 4px 8px rgba(0, 49, 83, 0.12) !important;
}

.flicktool-category-btn.active {
  background: var(--ft-gradient) !important;
  border: 1.5px solid var(--ft-accent) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 49, 83, 0.15) !important;
  transform: none !important;
  font-weight: 600 !important;
}

.flicktool-category-btn:first-child {
  margin-right: 1px !important;
}

.flicktool-category-btn.active:first-child {
  margin-right: 1px !important;
}

.flicktool-results-count {
  margin: 0;
  min-height: 15px;
  font-size: 0.9rem;
  color: var(--ft-text-muted);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s ease, min-height 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flicktool-results-count:not(:empty) {
  opacity: 1;
}

.wp-block-post-template,
.wp-block-query-loop {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.flicktool-result-item {
  list-style: none;
  margin: 0 !important;
  padding: 0;
  display: flex;
}

.flicktool-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 1px solid #D6DDE6;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  padding: 0 !important;

}

.flicktool-card-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem;
  text-decoration: none !important;
  color: inherit !important;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  align-content: flex-start;
}

.flicktool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.flicktool-card-wrap::after {
  cursor: pointer !important;
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23003153' stroke-width='2.5'><path stroke-linecap='round' stroke-linejoin='round' d='M5 12h14M13 6l6 6-6 6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.flicktool-card-wrap:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.flicktool-thumb {
  width: 48px;
  height: 48px;
  margin: 0 10px 0 0;

  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.flicktool-thumb:hover {
  transform: scale(1.1);
}

.flicktool-img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain;
  display: block;
  background: transparent !important;
  transition: transform 0.25s ease;
  will-change: transform;
}

.flicktool-title {
  margin: 0 !important;
  font-size: 1.13rem !important;
  font-weight: 600 !important;
  line-height: 1.2;
  font-family: 'Inter', sans-serif !important;
  flex: 1;
  color: #1e293b;
}

.flicktool-excerpt {
  flex: 0 0 100%;
  margin-top: 1rem !important;
  margin-bottom: 10px !important;
}

.flicktool-excerpt p {
  margin: 0 !important;
  font-size: 13px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 300;
  color: #475569;
  line-height: 1.4 !important;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flicktool-loading {
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(11, 28, 45, 0.95);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  z-index: 10000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.loading-text {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.95;
  margin: 0;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.flicktool-wheel-spinner {
  width: 24px !important;
  height: 24px !important;
}

.track {
  animation: none;
}

.wheel-path {
  animation: flicktool-wheel-spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

@keyframes flicktool-wheel-spin {
  0% {
    transform: rotate(0deg);
    stroke-dashoffset: 1;
  }

  50% {
    stroke-dashoffset: 0.5;
  }

  100% {
    transform: rotate(360deg);
    stroke-dashoffset: 1;
  }
}

.flicktool-no-results {
  width: 100%;
  min-height: 28px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: .2rem;
  text-align: center;
  box-sizing: border-box;
  color: var(--ft-text-muted);
}

.wp-block-post-template .flicktool-no-results,
.wp-block-query-loop .flicktool-no-results {
  grid-column: 1 / -1;
  margin: 0 !important;
}

.flicktool-no-results p {
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.4;
  max-width: 500px;
}

body.ftcf-filtering :where(.wp-block-query-pagination) {
  display: none !important;
}

@media (max-width: 768px) {
  .flicktool-filter-bar {
    gap: 15px !important;
  }

  .flicktool-search-input {
    padding: 12px 42px 12px 20px !important;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: var(--ft-shadow-premium);
  }

  .flicktool-search-input::placeholder {
    font-size: 0.95rem;
  }

  .flicktool-search-input:focus {
    box-shadow: 0 0 0 3px var(--ft-accent-glow), 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .flicktool-search-icon {
    right: 14px !important;
    width: 30px !important;
    height: 30px !important;
  }

  .flicktool-search-icon:hover,
  .flicktool-search-icon:focus {
    transform: translateY(-1px) scale(1.03);
  }

  .flicktool-search-icon:active {
    transform: translateY(0) scale(0.97);
  }

  .flicktool-categories-scroll {
    gap: 8px !important;
  }

  .flicktool-category-btn {
    padding: 8px 14px !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 900px) {
  .flicktool-filter-bar {
    align-items: center !important;
    text-align: center !important;
  }

  .flicktool-categories-scroll {
    justify-content: center !important;
  }

  .flicktool-results-count {
    text-align: center !important;
    padding-left: 0;
  }
}

.flicktool-hero-section,
.flicktool-hero-section * {
  box-sizing: border-box;
}

.flicktool-hero-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background-color: transparent;
}

.hero-header {
  text-align: center;
  margin-bottom: 24px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

.hero-title-wrapper {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  margin-bottom: 16px !important;
  width: max-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  transition: none !important;
}

.title-top,
.title-bottom,
.title-top span,
.title-bottom span {
  transition: none !important;
}

@keyframes ftFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ftSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ftSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-top {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  color: #0f172a;
  margin: 0;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  opacity: 0;
  animation: ftFadeIn 0.1s ease-out forwards;
  position: relative;
  z-index: 2;
}

.title-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  opacity: 0;
  animation: ftSlideDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.25s;
  position: relative;
  z-index: 1;
}

@keyframes ftRevealLeft {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }

  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.title-bottom-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-speed-lines {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(calc(-50% + 3px)) skewX(-15deg);
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.speed-line {
  height: 4px;
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  animation: ftRevealLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.speed-line.line-top {
  width: 30px;
  background: linear-gradient(135deg, #00bc7d, #009c68);
  animation-delay: 0.3s;
}

.speed-line.line-middle {
  width: 50px;
  background: linear-gradient(135deg, #ff6900, #e05b00);
  animation-delay: 0.4s;
}

.speed-line.line-bottom {
  width: 70px;
  background: linear-gradient(135deg, #00a6f4, #0084d1);
  animation-delay: 0.5s;
}

.gradient-flicktool {
  background: linear-gradient(135deg, #6366f1, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-free {
  background: linear-gradient(135deg, #64748b, #6b7280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-tools {
  background: linear-gradient(135deg, #00a6f4, #0084d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-apps {
  background: linear-gradient(135deg, #ff6900, #e05b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-action {
  background: linear-gradient(135deg, #00bc7d, #009c68);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-ampersand {
  color: #94a3b8;
  font-weight: 800;
  margin: 0 4px;
}

.hero-muted {
  color: #64748b;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  width: 100%;
  max-width: 760px;
  margin: 0 auto !important;
  display: block;
  text-align: center !important;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 180px));
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.hero-stat-card {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(17, 24, 39, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px -6px rgba(17, 24, 39, 0.04);
}

.hero-stat-card.theme-indigo:hover {
  border-color: rgba(0, 166, 244, 0.4);
}

.hero-stat-card.theme-emerald:hover {
  border-color: rgba(0, 188, 125, 0.4);
}

.hero-stat-card.theme-orange:hover {
  border-color: rgba(255, 105, 0, 0.4);
}

.hero-stat-card.theme-pink:hover {
  border-color: rgba(246, 51, 154, 0.4);
}

.stat-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrapper svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.stat-number {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.1;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-stat-card.theme-indigo .stat-icon-wrapper {
  color: #00a6f4;
  background-color: rgba(0, 166, 244, 0.08);
}

.hero-stat-card.theme-indigo .stat-number {
  color: #00a6f4;
}

.hero-stat-card.theme-emerald .stat-icon-wrapper {
  color: #ff6900;
  background-color: rgba(255, 105, 0, 0.08);
}

.hero-stat-card.theme-emerald .stat-number {
  color: #ff6900;
}

.hero-stat-card.theme-orange .stat-icon-wrapper {
  color: #00bc7d;
  background-color: rgba(0, 188, 125, 0.08);
}

.hero-stat-card.theme-orange .stat-number {
  color: #00bc7d;
}

.hero-stat-card.theme-pink .stat-icon-wrapper {
  color: #f6339a;
  background-color: rgba(246, 51, 154, 0.08);
}

.hero-stat-card.theme-pink .stat-number {
  color: #f6339a;
}

@media(max-width: 1080px) {
  .title-top {
    font-size: 2.8rem !important;
  }

  .title-bottom {
    font-size: 1.8rem;
  }

  .hero-speed-lines {
    gap: 4px;
    margin-right: 8px;
    transform: translateY(calc(-50% - -1px)) skewX(-15deg);
  }

  .speed-line {
    height: 3px;
  }

  .speed-line.line-top {
    width: 24px;
  }

  .speed-line.line-middle {
    width: 40px;
  }

  .speed-line.line-bottom {
    width: 56px;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 160px));
    gap: 16px;
  }

  .hero-stat-card {
    max-width: 160px;
    padding: 8px 12px;
    gap: 8px;
  }

  .stat-icon-wrapper {
    width: 32px;
    height: 32px;
  }

  .stat-icon-wrapper svg {
    width: 16px;
    height: 16px;
  }

  .stat-number {
    font-size: 0.95rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .flicktool-search-container {
    max-width: 688px !important;
  }

  .flicktool-search-input {
    padding: 14px 100px 14px 20px !important;
    font-size: 0.95rem !important;
  }
}

@media(max-width: 768px) {
  .title-top {
    font-size: 1.8rem !important;
    white-space: normal !important;
  }

  .title-bottom {
    font-size: 1.2rem;
  }

  .hero-speed-lines {
    gap: 2px;
    margin-right: 5px;
    transform: translateY(calc(-50% - -1px)) skewX(-15deg);
  }

  .speed-line {
    height: 2px;
  }

  .speed-line.line-top {
    width: 14px;
  }

  .speed-line.line-middle {
    width: 24px;
  }

  .speed-line.line-bottom {
    width: 34px;
  }

  .mobile-break-group {
    display: block;
  }

  .hero-title-wrapper {
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: .8rem;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 150px));
    gap: 10px;
  }

  .hero-stat-card {
    max-width: 150px;
    padding: 10px;
    gap: 6px;
    border-radius: 10px;
    text-align: center;
  }

  .stat-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .stat-icon-wrapper svg {
    width: 16px;
    height: 16px;
  }

  .stat-number {
    font-size: 0.8rem;
    line-height: 1.2 !important;
  }

  .stat-label {
    font-size: 0.65rem;
    white-space: normal;
    line-height: 1.2;
  }

  .flicktool-search-container {
    max-width: 90% !important;
    margin: 0 auto !important;
  }

  .flicktool-search-input {
    padding: 10px 80px 10px 16px !important;
    font-size: 0.85rem !important;
  }

  .flicktool-search-controls {
    right: 14px !important;
  }

  .flicktool-search-clear {
    margin-right: 6px !important;
    padding: 4px !important;
  }

  .flicktool-search-clear svg {
    width: 14px !important;
    height: 14px !important;
  }

  .flicktool-search-separator {
    height: 20px !important;
    margin-right: 8px !important;
  }

  .flicktool-search-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .flicktool-search-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .flicktool-category-btn {
    order: var(--mobile-order, 0);
  }

  .ft-trending-link {
    font-size: 0.65rem !important;
  }
}