@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Bebas Neue', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #000000;
  color: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 60px;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.sidebar img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  cursor: pointer;
}

/* Main content */
.main-content {
  margin-left: 0px;
  padding: 0px;
}


h1 {
  font-size: 30px;
  margin: 20px 0;
  color: #fff;
  /* Texto branco */
  text-align: center;
}

/* Container Principal */
.container {
  max-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Estilo dos Cards */
.cards {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  overflow-x: auto;
  /* Scroll horizontal em telas menores */
  padding: 20px 0;
  scroll-behavior: smooth;
}

.trust-me {
  justify-content: center;
}

.card {
  position: relative;
  min-width: 250px;
  max-width: 250px;
  background-color: #141414;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(229, 9, 20, 0.7);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.card:hover img {
  opacity: 0.8;
}

/* Desktop Sidebar Ad */
.sidebar-ad-placeholder {
  width: 100%;
  background-color: #222;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.sidebar-ad-placeholder:hover {
  filter: brightness(1.12);
}

.sidebar-ad-placeholder:active {
  transform: scale(0.98);
}

.card-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  gap: 10px;
  padding: 0 10px;
}

.card-content h2 {
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  color: #E50914;
  font-family: 'Bebas Neue', sans-serif;
}

.card-content span {
  font-size: 16px;
  color: #FFFFFF;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

/* Responsividade para Mobile */
@media screen and (max-width: 768px) {
  .cards {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: scroll;
    /* Scroll horizontal */
  }

  .trust-me {
    justify-content: center;
  }

  .card {
    width: 80%;
    /* Ocupa boa parte da tela no mobile */
    margin: 0 10px;
  }

  .card-content {
    justify-content: center;
  }

  h1 {
    font-size: 26px;
  }
}


/* Footer Style - Netflix Inspired */
.footer {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  margin-top: auto;
  border-top: 1px solid #333333;
}

.footer h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.social-icons a {
  font-size: 2rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #E50914;
  transform: scale(1.1);
}

.support-btn {
  display: inline-block;
  background-color: #E50914;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

.support-btn:hover {
  background-color: #B20710;
  transform: scale(1.05);
}

.support-btn i {
  margin-right: 10px;
}


@media (max-width: 600px) {
  .footer {
    padding: 30px 10px;
  }

  .footer h3 {
    font-size: 1.5rem;
  }

  .social-icons a {
    font-size: 2.2rem;
  }

  .support-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}