*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    width: 100%;
    height: 100vh;
    
}
.head{
    width: 100%;
    height: 80px;
    padding: 20px;
    background-color: #14181c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 100;
    position: sticky;
    top: 0;
    transition: background-color 0.3s ease;
    color: white;
    font-family: 'Poppins', sans-serif;
}
.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    color: white;
    margin: 0 auto; 
}
.nav-left{
    display: flex;
    align-items: center;
}
.logo img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-position: cover;
    margin-right: 10px; 
}
.nav-left h1 a{
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-weight: 900;
}
.nav-center{
    width: 50%;
}
.nav-center ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    color: white;
    font-family: 'Poppins', sans-serif;   
}
.nav-center ul li{
    margin: 0 7px;
}
.nav-center ul a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}
.nav-center ul a:hover{
    color: #ff6347;
}
.nav-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.nav-right input{
    width: 70%; 
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 16px;
    transition: width 0.3s ease;
}
.nav-right input:focus{
    width: 85%;
}
.nav-right i{
    color: black;
    margin-left: -30px;
    cursor: pointer;
    transition: color 0.3s ease;
}
.nav-right i:hover{
    color: #ff6347;
}

/* -------------------------------------- */
/*        MOBILE RESPONSIVE DESIGN        */
/* -------------------------------------- */

.menu-btn{
    display: none;
    font-size: 28px;
    cursor: pointer;
    color:white;
}

/* For mobile: 0–768px */
@media (max-width: 768px){
    .nav{
        padding: 0 10px;
    }

    .nav-center{
        display: none; /* hide menu */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #14181c;
        padding: 20px 0;
        text-align: center;
    }

    .nav-center.mobile-active{
        display: block;
    }

    .nav-center ul{
        flex-direction: column;
        gap: 20px;
    }

    .nav-right{
        display: none;
    }

    .menu-btn{
        display: block;
    }
}
.hero{
    width: 100%;
    height: 550px;

}
.hero .img{
    width: 100%;
    height: 100%;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}   
.hero-content {
    width: 100%;
    height: 300px;
    background-color: #14181c;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
    text-align: center;
}

.hero-content p {
    font-size: 34px;
    font-weight: 600;
}

/* Button */
.hero-content button {
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 28px;
    font-weight: 600;
    color: white;
    background-color: #27ad09;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-content button:hover {
    background-color: #1d8f07;
}


