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

:root {
  --bg: #0a0a0f;
  --bg2: #12121a;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c2a;
  --bg-elevated: #1e1e2d;
  --bg-glass: rgba(18, 18, 26, .85);

  /* Thème violet prédominant */
  --accent: #9d4edd;
  --accent-glow: rgba(157, 78, 221, .35);
  --accent-soft: rgba(157, 78, 221, .12);
  --accent-hover: #c77dff;

  --text: #f0f0f5;
  --text2: #9898b0;
  --text-dim: #5c5c7a;
  --border: rgba(255, 255, 255, .06);
  --border-h: rgba(255, 255, 255, .12);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;

  --shadow: 0 4px 20px rgba(0, 0, 0, .4);
  --shadow-glow: 0 0 30px var(--accent-glow);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --nav-h: 64px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

select {
  font-family: inherit;
}

/* Custom scrollbar pour un look clean */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--text-dim);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text2);
}

/* --- BANDEAU ADBLOCK --- */
.adblock-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.adblock-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
  margin-left: 4px;
}

.adblock-banner button {
  position: absolute;
  right: 16px;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  font-weight: 800;
  transition: color 150ms;
}

.adblock-banner button:hover {
  color: #fff;
}

/* --- NAVBAR --- */
#fs-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 10, 15, .95), rgba(10, 10, 15, .8));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: transform 250ms var(--ease), background 250ms var(--ease), top 250ms var(--ease);
}

#fs-nav.scrolled {
  background: rgba(10, 10, 15, .97);
  box-shadow: var(--shadow);
}

.fs-nav-in {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform 150ms var(--ease);
}

.logo:hover {
  transform: scale(1.03);
}

.logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.fs-lg-i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--r-sm);
  font-size: 14px;
  box-shadow: var(--shadow-glow);
}

.fs-lg-t {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
  font-family: 'Sedgwick Ave Display', cursive;
}

.fs-lg-a {
  color: var(--accent);
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, .04);
  border-radius: var(--r-lg);
  padding: 4px;
}

.fs-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: all 150ms var(--ease);
  white-space: nowrap;
}

.fs-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.fs-tab.active {
  color: var(--text);
  background: var(--accent);
  box-shadow: var(--shadow-glow);
}

.fs-tab svg {
  flex-shrink: 0;
}

.fs-nav-r {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fs-mag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text2);
  transition: all 150ms var(--ease);
}

.fs-mag:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .08);
}

/* --- RECHERCHE OVERLAY --- */
.fs-search-box {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease);
}

.fs-search-box.active {
  opacity: 1;
  pointer-events: all;
}

.fs-s-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 90%;
  max-width: 640px;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-h);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
  transform: translateY(-20px);
  transition: transform 250ms var(--ease);
}

.fs-search-box.active .fs-s-bar {
  transform: translateY(0);
}

.fs-s-bar svg {
  flex-shrink: 0;
  color: var(--accent);
}

.fs-s-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--text);
  font-family: var(--font);
}

.fs-s-bar input::placeholder {
  color: var(--text-dim);
}

.fs-x {
  font-size: 18px;
  color: var(--text-dim);
  transition: color 150ms var(--ease);
}

.fs-x:hover {
  color: var(--text);
}

.fs-res {
  width: 90%;
  max-width: 640px;
  margin-top: 12px;
  max-height: 60vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fs-s-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 150ms var(--ease);
}

.fs-s-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateX(4px);
}

.fs-s-item img {
  width: 44px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.fs-s-info {
  flex: 1;
  min-width: 0;
}

.fs-s-t {
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fs-s-m {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.fs-zero {
  text-align: center;
  padding: 40px;
  color: var(--text-dim);
  font-size: 14px;
}

/* --- SELECTEUR TRI --- */
.order-selector select {
  padding: 8px 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 150ms var(--ease);
  appearance: none;
  -webkit-appearance: none;
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239898b0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.order-selector select:hover {
  border-color: var(--border-h);
  background-color: rgba(255, 255, 255, .08);
}

.order-selector select option {
  background: var(--bg2);
  color: var(--text);
}

/* --- HERO SECTION --- */
.fefa-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  overflow: hidden;
}

.fefa-fefa-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, var(--accent-glow), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 60%, rgba(99, 102, 241, .15), transparent 50%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(16, 185, 129, .1), transparent 50%);
  animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  from {
    opacity: .6;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.fefa-fefa-hero-in {
  position: relative;
  z-index: 2;
  animation: fadeUp .8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fefa-htitle {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fefa-hero-line1 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text2);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.fefa-hero-line2 {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  font-family: 'Sedgwick Ave Display', cursive;
}

.accent {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}

.fefa-hdesc {
  margin: 20px auto 0;
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
}

.fefa-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.5px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.fefa-hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* --- MAIN & GRILLE --- */
#fs-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.5px;
}

.fs-cat-ico {
  font-size: 28px;
}

.fs-page-info {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.fs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.fs-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 250ms var(--ease);
  animation: cardIn .5s ease-out both;
}

.fs-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(157, 78, 221, .15), var(--shadow);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fs-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.fs-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}

.fs-item:hover .fs-poster img {
  transform: scale(1.08);
}

.fs-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 15, .95) 0%, rgba(10, 10, 15, .3) 40%, transparent 60%);
  pointer-events: none;
}

