* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  height: 100%;
}

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.logo{
  width: 220px; 
  margin-top: 60px; 
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.85) 30%,
      rgba(0, 0, 0, 0.6) 55%,
      rgba(0, 0, 0, 0.3) 75%,
      rgba(0, 0, 0, 0.0) 100%
    ),
    url("../img/bg.jpg") center / cover no-repeat;
  z-index: -1;
}

.app {
  display: flex;
  min-height: 100vh;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.99) 30%,
      rgba(0, 0, 0, 0.98) 55%,
      rgba(0, 0, 0, 0.96) 75%,
      rgba(0, 0, 0, 0.94) 100%
    );
  position: relative;
}

/* Sidebar */
.sidebar {
  width: 78px;
  background: rgba(0, 0, 0, 0.95);
  display: sticky;
  flex-direction: column;
  align-items: center;
  padding: 18px 18px;
  gap: 30px;
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: flex-start;
  z-index: 50;
}

.nav-icons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.nav-item {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #bdbdbd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.25s ease;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Tooltip */
.nav-item::after {
  content: attr(data-label);
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 13px;
  white-space: nowrap;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.nav-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Main */
.main-content {
  width: calc(100% - 78px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  padding: 28px 38px 60px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 28%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.55) 100%),
    url("../img/yeah-usher.png") center center / cover no-repeat;
  overflow: hidden;
  transition: opacity 0.8s ease-in-out;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 20%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 0.95) 95%,
    rgba(0, 0, 0, 1) 100%
  );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.top-tabs {
  position: absolute;
  top: -40px;
  right: 20px;
  display: flex;
  padding: 6px;
  z-index: 2;
}

.tab {
  border: none;
  background: transparent;
  color: #ddd;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.25s ease;
}

.tab.active,
.tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin-top: 72px;
}

.label {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hero-content h1 small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #e3e3e3;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 18px;
  color: #d7d7d7;
  font-weight: 700;
  margin-bottom: 14px;
}

.now-streaming {
  font-size: 18px;
  margin-bottom: 14px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #d0d0d0;
  font-size: 12px;
  margin-bottom: 16px;
}

.tag {
  border: 1px solid #999;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 11px;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  color: #e2e2e2;
  max-width: 360px;
  margin-bottom: 22px;
}

/* Buttons */
.play-btn,
.play-btn2 {
  border: none;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s ease;
}

.play-btn {
  background: #000;
  color: #fff;
  padding: 12px 20px;
}

.play-btn:hover {
  background: #2d2d2d;
}

.play-btn2 {
  background: #fff;
  color: #000;
  padding: 11px 19px;
}

.play-btn2:hover {
  background: #494949;
  color: #fff;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.25s ease;
}

.dot.active {
  width: 18px;
  border-radius: 999px;
  background: #fff;
}

/* Recommended */
.recommended {
  margin-top: 20px;
  position: relative;
  z-index: 5;
  padding-bottom: 30px;
  padding-left: 20px;
}

.recommended h2 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.card {
  min-width: 230px;
  height: 190px;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.25s ease;
}

.card:hover {
  transform: scale(1.04);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.video-modal.show {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.close-video {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Info modal */
.info-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.info-modal.show {
  display: flex;
}

.info-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.info-modal-content {
  position: relative;
  width: min(1000px, 95%);
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.close-info-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
}

.info-modal-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

/* video de fondo */
.info-modal-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.info-modal-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

.info-modal-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.95) 12%, rgba(0, 0, 0, 0.4) 48%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.75) 100%);
}

.info-modal-text {
  position: relative;
  z-index: 2;
  padding: 50px;
  max-width: 720px;
  color: #fff;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-modal-text h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 0 0 8px;
  line-height: 1;
  font-weight: 700;
}

.info-artist {
  font-size: 18px;
  color: #d7d7d7;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 15px;
  opacity: 0.95;
  color: #fff;
}

.info-meta span {
  display: inline-flex;
  align-items: center;
}

.info-modal-text p#modalDescription {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.info-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.save-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: 0.25s ease;
}

.save-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.save-btn.active {
  background: #fff;
  color: #000;
}

.start-video-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.start-video-modal.show {
  display: flex;
}

.start-video-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 2;
}

.start-video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 2;
  background: #000;
}

.close-start-video {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000000;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.section-title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 18px;
}

.section-title-row h2 {
  margin-bottom: 0;
}

.view-all-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.view-all-link:hover {
  color: yellow;
  opacity: 1;
}

/* =========================
   CATALOGO
========================= */
.catalog-page {
  padding: 28px 26px 60px;
  color: #fff;
}

.catalog-header {
  margin-bottom: 30px;
  padding: 8px 4px 4px;
}

.catalog-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-text {
  max-width: 760px;
}

.catalog-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.catalog-header h1 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: #fff;
}

.catalog-header p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
  max-width: 560px;
  margin: 0;
}

.catalog-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 120px;
}

.catalog-logo {
  width: 200px;
  flex-shrink: 0;
  filter: grayscale(1) brightness(1.2);
}

/* fila horizontal de tarjetas */
.catalog-grid {
  display: flex;
  gap: 14px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 10px 4px 18px;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.catalog-grid::-webkit-scrollbar {
  height: 8px;
}

.catalog-grid::-webkit-scrollbar-track {
  background: transparent;
}

.catalog-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

/* tarjeta vertical */
.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.16);
}

.catalog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72);
  transition: transform 0.45s ease, filter 0.35s ease;
}

.catalog-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.82);
}

.catalog-overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 24px 20px 22px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.18) 78%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

.catalog-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

