/* Reset and body */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Ubuntu', sans-serif; }
body, html {
    height: 100%;
    width: 100%;
}

/* Background */
body {
    background: url('../images/pink5.jpg') no-repeat center center/cover;
    position: relative;
}

/* Dark overlay */
body::before {
    content: "";
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.6);
    z-index: 0;
}

/* Centered login box */
#wrapper {
    position: relative;
    z-index: 1;
    width: 500px;
    max-width: 90%;
    margin: 0 auto;
    top: 40%;
    transform: translateY(-50%);
    padding: 80px 50px;
    min-height: 600px;
    background: rgba(0,0,0,0.75);
    border-radius: 10px;
    color: #fff;
}

/* Brand logo + name */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand h2 {
    font-size: 26px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff4ecb, #9b4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
#wrapper h1 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 28px;
}

/* Inputs */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #bbb;
}

/* Sign In Button */
input[type="submit"] {
    width: 100%;
    background: linear-gradient(90deg, #ff4ecb, #9b4dff);
    color: #fff;
    font-size: 18px;
    padding: 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
}
input[type="submit"]:hover {
   background: linear-gradient(90deg, #9b4dff, #ff4ecb);
}

/* Checkbox & links */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}
.checkbox-container input {
    width: 16px;
    height: 16px;
}

#forget-pass {
    display: block;
    color: #bbb;
    font-size: 14px;
    margin-bottom: 20px;
    text-decoration: none;
}
#forget-pass:hover {
    text-decoration: underline;
}

/* Sign up notice */
.signup {
    font-size: 14px;
    color: #bbb;
}
.signup a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.signup a:hover {
    text-decoration: underline;
}

    h2 {
      font-size: 24px;
      margin-bottom: 15px;
      color: white;
    }

    .trending-container {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 10px;
    }

    .movie-card {
      position: relative;
      flex: 0 0 auto;
      width: 180px;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .movie-card img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
    }

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

    /* Hide scrollbar but keep scroll functionality */
    .trending-container::-webkit-scrollbar {
      display: none;
    }
    .trending-container {
      -ms-overflow-style: none;  
      scrollbar-width: none; 
    }
    .number {
  position: absolute;
  bottom: -20px; /* overlap outside the card */
  left: 10px;
  font-size: 100px;       /* big Netflix-style number */
  font-weight: bold;
  color: #fff;
  line-height: 1;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.9);
  z-index: 2;
  font-family: Arial, Helvetica, sans-serif;
}
.faq {
  background: #000;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

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

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
}

.faq-question {
  width: 100%;
  background: #222;
  color: #fff;
  text-align: left;
  padding: 20px;
  font-size: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #333;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #111;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  padding: 15px 0;
  font-size: 16px;
  color: #ccc;
}

/* When active */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 15px;
}
