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

body {
  font-family: 'Poppins', sans-serif;
  background: #121212;
  color: white;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 15px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.6);
}

.logo img {
  height: 40px;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

/* Nav */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff4c4c;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ff4c4c;
}

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

/* Hamburger */
.hamburger {
  font-size: 26px;
  color: white;
  display: none;
  cursor: pointer;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #181818;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .nav-links.active {
    max-height: 300px;
    border-top: 1px solid #333;
  }

  .nav-links a {
    padding: 15px 20px;
    border-bottom: 1px solid #222;
  }
}



.nav-links a.active {
  color: #ff4c4c;
}

.nav-links a.active::after {
  width: 100%;
}

a.col {

  color: #ff4c4c;
  
}

a.col:hover {
  color: #4cdeff;
}

a.col,
a.col:hover,
a.col:focus,
a.col:active {
  text-decoration: none;
}









.sign-in {
    background: linear-gradient(to right, #ff4c4c, #ff1a75);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 76, 76, 0.4);
}

.sign-in:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 76, 76, 0.6);
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}


.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 15px 20px;
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #111;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 999;
}

.mobile-nav a {
  padding: 15px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #222;
}

.mobile-nav.active {
  display: flex;
}

/* Show only on mobile */
@media (min-width: 768px) {
  .mobile-header, .mobile-nav {
    display: none;
  }
}


/* Mobile responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #000;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    nav.active {
        max-height: 300px;
        padding: 15px 20px;
    }

    nav a {
        padding: 10px 0;
    }
}

        .sign-in {
            background: red;
            border: none;
            color: white;
            padding: 10px 15px;
            cursor: pointer;
        }
        .menu-icon {
            display: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }
         .social-icons {
            margin: 10px 0;
        }
        .social-icons a {
            margin: 0 10px;
            text-decoration: none;
            display: inline-block;
        }
        .social-icons svg {
            width: 30px;
            height: 30px;
            fill: white;
        }
        .hero {
            text-align: center;
            padding: 100px 20px;
            background: url('hero-bg.jpg') no-repeat center center/cover;
        }
        .get-started {
            background: red;
            border: none;
            padding: 15px 30px;
            color: white;
            font-size: 18px;
            cursor: pointer;
        }
        .movie-section {
            padding: 20px;
            
        }
        .movie-container {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 10px 0;
             text-align: center;
             scrollbar-width: none;
            -ms-overflow-style: none;
        }
       
        .movie-box img {
            width: 200px;
            height: 300px;
            object-fit: cover;
            
            
        }
        footer {
            text-align: center;
            padding: 20px;
            background: black;
        }
        a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: gray;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}
       
        .contact-button {
            background-color: red;
            color: white;
            padding: 15px 30px;
            font-size: 18px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }
          .cast-container {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            overflow-x: auto;
            white-space: nowrap;
            padding: 10px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .cast-container::-webkit-scrollbar {
            display: none;
        }
        .cast-box {
            display: inline-block;
            width: 150px;
            text-align: center;
        }
        .cast-box img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
        }
        .cast-name {
            margin-top: 8px;
            font-size: clamp(14px, 1.5vw, 18px);
            font-weight: 600;
            word-wrap: break-word;
            overflow: hidden;
            max-width: 150px;
            white-space: normal;
            
            
        }
        .nick-name {
            font-size: clamp(12px, 1.2vw, 16px);
            font-weight: 400;
            color: gray;
        }