.fs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 250ms var(--ease);
  box-shadow: var(--shadow-glow);
  z-index: 2;
}

.fs-item:hover .fs-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.fs-play-btn svg {
  margin-left: 3px;
}

.fs-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.fs-bdg {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  backdrop-filter: blur(8px);
}

.fs-bdg-q {
  background: rgba(16, 185, 129, .25);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, .3);
}

.fs-bdg-v {
  background: rgba(99, 102, 241, .25);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, .3);
}

.fs-bdg-t {
  background: rgba(244, 114, 182, .25);
  color: #f472b6;
  border: 1px solid rgba(244, 114, 182, .3);
}

.fs-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  z-index: 2;
}

.fs-t {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fs-y {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  font-weight: 500;
}

/* --- LOADER --- */
.fs-loader {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px;
  color: var(--text-dim);
  font-size: 14px;
}

.fs-loader.active {
  display: flex;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- PAGINATION --- */
.fs-pagin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 150ms var(--ease);
  padding: 0 12px;
}

.page-btn:hover:not(.active):not(:disabled) {
  background: var(--bg-card-hover);
  border-color: var(--border-h);
  color: var(--text);
}

.page-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.page-btn:disabled {
  opacity: .3;
  cursor: not-allowed;
}

.page-ellipsis {
  color: var(--text-dim);
  font-size: 14px;
  padding: 0 4px;
}

/* --- MODAL --- */
.fefa-modal-bg {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, .9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease);
}

.fefa-modal-bg.active {
  opacity: 1;
  pointer-events: all;
}

.fefa-modal-in {
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg2);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
  transform: scale(.92) translateY(20px);
  transition: transform 250ms var(--ease);
}

.fefa-modal-bg.active .fefa-modal-in {
  transform: none;
}

.fefa-vid-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  z-index: 10;
  transition: all 150ms var(--ease);
}

.fefa-vid-x:hover {
  background: var(--accent);
  color: #fff;
}

.fefa-m-head {
  padding: 24px 24px 16px;
}

.fefa-m-head h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.3px;
  padding-right: 48px;
}

.fefa-vid-m {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.fefa-vid-m .fs-bdg {
  font-size: 11px;
  padding: 4px 10px;
}

.fefa-vid-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.fefa-vid-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.fs-ep-sel {
  padding: 20px 24px 24px;
}

.fs-s-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.season-tab {
  padding: 8px 18px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: all 150ms var(--ease);
}

.season-tab:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
}

.season-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.fs-ep-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}

.episode-btn {
  padding: 10px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 150ms var(--ease);
}

.episode-btn:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  border-color: var(--border-h);
}

.episode-btn.active {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
}

/* --- FOOTER --- */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}

.fs-ftr-in {
  max-width: 1400px;
  margin: 0 auto;
}

.fs-ftr-b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.fs-ftr-b .fs-lg-i {
  width: 44px;
  height: 44px;
  font-size: 16px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.fs-ftr-b .fs-lg-t {
  font-size: 26px;
}

.footer-desc {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 4px;
}

.fs-ftr-l {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
}

.fs-ftr-c {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-ftr-c h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 4px;
}

.fs-ftr-c a {
  font-size: 14px;
  color: var(--text2);
  transition: color 150ms var(--ease);
}

.fs-ftr-c a:hover {
  color: var(--accent);
}

.fs-ftr-bot {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}

/* --- SKELETONS & FALLBACKS --- */
.card-skeleton {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 2/3;
  position: relative;
}

.card-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .04) 50%, transparent 100%);
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

.fs-poster img.error {
  display: none;
}

.fs-poster .fs-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  color: var(--text-dim);
  font-size: 40px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .fs-nav-in {
    padding: 0 16px;
  }

  .nav-tabs {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    border-radius: 0;
    padding: 6px 8px;
    justify-content: center;
    gap: 2px;
  }

  .fs-tab {
    flex-direction: column;
    gap: 4px;
    padding: 8px 16px;
    font-size: 10px;
  }

  .order-selector select {
    font-size: 12px;
    padding: 6px 28px 6px 10px;
  }

  .fefa-hero {
    min-height: 60vh;
    padding-top: calc(var(--nav-h) + 20px);
    padding-bottom: 40px;
  }

  .fefa-hero-line1 {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .fefa-hero-stats {
    gap: 24px;
  }

  .stat-num {
    font-size: 22px;
  }

  .fs-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .section-title {
    font-size: 20px;
  }

  #fs-main {
    padding: 24px 16px 100px;
  }

  .fs-ftr-l {
    gap: 40px;
  }

  .fefa-modal-in {
    border-radius: var(--r-lg);
  }

  .fs-ep-list {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }
}

@media (max-width: 480px) {
  .fs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .fefa-hdesc {
    font-size: 14px;
  }

  .fs-s-bar {
    padding: 12px 16px;
  }

  .fs-ftr-l {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
}
}
