:root {
      --bg: #0b120e;
      --bg-2: #101a14;
      --orange: #f0a020;
      --orange-2: #ffb133;
      --text: #f5f7f5;
      --muted: #9aab9e;
      --line: rgba(255, 255, 255, 0.08);
      --danger: #d32f2f;
      --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
      --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
      --display: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* NAV */
    .site-nav {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 50;
      padding: 1rem 0;
      background: linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 100%);
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      color: #fff;
      line-height: 1.05;
    }
    .brand-mark {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      object-fit: contain;
    }
    .brand-text {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      width: max-content;
    }
    .brand-name {
      font-family: var(--display);
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: #fff;
      white-space: nowrap;
      line-height: 1;
      padding-right: .24em; /* balance last letter-spacing */
    }
    .brand-tag {
      display: block;
      margin-top: .22rem;
      font-size: .5rem;
      font-weight: 700;
      letter-spacing: .085em;
      text-transform: uppercase;
      color: rgba(255,255,255,.72);
      line-height: 1.1;
      white-space: nowrap;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.6rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links a {
      position: relative;
      color: rgba(255,255,255,.86);
      font-size: .95rem;
      font-weight: 500;
      transition: color .2s ease;
      padding-bottom: .2rem;
    }
    .nav-links a:hover,
    .nav-links a.active { color: var(--orange); }
    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -6px;
      height: 2px;
      background: var(--orange);
      border-radius: 99px;
    }
    .nav-links .chevron {
      display: inline-block;
      width: 0; height: 0;
      margin-left: .35rem;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid currentColor;
      vertical-align: middle;
    }
    .nav-actions { display: flex; align-items: center; gap: .75rem; }
    .icon-btn {
      width: 40px; height: 40px; border: 0;
      background: transparent; color: #fff;
      display: grid; place-items: center; border-radius: 50%;
    }
    .search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    height: 42px;
}

.search-input {
    border: none;
    outline: none;
    padding: 0 15px;
    width: 220px;
    font-size: 14px;
}

.search-btn {
    border: none;
    background: transparent;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn svg {
    width: 18px;
    height: 18px;
    stroke: #666;
    fill: none;
    stroke-width: 2;
}

@media (max-width: 991px) {
    .search-box {
        display: none;
    }
}

.mobile-search {
    display: flex;
    align-items: center;
    margin: 15px 0 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}

.mobile-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 15px;
    font-size: 15px;
}

.mobile-search button {
    border: none;
    background: transparent;
    padding: 0 15px;
    cursor: pointer;
}

