* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100%;
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ======================================================
   HEADER
====================================================== */

.header {
  width: 100%;
  background: #000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 30px;
}

.brand-text {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
}

/* menu superior (desktop) */
.top-nav {
  display: none;
}

.top-nav a {
  color: #cfd6ff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.top-nav a:hover {
  color: #fff;
}

/* ======================================================
   SEARCH
====================================================== */

.search-wrapper {
  width: 100%;
  padding: 0 16px;
  margin: 20px auto 0;
  position: relative;
}

.search-wrapper input {
  width: 100%;
  padding: 16px 52px 16px 20px;
  border-radius: 30px;
  border: none;
  background: #151a24;
  color: #fff;
  font-size: 14px;
}

.search-wrapper i {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: #cfd6ff;
}

/* ======================================================
   TAGS (MOBILE – SCROLL)
====================================================== */

.tags-wrapper {
  position: relative;
  overflow: hidden;
  margin: 22px 0 26px;
  width: 100%;
}

.tags {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px;
  scrollbar-width: none;
}

.tags::-webkit-scrollbar {
  display: none;
}

.tag {
  background: #151a24;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  white-space: nowrap;
  cursor: pointer;
}

.tag.active {
  background: #4c5cff;
}

/* fade lateral */
.fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}

.fade.left {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.fade.right {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

/* ======================================================
   CONTENT / GRID
====================================================== */

.content {
  width: 100%;
  padding: 28px 16px 60px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* ======================================================
   CARD
====================================================== */

.card {
  background: #11151f;
  border-radius: 22px;
  padding: 22px 18px;
  text-align: center;
}

.card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.watch img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
}

/* ======================================================
   PLAY STORE BUTTON
====================================================== */

.store a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2a3040;
  padding: 12px 18px;
  border-radius: 16px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.store img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ======================================================
   LOAD MORE
====================================================== */

.load-more {
  margin: 36px auto 0;
  display: block;
  padding: 14px 36px;
  border-radius: 30px;
  border: none;
  background: #4c5cff;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

/* ======================================================
   BOTTOM NAV (MOBILE – BLUR)
====================================================== */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;

  display: flex;
  justify-content: space-around;
  align-items: center;

  background: rgba(10, 10, 14, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  z-index: 20;
}

.bottom-nav i {
  font-size: 22px;
  color: #cfd6ff;
}

.bottom-nav i.active {
  color: #4c5cff;
}

/* ======================================================
   DESKTOP
====================================================== */

@media (min-width: 1024px) {

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
  }

  .top-nav {
    display: flex;
    gap: 22px;
  }

  .search-wrapper,
  .content {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }

  .grid {
    grid-template-columns: repeat(3, 320px);
    justify-content: center;
    gap: 36px;
  }

  .card {
    width: 320px;
  }

  .bottom-nav {
    display: none;
  }
}

/* ======================================================
   MOBILE — AJUSTES
====================================================== */

@media (max-width: 600px) {

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .card {
    padding: 18px 14px;
  }

  .watch img {
    width: 130px;
    height: 130px;
  }

  .content {
    padding-top: 10px;
  }
}

/* ======================================================
   FOOTER SOCIAL
====================================================== */

.site-footer {
  background: #000;
  padding: 40px 20px 70px;
  text-align: center;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}

.footer-icons a {
  color: #f2f4ff;
  font-size: 26px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-icons a:hover {
  color: #4c5cff;
  transform: translateY(-2px);
}

.footer-text p {
  font-size: 14px;
  color: #7a7a7a;
}

/* MOBILE FOOTER */
@media (max-width: 768px) {
  .site-footer {
    padding-bottom: 100px;
  }

  .footer-icons a {
    font-size: 24px;
  }

  .footer-text p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .content {
    padding-bottom: 50px;
  }
}


/* ======================================================
   DESKTOP FIXED TAGS
====================================================== */

.desktop-tags {
  display: none;
}

@media (min-width: 1024px) {

  .tags-wrapper {
    display: none;
  }

  .desktop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1040px;
    margin: 26px auto 34px;
    padding: 0 16px;
  }

  .desktop-tags .tag {
    font-size: 12px;
    padding: 8px 14px;
    cursor: pointer;
  }

  .desktop-tags .tag:hover,
  .desktop-tags .tag.active {
    background: #4c5cff;
  }
}
