/* RESET */
* { margin:0; padding:0; box-sizing:border-box; font-family:"Segoe UI", Arial, sans-serif; }
body { background: radial-gradient(circle at top, #0f1a14, #000); color:#fff; }

/* HEADER */
.navbar {
  position: sticky; top:0; z-index:100;
  padding:18px 50px;
  display:flex; justify-content:space-between; align-items:center;
  background: linear-gradient(180deg,#00160f,#000);
  border-bottom:1px solid #0a3d2a;
  box-shadow:0 10px 25px rgba(0,128,64,0.08);
}
.logo { font-size:26px; font-weight:700; color:#FFA500; }

/* MENU BUTTONS */
.menu { list-style:none; display:flex; gap:20px; }
.menu-btn {
  display:inline-block; padding:10px 22px;
  border-radius:25px; background:linear-gradient(145deg,#004c33,#003022);
  color:#fff; font-weight:600; font-size:14px; text-decoration:none;
  text-transform:uppercase; letter-spacing:1px; transition:all 0.3s ease;
}
.menu-btn:hover { background:linear-gradient(145deg,#006644,#00442a); transform:translateY(-2px); }

/* DROPDOWN */
.dropdown { position:relative; }
.dropdown-menu {
  position:absolute; top:36px; background:#012214;
  padding:12px; border-radius:10px; display:none; box-shadow:0 15px 30px rgba(0,0,0,0.8);
  list-style:none; /* remove bullets */
}
.dropdown:hover .dropdown-menu { display:block; }
.dropdown-menu li a { padding:8px 12px; border-radius:6px; display:block; color:#8fcaa0; text-decoration:none; transition:0.2s; }
.dropdown-menu li a:hover { background:#006644; color:#fff; }

/* HERO */
.hero { height:320px; background: linear-gradient(to right,#000,rgba(0,0,0,0.6)), url('assets/images/hero-bg.jpg'); background-size:cover; display:flex; align-items:center; padding-left:60px; }
.hero h1 { font-size:40px; color:#FFA500; }

/* MAIN SECTIONS */
.container { padding:60px 50px; }
.content-section { background:linear-gradient(180deg,#101f17,#08140d); border-radius:16px; padding:35px; margin-bottom:60px; box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 15px 40px rgba(0,0,0,0.8); }
.section-title { font-size:24px; margin-bottom:25px; color:#FFA500; }

/* FEATURED MOVIES */
.featured-grid { display:grid; grid-template-columns:repeat(5, 1fr); gap:24px; }
.poster { aspect-ratio:3/4; overflow:hidden; border-radius:8px; }
.poster img { width:100%; height:100%; object-fit:cover; }
.card p { padding:8px; text-align:center; font-size:14px; }

/* VIDEOS */
.video-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.video-box { aspect-ratio:16/9; }
.video-box iframe { width:100%; height:100%; border-radius:10px; }

/* NEWS */
.news-list li { margin-bottom:12px; color:#8fcaa0; }

/* FOOTER */
.footer {
  background:linear-gradient(180deg,#00160f,#000);
  padding:60px 50px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:50px;
  border-top:1px solid #0a3d2a;
}
.footer-col.brand h3 { font-size:28px; color:#FFA500; margin-bottom:10px; }
.footer-col.brand p { font-size:16px; color:#8fcaa0; line-height:1.6; }
.footer-col h4 { color:#FFA500; margin-bottom:15px; font-size:16px; }
.footer-col a { display:block; margin-bottom:10px; color:#8fcaa0; font-size:14px; text-decoration:none; transition:0.2s; }
.footer-col a:hover { color:#fff; }

/* SOCIAL ICONS */
.social-icons { display:flex; gap:15px; margin-top:5px; }
.social-icons a { display:inline-block; }
.social-icons span { width:44px; height:44px; border-radius:50%; background:radial-gradient(circle,#006644,#003227); color:#fff; display:flex; align-items:center; justify-content:center; font-size:18px; transition:0.3s; }
.social-icons span:hover { background:radial-gradient(circle,#00b36b,#005c3f); transform:scale(1.1); }

/* FOOTER BOTTOM */
.footer-bottom { background:#000; padding:15px; text-align:center; font-size:13px; color:#FFA500; }

/* RESPONSIVE */
@media(max-width:768px){
  .navbar{padding:15px 25px;}
  .menu{gap:20px;}
  .hero{height:260px; padding-left:20px;}
  .container{padding:40px 20px;}
  .footer{grid-template-columns:1fr; gap:30px;}
  .social-icons{justify-content:flex-start;}
}

.menu .active {
  background: linear-gradient(135deg, #1f7a4a, #145c38);
}

.info-box {
  background: rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(0,255,170,0.15);
  line-height: 1.7;
  font-size: 1rem;
}

/* MOVIE CARD WITH RATINGS */
.card {
  background: #003826;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #eafff6;
}

/* STAR RATINGS */
.stars {
  font-size: 20px;
  color: gold;
  text-align: center;
  letter-spacing: 6px;
}

/* Box office Numbers */

.boxoffice-table {
  width: 100%;
  border-collapse: collapse;
  background: #111;
  color: #eaeaea;
  border-radius: 12px;
  overflow: hidden;
}

.boxoffice-table th,
.boxoffice-table td {
  padding: 12px 16px;
  text-align: left;
}

.boxoffice-table thead {
  background: #1e2f27;
}

.boxoffice-table tbody tr:nth-child(even) {
  background: #161616;
}

.boxoffice-table tbody tr:hover {
  background: #1f3a30;
}