/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
    .hero-content {
        height: 260px;
        padding: 15px;
    }

    .hero-content p {
        font-size: 30px;
    }

    .hero-content button {
        font-size: 24px;
        padding: 10px 22px;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .hero-content {
        height: auto;
        padding: 40px 15px;
    }

    .hero-content p {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-content button {
        font-size: 20px;
        padding: 10px 18px;
    }
}

/* Small Mobiles */
@media (max-width: 480px) {
    .hero-content p {
        font-size: 22px;
    }

    .hero-content button {
        font-size: 18px;
        padding: 8px 16px;
    }
}


/* ===================== MAIN SECTION (TOP MOVIE ROW + BOXES) ===================== */

.main-section {
    width: 100%;
    padding: 60px 0;
    background: #14181c;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; /* gap between each div */
}

/* ROW */
.movie-row {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

/* CARD */
.movie-card {
  width: 150px;
  height: 250px;
  background: #0f141a;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

/* CLICK AREA */
.movie-card .video-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* THUMBNAIL BACKGROUND */
.thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* YOUTUBE OVERLAY */
.yt-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3), rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.yt-play-icon {
  width: 55px;
  height: 38px;
  border-radius: 12px;
  background: #ff0000;
  position: relative;
}

/* REAL VIDEO */
.movie-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
  opacity: 0;
  pointer-events: none; /* click still goes to link */
  transition: opacity 0.25s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) { .movie-card { width: 150px; } }
@media (max-width: 700px) { .movie-card { width: 135px; } }
@media (max-width: 550px) { .movie-card { width: 120px; } }
@media (max-width: 430px) { .movie-card { width: 110px; } }
@media (max-width: 360px) { .movie-card { width: 100px; } }


/* OTHER SECTION DIVS — empty for now */
.section-div {
    width: 90%;
    max-width: 1200px;
    min-height: 150px;
    background: #1b2228;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* ===================== LETS YOU SECTION ===================== */

.letsyou-section {
    width: 100%;
    background: #14181c;
    padding: 40px 0 60px 0;
    color: #8ca0b3;
}

.letsyou-section h2 {
    text-align: left;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.letsyou-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.letsyou-card {
    background: #435361;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #d0d7de;
    cursor: pointer;
    transition: 0.2s ease;
}

.letsyou-card:hover {
    background: #16d85f;
    color: #000;
}

.icon {
    font-size: 32px;
    opacity: 0.85;
}

.letsyou-card p {
    font-size: 16px;
    line-height: 22px;
    margin: 0;
}

/* ===================== JUST REVIEWED SECTION ===================== */

.just-reviewed-section {
    width: 100%;
    background: #14181c;
    padding: 40px 0 60px 0;
    color: #9fb2c4;
}

/* Top Row */
.jr-top {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.jr-top h3 {
    font-size: 16px;
    letter-spacing: 2px;
    color: #9fb2c4;
}

.jr-top span {
    font-size: 14px;
    color: #8fa0b0;
}

/* Posters Row */
.jr-posters {
    width: 90%;
    max-width: 1300px;
    margin: 20px auto 30px auto;
    display: flex;
    gap: 15px;
    overflow: hidden;
}

.jr-posters img {
    width: 120px;
    height: 175px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
    transition: .2s ease;
}

.jr-posters img:hover {
    transform: scale(1.05);
}

/* Bottom Text */
.jr-bottom {
    text-align: center;
    margin-top: 25px;
}

.jr-bottom h1 {
    font-size: 32px;
    font-weight: 600;
    color: #d5e1ec;
    line-height: 1.4;
}

.jr-bottom p {
    margin-top: 14px;
    font-size: 18px;
    color: #8fa0b0;
}

.jr-bottom a {
    color: #47a3ff;
    text-decoration: none;
}

.jr-bottom a:hover {
    text-decoration: underline;
}

/* ===================== TWO-COL PAGE (REVIEWS + SIDEBAR) ===================== */

.two-col-page {
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 40px 40px;
    display: grid;
    grid-template-columns: 65% 28%;
    column-gap: 7%;
    box-sizing: border-box;
}

/* Section Titles */
.two-col-page h2 {
    color: #d5e1ec;
    font-size: 22px;
    margin-bottom: 20px;
}

/* Review Card */
.review-card {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.poster {
    width: 120px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

/* Review Info */
.review-info .title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.review-info .year {
    font-size: 24px;
    color: #9bb3c8;
}

.user-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: #9bb3c8;
}

.pfp {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.text {
    color: #b9c9db;
    font-size: 20px;
    margin-top: 10px;
}

.likes-row {
    margin-top: 10px;
    font-size: 18px;
    color: #b9c9db;
}

/* Right Side Banner */
.right-col {
    align-self: flex-start;
}

.list-banner img {
    width: 100%;
    max-width: 260px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
}

.list-info {
    margin-top: 10px;
}

.right-col .username {
    color: #fff;
    font-size: 20px;
}

.sub {
    color: #9bb3c8;
    font-size: 16px;
}

/* ===================== RESPONSIVE BREAKPOINTS ===================== */

/* 1200px – tighten padding a bit */
@media (max-width: 1200px) {
    .two-col-page {
        padding: 35px 25px;
    }

    .review-info .title {
        font-size: 28px;
    }

    .review-info .year {
        font-size: 20px;
    }
}

/* 1024px – 2-col page becomes single column (stack) */
@media (max-width: 1024px) {
    .two-col-page {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 40px;
        padding: 30px 20px;
    }

    .right-col {
        max-width: 420px;
        width: 100%;
    }

    .list-banner img {
        max-width: 100%;
    }
}

/* 900px – movie row wraps, letsyou grid 2 cols */
@media (max-width: 900px) {
    .movie-row {
        flex-wrap: wrap;
    }

    .movie-card {
        width: 140px;
        height: 210px;
    }

    .letsyou-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 768px – posters scroll, review card shrinks a bit */
@media (max-width: 768px) {
    .jr-posters {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .jr-posters img {
        width: 110px;
        height: 165px;
    }

    .jr-bottom h1 {
        font-size: 26px;
    }

    .jr-bottom p {
        font-size: 16px;
    }

    .jr-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-card {
        gap: 15px;
    }

    .poster {
        width: 100px;
        height: 150px;
    }

    .review-info .title {
        font-size: 24px;
    }

    .review-info .year {
        font-size: 18px;
    }

    .text {
        font-size: 16px;
    }

    .likes-row {
        font-size: 14px;
    }
}

/* 600px – single-col grids, smaller cards, stack review card vertically */
@media (max-width: 600px) {
    .main-section {
        padding: 40px 0;
        gap: 35px;
    }

    .movie-card {
        width: 120px;
        height: 180px;
    }

    .letsyou-grid {
        grid-template-columns: 1fr;
    }

    .letsyou-card {
        padding: 18px;
    }

    .two-col-page {
        padding: 25px 15px;
    }

    .review-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .poster {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    .review-info .title {
        font-size: 22px;
    }

    .review-info .year {
        font-size: 16px;
    }
}

/* 480px – extra small tweaks */
@media (max-width: 480px) {
    .jr-bottom h1 {
        font-size: 22px;
    }

    .jr-bottom p {
        font-size: 14px;
    }

    .jr-top h3 {
        font-size: 14px;
    }

    .jr-top span {
        font-size: 12px;
    }

    .movie-row {
        gap: 12px;
    }

    .movie-card {
        width: 110px;
        height: 165px;
    }
}

/* =========================
   BASE STYLES
========================= */

.lb-stories {
    padding: 60px 80px;
    background: #0d0f12;
    color: #d7e0ea;
    font-family: "Inter", sans-serif;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.story-card {
    background: #161a1d;
    padding-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #22272a;
    box-shadow: 0 0 40px rgba(0,0,0,0.35);
    transition: 0.25s;
}

.story-card:hover {
    transform: translateY(-4px);
}

.story-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.story-source {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px 10px 20px;
    font-size: 15px;
    color: #9fb3c8;
}

.story-source img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.story-title {
    padding: 0 20px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.story-text {
    padding: 0 20px;
    font-size: 17px;
    color: #aab8c5;
    line-height: 1.55;
    margin-bottom: 16px;
}

.read-btn {
    display: inline-block;
    margin-left: 20px;
    margin-top: 10px;
    color: #4fa3ff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .5px;
}

.content-section {
    width: 100%;
    background: #0e141a;
    padding: 50px 0 80px;
}

.section-header {
    width: 1100px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    color: #b7c8d6;
    font-size: 22px;
    letter-spacing: 2px;
}

.more-btn {
    color: #b7c8d6;
    text-decoration: none;
    font-size: 16px;
}


/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* 1200px — Large Laptops */
@media (max-width: 1200px) {
    .section-header {
        width: 95%;
    }

    .lb-stories {
        padding: 50px 40px;
    }

    .story-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* 992px — Tablets (2 Columns) */
@media (max-width: 992px) {
    .lb-stories {
        padding: 50px 30px;
    }

    .story-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .story-img {
        height: 230px;
    }

    .section-header {
        width: 90%;
    }
}

/* 768px — Mobile (1 Column) */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .story-img {
        height: 220px;
    }

    .story-title {
        font-size: 22px;
    }

    .story-text {
        font-size: 16px;
    }

    .lb-stories {
        padding: 40px 25px;
    }

    .section-header {
        width: 92%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .more-btn {
        font-size: 15px;
    }
}

/* 480px — Small Phones */
@media (max-width: 480px) {
    .story-img {
        height: 200px;
    }

    .story-source img {
        width: 22px;
        height: 22px;
    }

    .story-title {
        font-size: 20px;
    }

    .lb-stories {
        padding: 35px 20px;
    }
}


/* SHOWDOWNS GRID */
/* -------- BASE GRID (Desktop) -------- */
.showdown-grid,
.news-grid {
    width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* -------- CARD IMAGES -------- */
.showdown-card .show-img,
.news-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

.showdown-card h3,
.news-title {
    margin-top: 15px;
    font-size: 26px;
    color: #fff;
}

.showdown-card p,
.news-sub {
    margin-top: 10px;
    font-size: 18px;
    color: #b7c8d6;
    line-height: 1.5;
}

.badge {
    background: #1fbf38;
    padding: 6px 12px;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    position: absolute;
    margin: 12px;
}

/* ----------- RESPONSIVE ------------ */

/* Large Laptops (max 1200px) */
@media (max-width: 1200px) {
    .showdown-grid,
    .news-grid {
        width: 95%;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets (max 992px) → 2 Columns */
@media (max-width: 992px) {
    .showdown-grid,
    .news-grid {
        width: 95%;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .showdown-card .show-img,
    .news-img {
        height: 230px;
    }
}

/* Mobile (max 768px) → 1 Column */
@media (max-width: 768px) {
    .showdown-grid,
    .news-grid {
        width: 95%;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .showdown-card h3,
    .news-title {
        font-size: 22px;
    }

    .showdown-card p,
    .news-sub {
        font-size: 16px;
    }

    .showdown-card .show-img,
    .news-img {
        height: 220px;
    }
}

/* Small Phones (max 480px) */
@media (max-width: 480px) {
    .badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .showdown-card .show-img,
    .news-img {
        height: 200px;
    }
}

 /* footer-section */
.lb-footer {
    background: #1a242f;
    padding: 40px 0 60px;
    color: #9fb4c6;
    font-family: Arial, sans-serif;
}

/* ------------ MAIN ROW ------------ */
.footer-inner {
    width: 1100px;
    max-width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT LINKS */
.footer-links a {
    margin-right: 20px;
    color: #b7c8d6;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.footer-social i {
    font-size: 22px;
    margin-left: 18px;
    color: #b7c8d6;
    cursor: pointer;
    transition: 0.2s;
}

.footer-social i:hover {
    color: #fff;
}

/* ------------ COPYRIGHT ------------ */
.footer-bottom {
    width: 1100px;
    max-width: 95%;
    margin: 30px auto 0;
    color: #9fb4c6;
    font-size: 16px;
    text-align: center;
}

.footer-bottom a {
    color: #82a5bf;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===================================== */
/*          RESPONSIVE FOOTER            */
/* ===================================== */

@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-links a {
        display: inline-block;
        margin: 10px 12px;
        font-size: 17px;
    }

    .footer-social i {
        margin: 0 12px;
        font-size: 24px;
    }
}

@media (max-width: 500px) {
    .footer-links a {
        display: block;
        margin: 8px 0;
        font-size: 16px;
    }

    .footer-social i {
        margin: 0 10px;
        font-size: 22px;
    }

    .footer-bottom {
        font-size: 14px;
        line-height: 1.6;
    }
}