.catalog-overlay h2 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #fff;
  font-weight: 800;
}

.catalog-overlay p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
  max-width: 95%;
}

/* level page */
.level-page {
  padding: 28px 38px 60px;
}

.level-header {
  margin-bottom: 30px;
}

.level-header-text {
  margin-top: 20px;
}

.level-header-text h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.level-header-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 700px;
}

.section-title-row,
.recommended h2 {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .info-modal-video iframe {
    width: 160vw;
    height: 90vw;
  }

  .catalog-header-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .catalog-logo-wrap {
    justify-content: flex-start;
  }

  .catalog-logo {
    width: 88px;
  }

  .catalog-card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .level-header-text,
  .catalog-header,
  .catalog-text {
    text-align: center;
  }

  .level-header-text h1,
  .catalog-header h1 {
    text-align: center;
  }

  .level-header-text p,
  .catalog-header p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .app {
    flex-direction: column;
    min-height: 100vh;
  }

  .sidebar {
    width: 100%;
    height: auto;
    min-height: unset;
    position: sticky;
    top: 0;
    left: 0;
    padding: 14px 16px;
    gap: 14px;
    align-self: stretch;
    justify-content: center;
  }

  .nav-icons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    width: 100%;
  }

  .nav-item::after {
    display: none;
  }

  .main-content {
    width: 100%;
    margin-left: 0;
    min-width: 0;
  }

  .hero {
    min-height: auto;
    padding: 22px 20px 54px;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    margin-top: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .description {
    max-width: 100%;
  }

  .meta {
    justify-content: center;
  }

  .slider-dots {
    bottom: 26px;
  }

  .recommended {
    padding: 0 20px 30px;
  }

  .recommended h2,
  .section-title-row {
    text-align: center;
    align-items: center;
  }

  .cards {
    gap: 14px;
  }

  .catalog-page,
  .level-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .catalog-header,
  .catalog-text,
  .level-header,
  .level-header-text {
    text-align: center;
  }

  .catalog-header-top {
    align-items: center;
  }

  .catalog-text,
  .catalog-header p,
  .level-header-text p {
    max-width: 100%;
  }

  .catalog-logo-wrap {
    justify-content: center;
    width: 100%;
  }

  .catalog-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    overflow: visible;
  }

  .info-modal {
    padding: 16px;
  }

  .info-modal-hero {
    min-height: 500px;
  }

  .info-modal-text {
    padding: 30px 22px;
    max-width: 100%;
  }

  .info-actions {
    justify-content: center;
  }

  /* Logo del hero en móvil, pequeño arriba derecha */
  .hero .hero-logo,
  .hero .logo,
  .hero .hero-logo img,
  .hero .logo img {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .level-header-text h1,
  .catalog-header h1 {
    font-size: 1.8rem;
  }

  .level-header-text p,
  .catalog-header p {
    font-size: 0.92rem;
    max-width: 90%;
  }
  
  .sidebar {
    padding: 12px 14px;
  }

  .nav-icons {
    gap: 10px;
  }

  .nav-item {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 20px 16px 50px;
    min-height: auto;
    background-position: center center;
  }

  .top-tabs {
    top: 12px;
    right: 12px;
    scale: 0.85;
    transform-origin: top right;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    margin-top: 88px;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.05;
  }

  .subtitle,
  .now-streaming {
    font-size: 16px;
  }

  .description {
    font-size: 13px;
    line-height: 1.55;
    max-width: 100%;
  }

  .meta {
    gap: 8px;
    font-size: 11px;
  }

  .play-btn,
  .play-btn2 {
    width: 100%;
    justify-content: center;
    max-width: 260px;
  }

  .cards {
    gap: 14px;
  }

  .card {
    flex: 0 0 220px;
    min-width: 220px;
    width: 220px;
    height: 124px;
  }

  .recommended {
    padding: 0 16px 28px;
  }

  .info-modal {
    padding: 12px;
  }

  .info-modal-hero {
    min-height: 460px;
  }

  .info-modal-video iframe {
    width: 220vw;
    height: 124vw;
  }

  .info-modal-text {
    padding: 26px 18px;
    max-width: 100%;
  }

  .info-modal-text h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .info-artist {
    font-size: 16px;
  }

  .info-meta {
    gap: 12px;
    font-size: 14px;
    justify-content: center;
  }

  .info-actions {
    gap: 10px;
  }

  .catalog-page {
    padding: 24px 16px 40px;
  }

  .catalog-header {
    margin-bottom: 24px;
    padding: 4px 0 0;
  }

  .catalog-header-top {
    padding-bottom: 18px;
  }

  .catalog-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .catalog-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .catalog-header p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .catalog-logo {
    width: 78px;
  }

  .catalog-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    overflow: visible;
  }

  .catalog-card {
    flex: 0 0 220px;
    width: 90%;
    height: 400px;
    border-radius: 20px;
  }

  .catalog-overlay {
    padding: 18px 16px 18px;
  }

  .catalog-overlay h2 {
    font-size: 1.1rem;
  }

  .catalog-overlay p {
    font-size: 0.84rem;
  }

  /* Logo del hero todavía más pequeño en celular */
  .hero .hero-logo,
  .hero .logo,
  .hero .hero-logo img,
  .hero .logo img {
    display: none !important;
  }
}

.global-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 14px 20px;
  background-color: #000;
  font-size: 12px;
  color: #bababa;
}

.global-footer .footer-counter {
  font-size: 13px;
  opacity: 0.8;
  color: white;
}

.global-footer p {
  margin: 0;
}

.global-footer a {
  text-decoration: none;
  color: white;
}