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

.body {
  background-color: black;
  margin: 0px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 10px;
  width: 100%;
  padding: 10px;;
}

.search-input {
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid #BF00FF;
  border-radius: 25px;
  outline: none;
  transition: border-color 0.3s ease;
  width: min(500px, 500px);
}

.search-input:focus {
  border-color: #ff0000f5;
  box-shadow: 0 0 5px rgb(168, 32, 209);
}

.search-button {
  padding: 12px 20px;
  margin-left: 20px;
  background-color: #007bff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

.search-button:hover {
  background-color: #0056b3;
}

/* Universal class for all the shadow box */
.shadow-box {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
  align-items: center;
  width: min(1010px, 95vw);
  min-height: 200px;
  background-color: white;
  border-radius: 25px;
  box-shadow: 5px 5px 15px rgb(128,0,128), 0 0 15px rgb(0,128,128), 0 0 15px rgb(255,255,255);
  margin: 20px auto;
  overflow: hidden;
}

/* Common title styles */
.title {
  width: 100%;
  padding: 10px 15px;
  font-size: clamp(18px, 57.6px, 23px);
  font-weight: bold;
  color: #ff0000;
}
.link {
  text-decoration: none;
  font-weight: bold;
}

/* Common image styles */
.the-bluff-2026-image {
  width: clamp(20px, 25vw, 300px);
  height: clamp(20px, 25vw, 200px);
  border-radius: 15px;
  flex-shrink: 0;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  
}
.Subedaar-2026-image {
  width: clamp(20px, 25vw, 300px);
  height: clamp(20px, 25vw, 200px);
  border-radius: 15px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.Dhurandhar-image {
  width: clamp(20px, 25vw, 300px);
  height: clamp(20px, 25vw, 200px);
  border-radius: 15px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.the-bluff-2026-image {
  background-image: url(The-Bluff-2026-Hindi-English-Dual-Audio-Hollywood-Movie-HD-ESub.gif);
}

.Subedaar-2026-image {
  background-image: url(Subedaar-2026.gif);
}

.Dhurandhar-image {
  background-image: url(Dhurandhar.jpg);
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  .shadow-box {
    flex-direction: row;
    width: auto;
    min-height: auto;
  }

  .search-input {
    width: 70vw;
  }
}

@media (max-width: 480px) {
  .header {
    top: 5px;
  }

  .search-input {
    width: 65vw;
    font-size: 14px;
  }

  .search-button {
    font-size: 14px;
    padding: 10px 15px;
  }
}
