/* =========================================
   AnimeEXT — Index page styles
   ========================================= */

html,
body {
  overflow-x: hidden !important;
}

/* ── Page loader ── */
#loader {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loader.fade-once {
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
}

#loader.fade-once.fade-in {
  opacity: 1;
  display: flex;
}

#loader.fade-once.fade-out {
  opacity: 0;
}

/* ── Loader visual: katana slash ── */
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: logoReveal 0.6s ease forwards;
  opacity: 0;
  animation-delay: 0.1s;
}

.loader-logo-text {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.loader-logo-text span {
  color: var(--accent);
}

.loader-logo-sub {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Progress bar */
.loader-bar-wrap {
  width: 200px;
  height: 3px;
  background: var(--bg-4);
  border-radius: 999px;
  overflow: hidden;
  animation: logoReveal 0.4s ease 0.4s forwards;
  opacity: 0;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #58a6ff);
  border-radius: 999px;
  box-shadow: 0 0 8px var(--accent);
  transition: width 0.3s ease-out;
}

@keyframes loadProgress {
  0% {
    width: 0%;
  }

  40% {
    width: 55%;
  }

  70% {
    width: 75%;
  }

  90% {
    width: 92%;
  }

  100% {
    width: 100%;
  }
}

/* Three dots fallback */
.dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotBounce 1s infinite ease-in-out;
  display: none;
}

.dot:nth-child(2) {
  animation-delay: 0.18s;
}

.dot:nth-child(3) {
  animation-delay: 0.36s;
}

.dot:nth-child(4) {
  animation-delay: 0.54s;
}

@keyframes dotBounce {

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

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

/* ── Fade utilities ── */
.fade-out {
  animation: fadeOutAnim 0.35s forwards;
}

.fade-in {
  animation: fadeInAnim 0.35s forwards;
}

@keyframes fadeOutAnim {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeInAnim {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    visibility: visible;
  }
}

/* ── Page transition animations ── */
.slide-in-right {
  animation: slideInRight 0.4s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 0.4s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Card container (old class kept for compat) ── */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ── Home feed cards (últimos episodios) ── */
.anime-card-init {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.anime-card-init:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--accent);
  border-color: var(--accent);
}

.card-img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: filter 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: transparent;
}

.anime-card-init:hover .card-img {
  filter: brightness(0.85);
  transform: scale(1.06);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 16px 16px;
  background: linear-gradient(to top, rgba(8, 12, 16, 0.98) 0%, rgba(8, 12, 16, 0.5) 65%, transparent 100%);
  z-index: 2;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.card-subtitle {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 3px 0 0;
  font-weight: 500;
}

/* Long-press progress bar */
.longpress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 10;
  border-radius: 0 2px 2px 0;
}

/* ── Anime modal ── */
#animeModal {
  backdrop-filter: blur(10px);
  padding-left: 0;
}

/* ════════════════════════════════════════════════════
   FEATURED BANNER — DISEÑO TARJETA CON COVER A LA DERECHA Y DIFUMINADO
   ════════════════════════════════════════════════════ */

.featured-banner {
  position: relative;
  min-height: 350px;
  margin-bottom: 36px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #121319;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.featured-banner:hover {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ── Halo difuminado de fondo suave ── */
.banner-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(60px) brightness(0.15) saturate(1.2);
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* ── Portada en el lado derecho con difuminado (gradient overlay + mask) ── */
.banner-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 15%, #000 50%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 15%, #000 50%);
}

.banner-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, #121319 0%, rgba(18, 19, 25, 0.8) 20%, rgba(18, 19, 25, 0.3) 45%, transparent 75%),
    linear-gradient(to top, #121319 0%, transparent 18%),
    linear-gradient(to bottom, #121319 0%, transparent 15%);
}

.featured-banner:hover .banner-background {
  transform: scale(1.03);
}

/* ── Contenido en el lado izquierdo ── */
.banner-content {
  position: relative;
  z-index: 3;
  width: 58%;
  max-width: 680px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  animation: bannerFadeIn 0.6s ease forwards;
}

@keyframes bannerFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Título ── */
.banner-title {
  font-family: var(--font-body);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: none;
}

/* ── Meta Info ── */
.banner-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 500;
}

.banner-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.banner-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.banner-status-badge.finalizado {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
}

.banner-status-badge i {
  font-size: 0.55rem;
}

/* ── Tags ── */
.banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0;
}

.banner-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.banner-tag:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* ── Descripción ── */
.banner-description {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 95%;
}

/* ── Botones ── */
.banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.banner-actions .btn {
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.banner-actions .btn-primary {
  background: #ffffff !important;
  color: #0f172a !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.banner-actions .btn-primary:hover {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.banner-actions .btn-outline-light {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.banner-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  transform: translateY(-2px);
}

/* ── Botones de Navegación Flechas (Esquina Inferior Derecha) ── */
.banner-nav-arrows {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.banner-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.banner-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .featured-banner {
    min-height: 380px;
    margin-left: -16px;
    margin-right: -16px;
    margin-top: -24px;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  }

  .banner-background {
    border-radius: 0;
  }

  .banner-blur {
    border-radius: 0;
  }

  .banner-content {
    padding: 32px 24px;
    gap: 14px;
    max-width: 100%;
  }

  .banner-title {
    font-size: 2.2rem;
  }

  .banner-description {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    max-width: 100%;
  }

  .banner-actions .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .featured-banner {
    min-height: 320px;
  }

  .banner-content {
    padding: 24px 20px;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .banner-meta {
    font-size: 0.78rem;
    gap: 6px;
  }

  .banner-description {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }

  .banner-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
  }

  .banner-actions {
    gap: 10px;
  }

  .banner-actions .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/* footer */

/* ========== FOOTER ESTILO ANIME ========== */
.anime-footer {
  margin-top: 5rem;
  padding: 0;
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.98) 0%, rgba(3, 4, 8, 1) 100%);
  position: relative;
  overflow: hidden;
  border-top: none;
}