.mobile-search svg {
    width: 18px;
    height: 18px;
    stroke: #666;
    fill: none;
    stroke-width: 2;
}
    .icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
    .btn-login {
      border: 1px solid rgba(255,255,255,.55);
      color: #fff; background: transparent;
      border-radius: 999px; padding: .7rem 1.25rem;
      font-weight: 600; font-size: .9rem;
      line-height: 1;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }
    .btn-login:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }
    .btn-subscribe {
      background: linear-gradient(180deg, var(--orange-2), var(--orange));
      color: #1a1205 !important; border: 0; border-radius: 999px;
      padding: .7rem 1.3rem; font-weight: 700; font-size: .9rem;
      box-shadow: 0 8px 20px rgba(240,160,32,.28);
      line-height: 1;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }
    .btn-subscribe:hover {
      background: linear-gradient(180deg, #ffc14d, var(--orange-2));
      color: #1a1205 !important;
    }

    /* HERO CAROUSEL */
    .hero-carousel { position: relative; }
    .hero-carousel .carousel-item {
      min-height: 92vh;
      background-color: #0b120e;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .hero-carousel .carousel-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8,12,10,.88) 0%, rgba(8,12,10,.55) 42%, rgba(8,12,10,.2) 70%, rgba(8,12,10,.45) 100%),
        linear-gradient(180deg, rgba(8,12,10,.25) 0%, rgba(8,12,10,.15) 45%, rgba(11,18,14,.95) 100%);
      z-index: 1;
    }
    .hero-carousel .carousel-item > .container {
      position: relative;
      z-index: 2;
      min-height: 92vh;
      display: flex;
      align-items: flex-end;
      padding-bottom: 6.5rem;
    }
    /* .slide-1 { background-image: url("../assets/hero-slide-1.png"); }
    .slide-2 { background-image: url("../assets/hero-slide-2.png"); }
    .slide-3 { background-image: url("../assets/hero-slide-3.png"); } */

    .hero-title {
      font-family: var(--display);
      font-size: clamp(2.2rem, 5.2vw, 4.2rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: .02em;
      text-transform: uppercase;
      max-width: 15ch;
      margin-bottom: 1rem;
      text-shadow: 0 8px 30px rgba(0,0,0,.45);
    }
    .hero-title .accent { color: var(--orange); }
    .hero-sub {
      color: rgba(255,255,255,.9);
      max-width: 38rem;
      font-size: 1.05rem;
      margin-bottom: 1.6rem;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; }
    .btn-watch,
    .btn-list {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .55rem;
      min-height: 52px;
      border-radius: 999px;
      padding: .85rem 1.55rem;
      font-weight: 800;
      font-size: 1rem;
      line-height: 1;
    }
    .btn-watch {
      background: linear-gradient(180deg, var(--orange-2), var(--orange));
      color: #1a1205;
      border: 0;
    }
    .btn-watch svg { width: 16px; height: 16px; fill: currentColor; }
    .btn-list {
      background: rgba(20,28,22,.55);
      border: 1px solid rgba(255,255,255,.45);
      color: #fff;
      backdrop-filter: blur(6px);
    }
    .btn-list:hover { background: rgba(255,255,255,.1); color: #fff; }
    .btn-common {
          background: linear-gradient(180deg, var(--orange-2), var(--orange));
          color: #1a1205;
           font-weight: 800;
        }
    .hero-carousel .carousel-indicators {
      margin-bottom: 1.6rem;
      gap: .35rem;
    }
    .hero-carousel .carousel-indicators [data-bs-target] {
      width: 28px; height: 4px; border: 0; border-radius: 99px;
      background: rgba(255,255,255,.28); opacity: 1; margin: 0;
    }
    .hero-carousel .carousel-indicators .active { background: var(--orange); }
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
      width: 8%;
      opacity: .7;
    }

    /* SECTIONS */
    .section { padding: 3.2rem 0 1rem; }
    .section-head {
      display: flex; align-items: end; justify-content: space-between;
      margin-bottom: 1.35rem;
    }
    .section-title {
      font-family: var(--display);
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      font-weight: 800; margin: 0;
      display: inline-flex;
      align-items: center;
      gap: .55rem;
    }
    .section-title::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 2px;
      background: var(--orange);
      box-shadow: 0 0 0 3px rgba(240,160,32,.18);
      transform: rotate(45deg);
    }
    .view-all { color: var(--orange); font-weight: 700; font-size: .95rem; }
    .view-all:hover { color: var(--orange-2); }

    .movie-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1rem;
    }
    .movie-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: #1a241d;
      box-shadow: var(--shadow);
      transition: transform .25s ease, box-shadow .25s ease;
      cursor: pointer;
    }
    .movie-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 22px 45px rgba(0,0,0,.45);
    }
    .movie-poster {
      aspect-ratio: 2 / 3;
      width: 100%;
      object-fit: cover;
      background: #223127;
    }
    .movie-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.82) 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: .9rem .75rem;
    }
    .movie-play {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -58%);
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(0,0,0,.45);
      border: 2px solid rgba(255,255,255,.75);
      display: grid; place-items: center; opacity: .85;
    }
    .movie-play svg { width: 14px; height: 14px; fill: #fff; margin-left: 2px; }
    .badge-premium {
      position: absolute; top: .65rem; left: .65rem; z-index: 2;
      background: var(--danger); color: #fff;
      font-size: .68rem; font-weight: 700;
      padding: .22rem .45rem; border-radius: 4px;
      text-transform: uppercase;
    }
    .movie-name {
      font-size: .92rem; font-weight: 800;
      text-transform: uppercase; margin: 0 0 .15rem; line-height: 1.2;
    }
    .movie-genre { margin: 0; color: var(--muted); font-size: .78rem; }

    /* PLANS */
    .plans {
      padding: 4.5rem 0 4rem;
      background:
        radial-gradient(ellipse at 20% 0%, rgba(240,160,32,.08), transparent 50%),
        linear-gradient(180deg, #0b120e 0%, #0e1711 100%);
    }
    .plans .row.g-3 { --bs-gutter-x: 1.1rem; --bs-gutter-y: 1.1rem; }
    .plans .col-lg-5 { padding-left: 1rem; }
    .plans-intro { margin-bottom: 2rem; }
    .plans-intro h2 {
      font-family: var(--display); font-weight: 800;
      font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: .4rem;
    }
    .plans-intro p { color: var(--muted); margin: 0; }
    .plan-card {
      background: linear-gradient(180deg, #1c2c22, #152018);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      padding: 1.6rem 1.35rem 1.4rem;
      height: 100%;
      position: relative;
      box-shadow: var(--shadow);
      transition: transform .25s ease;
    }
    .plan-card:hover { transform: translateY(-4px); }
    .plan-card.popular {
      border-color: rgba(240,160,32,.65);
      background: linear-gradient(180deg, #243528, #1a261e);
      box-shadow: 0 0 0 1px rgba(240,160,32,.25), var(--shadow);
    }
    .popular-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--orange); color: #1a1205;
      font-size: .72rem; font-weight: 800; letter-spacing: .04em;
      padding: .3rem .7rem; border-radius: 999px; white-space: nowrap;
    }
    .plan-name { font-size: 1.15rem; font-weight: 800; margin-bottom: .35rem; }
    .plan-price {
      font-size: 2.3rem; font-weight: 800; color: var(--orange);
      line-height: 1; margin-bottom: .35rem;
    }
    .plan-term { color: var(--muted); font-size: .9rem; margin-bottom: 1.1rem; }
    .plan-features { list-style: none; padding: 0; margin: 0 0 1.35rem; }
    .plan-features li {
      display: flex; align-items: center; gap: .55rem;
      padding: .35rem 0; color: rgba(255,255,255,.9); font-size: .92rem;
    }
    .plan-features .check {
      width: 18px; height: 18px; border-radius: 50%;
      background: rgba(240,160,32,.18); color: var(--orange);
      display: grid; place-items: center; flex-shrink: 0;
    }
    .plan-features .check svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; }
    .btn-plan {
      width: 100%; border-radius: 999px; padding: .75rem 1rem; font-weight: 800;
      border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff;
    }
    .btn-plan:hover { background: rgba(255,255,255,.08); color: #fff; }
    .btn-plan.solid {
      background: linear-gradient(180deg, var(--orange-2), var(--orange));
      border: 0; color: #1a1205;
    }
    .btn-plan.solid:hover {
      background: linear-gradient(180deg, #ffc14d, var(--orange-2)); color: #1a1205;
    }

    .devices-panel {
      background: linear-gradient(180deg, #1a2a20, #132018);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px; padding: 1.8rem 1.5rem; height: 100%;
      box-shadow: var(--shadow);
    }
    .devices-panel h3 {
      font-family: var(--display); font-weight: 800; font-size: 1.55rem; margin-bottom: .45rem;
    }
    .devices-panel p { color: var(--muted); margin-bottom: 1.4rem; }
    .device-list {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: .85rem; margin-bottom: 1.5rem;
    }
    .device-item {
      display: flex; align-items: center; gap: .65rem;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 12px; padding: .75rem .8rem;
      font-weight: 600; font-size: .92rem;
    }
    .device-item svg {
      width: 22px; height: 22px; stroke: var(--orange);
      fill: none; stroke-width: 1.7; flex-shrink: 0;
    }
    .btn-app {
      width: 100%; border: 0; border-radius: 999px; padding: .85rem 1rem;
      font-weight: 800;
      background: linear-gradient(180deg, var(--orange-2), var(--orange));
      color: #1a1205;
    }
    .btn-app:hover {
      background: linear-gradient(180deg, #ffc14d, var(--orange-2)); color: #1a1205;
    }

    /* FOOTER */
    .site-footer {
      margin-top: 2rem; padding: 3.5rem 0 1.5rem;
      background:
        radial-gradient(circle at 10% 20%, rgba(46,90,58,.35), transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(46,90,58,.25), transparent 30%),
        linear-gradient(180deg, #0f1a13, #0a110c);
      border-top: 1px solid var(--line);
    }
    .footer-brand { margin-bottom: .85rem; }
    .footer-brand .brand-mark { width: 42px; height: 42px; }
    .footer-brand .brand-name { font-size: 1.35rem; }
    .footer-about {
      color: var(--muted); font-size: .92rem; line-height: 1.6;
      max-width: 28rem; margin-bottom: 1.1rem;
    }
    .socials { display: flex; gap: .65rem; }
    .socials a {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(240,160,32,.35);
      background: rgba(240,160,32,.12);
      display: grid; place-items: center;
      color: var(--orange);
    }
    .socials a:hover { border-color: var(--orange); color: #fff; background: rgba(240,160,32,.28); }
    .socials svg { width: 16px; height: 16px; fill: currentColor; }
    .footer-col h4 {
      font-size: .95rem; font-weight: 800; margin-bottom: .9rem;
      text-transform: uppercase; letter-spacing: .04em;
    }
    .footer-col ul { list-style: none; padding: 0; margin: 0; }
    .footer-col li { margin-bottom: .55rem; }
    .footer-col a { color: var(--muted); font-size: .9rem; }
    .footer-col a:hover { color: var(--orange); }
    .footer-bottom {
      margin-top: 2.5rem; padding-top: 1.2rem;
      border-top: 1px solid var(--line);
      color: var(--muted); font-size: .88rem; text-align: center;
    }

    /* IMPORTANT: hide mobile menu on desktop (was causing duplicate nav) */
    .mobile-menu { display: none !important; }
    .mobile-toggle {
      display: none; width: 42px; height: 42px;
      border: 1px solid rgba(255,255,255,.25);
      background: rgba(0,0,0,.25); border-radius: 10px; color: #fff;
    }
    .mobile-toggle span,
    .mobile-toggle span::before,
    .mobile-toggle span::after {
      display: block; width: 18px; height: 2px; background: #fff;
      margin: 0 auto; position: relative;
    }
    .mobile-toggle span::before,
    .mobile-toggle span::after { content: ""; position: absolute; left: 0; }
    .mobile-toggle span::before { top: -6px; }
    .mobile-toggle span::after { top: 6px; }


    .main-page-section {
    padding-top: 2.2rem;
    padding-bottom: 1.2rem;
   }

   .main-head {
    text-align: center;
}
    .main-title {
      font-family: var(--display);
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      font-weight: 800; margin: 0;
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding-bottom:25px;
    }
    .main-title::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 2px;
      background: var(--orange);
      box-shadow: 0 0 0 3px rgba(240,160,32,.18);
      transform: rotate(45deg);
    }

    .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: #f1a222;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

.page-btn:hover {
    background: #d18b1a;
    transform: translateY(-2px);
    color: #fff;
}

.page-btn.disabled {
    background: #d6d6d6;
    color: #777;
    cursor: not-allowed;
    pointer-events: none;
}

.page-info {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 30px;
    font-weight: 600;
    color: #333;
}

.page-info strong {
    color: #f1a222;
}

/* Login page wifiuser */

.login-section {
    padding: 100px 15px 60px;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 100%;
    max-width: 450px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

.login-title {
    margin: 0 0 10px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.login-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.alert-message {
    background: #fdeaea;
    color: #d32f2f;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.form-control:focus {
    border-color: linear-gradient(180deg, #ffc14d, var(--orange-2));
    box-shadow: 0 0 0 3px rgba(255,213,100,.25);
}

.submit-btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, var(--orange-2), var(--orange));
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: linear-gradient(180deg, #ffc14d, var(--orange-2));
}

.no-found {
width:100%;
padding:40px 0;
text-align: center;
}

/* ===============================
   Privacy Policy
================================== */

.main-page{
    padding:70px 0;
}

.main-page-header{
    text-align:center;
    margin-bottom:40px;
}

.main-page-header h1{
    font-size:35px;
    font-weight:700;
    margin-bottom:10px;
}

.main-page-header p{
    font-size:16px;
    color:#777;
}

.privacy-content{
    background:#fff;
    padding:45px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    line-height:1.9;
}

.privacy-content h2{
    font-size:24px;
    color:#0d6efd;
    margin-top:35px;
    margin-bottom:15px;
    padding-bottom:8px;
    border-bottom:2px solid #f1f1f1;
}

.privacy-content p{
    font-size:16px;
    color:#555;
    margin-bottom:18px;
    text-align:justify;
}

.privacy-content ul{
    margin:20px 0;
    padding-left:25px;
}

.privacy-content ul li{
    margin-bottom:12px;
    color:#555;
    line-height:1.8;
}

.privacy-content strong{
    color:#222;
}

.privacy-content a{
    color:#0d6efd;
    text-decoration:none;
}

.privacy-content a:hover{
    text-decoration:underline;
}

/* Contact Section */

.privacy-content h2:last-of-type{
    margin-top:40px;
}

@media(max-width:768px){

    .main-page{
        padding:30px 0;
    }

    .privacy-content{
        padding:25px;
    }

    .main-page-header h1{
        font-size:28px;
    }

    .privacy-content h2{
        font-size:20px;
    }

    .privacy-content p{
        font-size:15px;
    }

}

@media (max-width: 576px) {
    .login-card {
        padding: 25px 20px;
    }

    .login-title {
        font-size: 24px;
    }
}

.mydownloads_btn {
   padding-top: 8px;
    text-align: center;
}

.edit-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    color: #f4a424;
    text-decoration: none;
}

.edit-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.edit-icon:hover {
    color: #ac7722;
}


/* Media CSS  */

@media (max-width: 576px) {
    .pagination {
        gap: 10px;
    }

    .page-btn,
    .page-info {
        width: 100%;
        text-align: center;
    }
}

    @media (max-width: 1199.98px) {
      .movie-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 991.98px) {
      .site-nav {
        position: sticky; top: 0;
        background: rgba(11,18,14,.94);
        backdrop-filter: blur(10px); padding: .85rem 0;
      }
      .nav-desktop { display: none !important; }
      .mobile-toggle { display: grid; place-items: center; }
      .mobile-menu {
        display: none !important;
        background: #101a14;
        border-top: 1px solid var(--line);
        padding: 1rem 0 1.2rem;
      }
      .mobile-menu.open { display: block !important; }
      .mobile-menu .nav-links {
        flex-direction: column; align-items: flex-start;
        gap: .9rem; margin-bottom: 1rem;
      }
      .mobile-menu .nav-links a.active::after { display: none; }
      .hero-carousel .carousel-item,
      .hero-carousel .carousel-item > .container { min-height: 78vh; }
      .hero-carousel .carousel-item > .container {
        align-items: center; padding-bottom: 5rem;
      }
      .movie-grid { grid-template-columns: repeat(3, 1fr); }
      .brand-mark { width: 40px; height: 40px; }
      .brand-name {
        font-size: 1.25rem;
        letter-spacing: .22em; /* tablet / pad */
        padding-right: .22em;
      }
    }
    @media (max-width: 767.98px) {
      .movie-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
      .nav-actions .btn-login { display: none; }
      .device-list { grid-template-columns: 1fr; }
      .hero-title { max-width: none; }
      .brand-name {
        font-size: 1.1rem;
        letter-spacing: .1em; /* mobile */
        padding-right: .1em;
      }
      .brand-tag { display: none; }
    }
