/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 24px 48px;
  box-sizing: border-box;
  background: transparent;
  z-index: 10;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  margin: 0 auto;
  padding-left: 150px;
  padding-right: 150px;
}

/* LEFT */
.header-left {
  display: flex;
  align-items: center;
}

/* LOGO */
.logo img {
  width: 152px;
  height: 48px;
}

/* RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* LANGUAGE */
.lang {
  position: relative;
}

.lang select {
  appearance: none;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: 1px solid #aaa;
  padding: 6px 28px 6px 28px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

/* OPTION */
.lang select option {
  color: black;
}

.lang::before {
  content: "🌐";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
}

.lang::after {
  content: "▼";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
}

/* Button */
.view-button button {
  background: #e50914;
  color: white;
  padding: 7px 17px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease;
  cursor: pointer;
  border: none;
}

.view-button a:hover {
  background: #f6121d;
}

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - 200px);
  background: url(Assets/hero-bg.jpg) center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding-top: 200px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  color: white;
  max-width: 700px;
  padding: 20px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.fake-input {
  width: 350px;
  height: 52px;
  padding: 0 15px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
}

.hero-form button {
  background: #e50914;
  color: white;
  border: none;
  padding: 16px 30px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}

.hero-form button:hover {
  background: #f6121d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 50%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%);
  z-index: 1;
}

.hero-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
}

.hero-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.content {
  background: #000;
  color: white;
  padding-bottom: 80px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 48px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* TRENDING */
.slider-container {
  position: relative;
}

.trending {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}

.trending::-webkit-scrollbar {
  display: none;
}

.card {
  position: relative;
  min-width: 180px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  scroll-snap-align: start;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:hover {
  transform: scale(1.08);
}

.rank {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 80px;
  font-weight: 900;
  color: black;
  -webkit-text-stroke: 2px white;
  z-index: 2;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 20, 20, 0.7);
  border: none;
  color: white;
  font-size: 28px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 5;
  transition: 0.2s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.slider-btn.left {
  left: 0;
}

.slider-btn.right {
  right: 0;
}

/* REASON */
.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reason-card {
  background: linear-gradient(135deg, #1a1a2e, #2a0845);
  padding: 24px;
  border-radius: 16px;
  min-height: 180px;
}

.reason-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

/* FAQ */
.faq {
  background: #000;
  color: white;
}

.faq h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.faq-item {
  background: #2d2d2d;
  margin-bottom: 8px;
}

.faq-question {
  padding: 20px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon {
  font-size: 28px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  color: #ccc;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ccc;
  text-align: center;
}

.faq-form .hero-form {
  justify-content: center;
}

/* FOOTER */
.footer {
  background: #000;
  color: #aaa;
  font-size: 16px;
}

.footer-contact {
  margin-bottom: 30px;
}

.footer-contact a {
  color: #aaa;
  text-decoration: underline;
}

.footer-links {
  width: 100%;
  max-width: 1240px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: underline;
}

.footer-links a:hover {
  text-decoration: none;
}

.footer-lang {
  margin-bottom: 20px;
}

.footer-lang select {
  background: transparent;
  color: white;
  border: 1px solid #555;
  padding: 8px 12px;
  border-radius: 4px;
}

.footer-lang select option {
  color: black;
}

.footer-note {
  font-size: 15px;
  color: #777;
}

.footer-links {
  max-width: 1000px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {
  .header-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .container {
    padding: 0 30px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content h3 {
    font-size: 18px;
  }

  .hero-form button {
    font-size: 18px;
    padding: 14px 20px;
  }

  /* TRENDING */
  .card {
    min-width: 150px;
    height: 220px;
  }

  .rank {
    font-size: 60px;
  }

  /* REASONS */
  .reasons {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FAQ */
  .faq h2 {
    font-size: 28px;
  }

  /* FOOTER */
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .header {
    padding: 24px 12px;
  }

  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo img {
    width: 110px;
    height: auto;
  }

  .container {
    padding: 0 20px;
  }

  .lang {
    display: none;
  }

  /* HERO */
  .hero {
    padding-top: 120px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content h3 {
    font-size: 16px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-form {
    flex-direction: column;
    align-items: center;
  }

  .hero-form button {
    width: 100%;
    max-width: 180px;
    font-size: 16px;
  }

  /* TRENDING */
  .card {
    min-width: 140px;
    height: 200px;
  }

  .rank {
    font-size: 50px;
  }

  .slider-btn {
    font-size: 20px;
    padding: 8px;
  }

  /* REASONS */
  .reasons {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }

  /* FOOTER */
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer {
    font-size: 14px;
  }
}

.disclaimer {
  background: black;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 16px;
}
