body {
  margin: 0;
  padding: 0;
  padding-top: 90px;
  min-height: 100vh;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

section {
  margin: 0;
  padding: 0;
  border: none;
}

.nav span {
  color: #6c5ce7;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -1px;
}

.brand-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.main-brand {
  color: #6c5ce7;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -1px;
  line-height: 1;
}

.parent-brand {
  color: #74b9ff;
  font-weight: 300;
  font-size: 0.25rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: 1px;
  opacity: 0.4;
  transform: scale(0.6);
  transform-origin: left center;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    border: none;
    border-bottom: 2px solid #6c5ce7;
    margin: 0;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav ul {
  margin: 0;
  display: flex;
  gap: 35px;
  list-style: none;
  font-weight: 500;
  font-size: 1.05rem;
}

.nav ul a{
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.nav ul a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6c5ce7;
    transition: width 0.3s ease;
}

.nav a:hover{
    color: #6c5ce7;
    text-decoration: none;
}

.nav a:hover::after{
    width: 100%;
}

/* Brand/Logo styling */
.nav span {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Search form styling */
.nav .example input[type="text"] {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 18px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
    width: 200px;
    transition: all 0.3s ease;
}

.nav .example input[type="text"]:focus {
    outline: none;
    border-color: #6c5ce7;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.3);
}

.nav .example input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Hero Cover Section */
.hero-cover {
    height: 80vh;
    background-image: url('/images/johnWick.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    position: relative;
}

.hero-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15,15,35,0.95) 0%, rgba(26,26,46,0.9) 30%, rgba(22,33,62,0.3) 60%, rgba(26,26,46,0.7) 85%, rgba(15,15,35,0.8) 100%);
}

.movie-details-left {
    width: 45%;
    padding: 60px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.movie-details-left h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 25px 0;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    letter-spacing: -2px;
    line-height: 0.9;
    text-align: left;
}

.movie-details-left p {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin: 30px 0 40px 0;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    text-align: left;
}

.movie-details-right {
    width: 55%;
    padding: 40px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.movie-info-card {
    background: transparent;
    backdrop-filter: none;
    border-radius: 15px;
    padding: 25px;
    border: none;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

.movie-info-card h3 {
    color: #a29bfe;
    font-size: 1.3rem;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-item .label {
    color: #74b9ff;
    font-weight: 500;
    font-size: 0.9rem;
}

.info-item .value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-align: right;
    font-size: 0.9rem;
}

.synopsis h4 {
    color: #a29bfe;
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.synopsis p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.play-btn {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
    align-self: flex-start;
}

.play-btn:hover {
    background: linear-gradient(135deg, #5f3dc4 0%, #6c5ce7 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.6);
}

.FeaturedMovies {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #a29bfe;
  margin: 0 0 40px 0;
  letter-spacing: -1px;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  justify-items: center;
}

.cards {
  display: flex;
  flex-direction: column;
  background: rgba(26, 26, 46, 0.8);
  border-radius: 15px;
  padding: 15px 0 4px 0;
  width: 200px;
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 92, 231, 0.2);
  position: relative;
  overflow: hidden;
}

.cards:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
  border-color: rgba(108, 92, 231, 0.5);
}

.cards img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0;
  transition: all 0.3s ease;
}

.cards:hover img {
  filter: brightness(0.7);
}

.cards .watch-now-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  height: 240px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 3;
}

.cards:hover .watch-now-overlay {
  opacity: 1;
  transform: translateY(0);
}

.watch-now-btn {
  background: rgba(108, 92, 231, 0.8);
  color: white;
  border: none;
  padding: 0;
  width: 70px;
  height: 70px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
  backdrop-filter: blur(10px);
}

.watch-now-btn:hover {
  background: rgba(108, 92, 231, 0.9);
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(108, 92, 231, 0.6);
}

.watch-now-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}

.cards h3 {
  color: #a29bfe;
  font-size: 1.1rem;
  margin: 12px 0 8px 0;
  text-align: center;
  font-weight: 600;
}

.cards .year-genre {
  color: #74b9ff;
  font-size: 0.85rem;
  margin: 4px 0;
  text-align: center;
  font-weight: 500;
}

.cards .rating {
  color: #fdcb6e;
  font-size: 0.9rem;
  margin: 4px 0;
  text-align: center;
  font-weight: 600;
}

.cards .duration {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 4px 0 0 0;
  text-align: center;
  font-weight: 400;
}

.UpcomingMovies {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.UpcomingMovies .title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #a29bfe;
  margin: 0 0 50px 0;
  letter-spacing: -1px;
}

.Upcoming {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

.Upcoming > div {
  background: rgba(26, 26, 46, 0.8);
  border-radius: 15px;
  padding: 25px 30px;
  min-width: 280px;
  max-width: 350px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 92, 231, 0.2);
  backdrop-filter: blur(10px);
}

.Upcoming > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
  border-color: rgba(108, 92, 231, 0.5);
}

.Upcoming h4 {
  color: #74b9ff;
  font-size: 1.3rem;
  margin: 0 0 20px 0;
  font-weight: 600;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(108, 92, 231, 0.3);
}

.Upcoming ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Upcoming ul li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.Upcoming ul li:last-child {
  border-bottom: none;
}

.Upcoming ul li::before {
  content: '▶';
  color: #6c5ce7;
  font-size: 0.8rem;
  position: absolute;
  left: 0;
  top: 8px;
}

.Upcoming ul li:hover {
  color: #a29bfe;
  transform: translateX(5px);
  cursor: pointer;
}












/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  color: white;
  padding: 40px 0 0 0;
  margin-top: 60px;
  border-top: 2px solid #6c5ce7;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px 40px;
}

.footer-section h3 {
  color: #6c5ce7;
  font-size: 1.8rem;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.footer-section h4 {
  color: #a29bfe;
  font-size: 1.2rem;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.parent-company {
  color: #74b9ff !important;
  font-weight: 500;
  font-size: 0.9rem;
  font-style: italic;
  margin: 5px 0 15px 0 !important;
}

.developer-name {
  color: #74b9ff !important;
  font-weight: 600;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  color: #74b9ff;
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-links a:hover {
  background: rgba(108, 92, 231, 0.3);
  transform: translateY(-2px);
  color: #a29bfe;
}

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

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #6c5ce7;
}

.footer-bottom {
  background: rgba(15, 15, 35, 0.8);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(108, 92, 231, 0.3);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.video-container {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3);
  border: 1px solid rgba(108, 92, 231, 0.3);
  overflow: hidden;
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: rgba(26, 26, 46, 0.8);
  border-bottom: 1px solid rgba(108, 92, 231, 0.3);
}

.video-header h3 {
  color: #a29bfe;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  color: #74b9ff;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 50%;
}

.close-btn:hover {
  background: rgba(108, 92, 231, 0.2);
  color: #a29bfe;
  transform: scale(1.1);
}

.video-player {
  position: relative;
  width: 100%;
  background: #000;
}

.video-player video {
  width: 100%;
  height: auto;
  max-height: 60vh;
  display: block;
  outline: none;
}

.video-info {
  padding: 20px 25px;
  background: rgba(15, 15, 35, 0.8);
}

.video-details {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.video-details span {
  background: rgba(108, 92, 231, 0.2);
  color: #74b9ff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.video-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Update watch now button to trigger video */
.cards .watch-now-btn {
  background: rgba(108, 92, 231, 0.8);
  color: white;
  border: none;
  padding: 0;
  width: 70px;
  height: 70px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
  backdrop-filter: blur(10px);
}