.anime-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 217, 192, 0.08), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255, 107, 157, 0.07), transparent 28%);
}

.footer-divider-line {
  width: 100%;
  height: 2px;
  margin: 0;
  background: linear-gradient(90deg, transparent 0%, #00d9c0 20%, #ff6b9d 50%, #00d9c0 80%, transparent 100%);
  background-size: 200% 100%;
  animation: footerGlow 4s linear infinite;
  border: none;
  box-shadow: 0 0 12px rgba(0, 217, 192, 0.35), 0 0 18px rgba(255, 107, 157, 0.18);
}

@keyframes footerGlow {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 1.5rem 1.25rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(150px, 0.7fr)) minmax(180px, 0.8fr);
  gap: 2.5rem;
  align-items: start;
}

.footer-brand h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  margin: 0 0 0.65rem;
  letter-spacing: -0.04em;
}

.footer-brand h3 span {
  color: #00d9c0;
}

.footer-brand .brand-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-brand .brand-tagline .heart {
  color: #ff4d6d;
  animation: heartbeat 1.8s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.2);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.15);
  }

  56% {
    transform: scale(1);
  }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  margin: 1rem 0 0;
  line-height: 1.65;
  max-width: 300px;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 0.55rem 0;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #00d9c0;
  transform: translateX(3px);
}

.footer-social-title {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-col li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col li a {
  display: inline;
}

.footer-social a:hover {
  color: #00d9c0;
  background: rgba(0, 217, 192, 0.08);
  border-color: rgba(0, 217, 192, 0.28);
  transform: translateY(-3px);
}

.footer-anime-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 217, 192, 0.07);
  border: 1px solid rgba(0, 217, 192, 0.14);
  color: rgba(0, 217, 192, 0.7);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.24);
  font-size: 0.65rem;
  margin: 0;
}

.footer-bottom .footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom .footer-links a {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom .footer-links a:hover {
  color: #00d9c0;
}

/* ===== TEMA CLARO ===== */
body.light-theme .anime-footer {
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.98) 0%, rgba(232, 235, 242, 1) 100%);
}

body.light-theme .anime-footer::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 184, 160, 0.08), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255, 107, 157, 0.06), transparent 28%);
}

body.light-theme .footer-brand h3 {
  color: #1a1a2e;
}

body.light-theme .footer-brand .brand-tagline {
  color: rgba(0, 0, 0, 0.38);
}

body.light-theme .footer-brand p {
  color: rgba(0, 0, 0, 0.42);
}

body.light-theme .footer-col h4,
body.light-theme .footer-social-title {
  color: rgba(0, 0, 0, 0.58);
}

body.light-theme .footer-col ul li a {
  color: rgba(0, 0, 0, 0.4);
}

body.light-theme .footer-col ul li a:hover {
  color: #00a88f;
}

body.light-theme .footer-social a {
  color: rgba(0, 0, 0, 0.38);
  background: rgba(0, 0, 0, 0.035);
  border-color: rgba(0, 0, 0, 0.07);
}

body.light-theme .footer-social a:hover {
  color: #00a88f;
  background: rgba(0, 184, 160, 0.08);
  border-color: rgba(0, 184, 160, 0.2);
}

body.light-theme .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.07);
}

body.light-theme .footer-bottom p,
body.light-theme .footer-bottom .footer-links a {
  color: rgba(0, 0, 0, 0.3);
}

body.light-theme .footer-bottom .footer-links a:hover {
  color: #00a88f;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-social-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .footer-inner {
    padding: 2.5rem 1.25rem 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-social-column {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .footer-links {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-social-column {
    grid-column: auto;
  }

  .anime-footer {
    margin-top: 3rem;
  }
}

/* ========== FOOTER COMPACTO ========== */

.anime-footer {
  margin-top: 2.5rem;
  padding: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0.75rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 2rem;
  align-items: center;
}

/* Marca */
.footer-brand h3 {
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
}

.footer-brand .brand-tagline {
  font-size: 0.65rem;
  gap: 5px;
}

.footer-brand p {
  font-size: 0.7rem;
  margin: 0.5rem 0 0;
  line-height: 1.4;
  max-width: 280px;
}

/* Columnas */
.footer-col h4,
.footer-social-title {
  font-size: 0.7rem;
  margin: 0 0 0.5rem;
}

.footer-col ul li {
  margin: 0.25rem 0;
}

.footer-col ul li a {
  font-size: 0.7rem;
}

/* Redes */
.footer-social {
  gap: 0.4rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  font-size: 0.85rem;
}

/* Parte inferior */
.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  gap: 0.5rem;
}

.footer-bottom p,
.footer-bottom .footer-links a {
  font-size: 0.6rem;
}

.footer-bottom .footer-links {
  gap: 0.75rem;
}

@media (max-width: 650px) {
  .banner-arrow-btn {
    display: none;
  }
}