:root {
  --color-primary: #ff5500;
  --color-dark: #000000;
  --color-light: #f5f5f5;
  --color-gray: #a0a0a0;
  --color-hover: #ff7700;
  --color-accent: #ff9a66;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #141414, #0a0a0a);
  color: var(--color-light);
  overflow-x: hidden;
}
section{
    width: 100%;
    height: 100vh;
    margin-top: 5%;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,0,0.8), transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.logo {
  font-size: 2rem;
  color: var(--color-primary);
  transition: transform var(--transition-speed) ease;
  text-decoration: none;
}

.logo:hover {
  transform: scale(1.1);
  opacity: 0.8;
}


.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-light);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color var(--transition-speed), text-shadow var(--transition-speed);
}

.nav-links a:hover {
  color: var(--color-hover);
  text-shadow: 0 0 10px var(--color-hover);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}

.btnn {
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition-speed);
  text-decoration: none;
}

.btnn:hover {
  color: var(--color-hover);
}




.swiper {
    width: 95%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
 }

  .swiper::selection{
    user-select: none;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide .image .black{
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0),rgba(0,0,0,0.9));
  }

  .swiper-slide .image .black h1{
    font-size: 30px;
    text-align: left;
    position: relative;
    top: 60%;
    left: 5%;
    color: #fff;
  }

  .swiper-slide .image .black .star{
    color: var(--color-hover);
    text-align: left;
    font-size: 16px;
    margin: 10px 0;
    position: relative;
    top: 60%;
    left: 5%;
  }

  .swiper-slide .image .black p{
    width: 550px;
    text-align: justify;
    font-size: 16px;
    color: #cccccc;
    margin: 10px 0;
    position: relative;
    top: 60%;
    left: 5%;
    line-height: 23px;
    font-family: "Ink Free";
  }




  .swiper-slide .image .black .watch i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
  }

  .swiper-slide .image .black .watch p{
    position: relative;
    left: 15px;
    font-family: sans-serif;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


.hero-title{
    transform: scale(0.7);
  transform-origin: left;
  position: absolute;
  top: 15%;
  left: 3%;
}

/* Content */
.content-wrapper {
  padding:  20px 20px;
  margin-bottom: 5%;
}

.search-bar {
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.search-bar input {
  width: 100%;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 5px;
  color: var(--color-light);
  font-size: 1rem;
}

.search-bar input:focus {
  border: 1px solid var(--color-accent);
  outline: none;
  box-shadow: 0 0 5px var(--color-accent);
}

.search-bar input::placeholder {
  color: var(--color-gray);
}

/* Movies Grid */
.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  padding-bottom: 50px;
}

.movie-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition-speed);
}

.movie-card:hover {
  transform: scale(1.05);
}

.movie-poster {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter var(--transition-speed);
}

.movie-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.9));
}

.movie-title {
  font-size: 18px;
  margin-bottom: 5px;
}

.movie-meta {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--color-gray);
}

.rating {
  color: var(--color-hover);
}

.site-footer {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(6px);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-links a:hover {
  color: var(--color-hover);
  text-shadow: 0 0 8px var(--color-hover);
}

.footer-description {
  padding-top: 10px;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s, text-shadow 0.3s;
}

.social-links a:hover {
  color: var(--color-accent);
  text-shadow: 0 0 10px var(--color-accent);
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.newsletter input {
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  flex: 1;
}

.newsletter input:focus{
  border: 1px solid var(--color-accent);
  outline: none;
}

.subscribe-btn {
  padding: 0.8rem 1.5rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-btn:hover {
  background: var(--color-hover);
}

/* INLINE FOOTER BOTTOM */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.footer-bottom a {
  color: var(--color-gray);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 2rem;
  color: var(--color-gray);
}

.payment-methods i:hover {
  color: var(--color-primary);
  transform: scale(1.1);
  transition: transform 0.2s, color 0.2s;
}

.content-wrapper h1{
  margin-bottom: 30px;
}