/* =========================================================
   STREAMHUB
   DARK / PINK CINEMATIC DESIGN
   Desktop + Tablet + Mobile

   IMPORTANT:
   Layout positions and existing HTML class names are preserved.
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  background: #050505;
  color: #f5f5f5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  background:
    linear-gradient(
      180deg,
      #050505 0%,
      #070707 45%,
      #050505 100%
    );

  color: #f5f5f5;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 16px;
  line-height: 1.5;

  min-height: 100vh;

  overflow-x: hidden;
}


/* =========================================================
   LINKS
========================================================= */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}


/* =========================================================
   IMAGES
========================================================= */

img {
  display: block;
  max-width: 100%;
}


/* =========================================================
   MAIN WRAPPER
   POSITION UNCHANGED
========================================================= */

.wrap {
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 0 auto;
}


/* =========================================================
   TOP HEADER
   POSITION UNCHANGED
========================================================= */

.top {
  display: flex;
  align-items: center;

  gap: 32px;

  padding-top: 24px;
  padding-bottom: 0;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand {
  flex: 0 0 auto;

  width: 230px;
  height: 52px;

  display: flex;
  align-items: center;
  gap: 10px;

  white-space: nowrap;

  color: #ffffff;

  font-size: 30px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: -0.8px;

  overflow: visible;
}

.brand::before {
  content: "";

  display: block;

  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  background-image:
    url("https://i.ibb.co/C362S7tV/Fd-Xij-Xw-AEXwn-J.png");

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* =========================================================
   SEARCH
   POSITION / WIDTH PRESERVED
========================================================= */

.search {
  width: 600px;
  max-width: 100%;

  height: 44px;

  padding: 0 16px;

  border: 1px solid #303030;
  border-radius: 5px;

  background:
    linear-gradient(
      180deg,
      #151515 0%,
      #101010 100%
    );

  color: #ffffff;

  outline: none;

  font-size: 16px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.025);

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.search::placeholder {
  color: #888888;
}

.search:focus {
  border-color: #ff2d68;

  background:
    linear-gradient(
      180deg,
      #181818 0%,
      #121212 100%
    );

  box-shadow:
    0 0 0 2px rgba(255, 45, 104, 0.10);
}


/* =========================================================
   NAVIGATION
   POSITION / ORDER / GAP PRESERVED
========================================================= */

.nav {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-top: 18px;

  padding-bottom: 14px;

  border-bottom: 1px solid #272727;

  flex-wrap: wrap;
}


.nav a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 40px;

  padding: 9px 16px;

  border-radius: 5px;

  color: #eeeeee;

  font-size: 17px;

  font-weight: 700;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}


.nav a:hover {
  background: #202020;

  color: #ffffff;
}


.nav a.active {
  background:
    linear-gradient(
      180deg,
      #ff326c 0%,
      #f51f5c 100%
    );

  color: #ffffff;

  box-shadow:
    0 3px 10px rgba(255, 35, 95, 0.18);
}


/* =========================================================
   ANNOUNCEMENT BAR

   POSITION / HEIGHT PRESERVED
========================================================= */

.announcement-bar {
  width: 100%;

  height: 42px;

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #151515 0%,
      #101010 100%
    );

  border-bottom: 1px solid #292929;

  white-space: nowrap;
}


/* =========================================================
   ANNOUNCEMENT TRACK
========================================================= */

.announcement-track {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  overflow: visible;

  pointer-events: none;
}


/* =========================================================
   ANNOUNCEMENT TEXT
========================================================= */

.announcement-text {
  position: absolute;

  top: 0;
  left: 0;

  display: block;

  width: max-content;

  height: 100%;

  padding: 0;
  margin: 0;

  color: #f1f1f1;

  font-size: 15px;

  font-weight: 500;

  line-height: 42px;

  white-space: nowrap;

  will-change: transform;

  text-shadow:
    0 1px 1px rgba(0,0,0,0.5);
}


/* =========================================================
   MAIN CONTENT
========================================================= */

main.wrap {
  padding-top: 20px;
  padding-bottom: 60px;
}


/* =========================================================
   GENERAL BAR
========================================================= */

.bar {
  width: 100%;

  min-height: 62px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 10px 14px;

  margin-bottom: 16px;

  border: 1px solid #292929;

  border-radius: 7px;

  background:
    linear-gradient(
      180deg,
      #151515 0%,
      #101010 100%
    );

  box-shadow:
    0 1px 0 rgba(255,255,255,0.015);
}


/* =========================================================
   BAR TITLE
========================================================= */

.bar-title {
  font-size: 18px;

  font-weight: 700;

  color: #ffffff;

  line-height: 1.3;
}


/* =========================================================
   SORT
========================================================= */

.sort {
  min-width: 160px;

  height: 42px;

  padding: 0 12px;

  border: 1px solid #363636;

  border-radius: 5px;

  background:
    linear-gradient(
      180deg,
      #202020 0%,
      #181818 100%
    );

  color: #ffffff;

  font-size: 15px;

  outline: none;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.sort:hover {
  border-color: #484848;
}

.sort:focus {
  border-color: #ff2d68;

  box-shadow:
    0 0 0 2px rgba(255,45,104,0.08);
}


/* =========================================================
   VIDEO GRID
   DESKTOP = 3 COLUMNS
========================================================= */

.grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  column-gap: 20px;

  row-gap: 28px;

  width: 100%;
}


/* =========================================================
   TRENDING GRID
========================================================= */

.trending-grid {
  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  column-gap: 16px;

  row-gap: 24px;
}


/* =========================================================
   VIDEO CARD
========================================================= */

.card {
  display: block;

  width: 100%;

  min-width: 0;

  color: #ffffff;

  border-radius: 6px;

  overflow: hidden;

  transition:
    transform 0.18s ease;
}


.card:hover {
  transform: translateY(-2px);
}


/* =========================================================
   THUMBNAIL
========================================================= */

.thumb {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  border-radius: 6px;

  background: #161616;

  border: 1px solid #292929;

  box-shadow:
    0 2px 8px rgba(0,0,0,0.35);
}


.thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  background: #181818;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}


.card:hover .thumb img {
  transform: scale(1.025);

  filter:
    brightness(1.05);
}


/* =========================================================
   QUALITY BADGE
========================================================= */

.badge {
  position: absolute;

  top: 9px;
  right: 9px;

  padding: 3px 7px;

  border-radius: 4px;

  background:
    rgba(0, 0, 0, 0.88);

  color: #ffffff;

  font-size: 12px;

  font-weight: 700;

  line-height: 1.3;

  z-index: 2;

  border: 1px solid rgba(255,255,255,0.08);
}


/* =========================================================
   DURATION
========================================================= */

.duration {
  position: absolute;

  right: 9px;
  bottom: 9px;

  padding: 3px 7px;

  border-radius: 4px;

  background:
    rgba(0, 0, 0, 0.90);

  color: #ffffff;

  font-size: 12px;

  font-weight: 700;

  line-height: 1.3;

  z-index: 2;

  border: 1px solid rgba(255,255,255,0.08);
}


/* =========================================================
   VIDEO TITLE
========================================================= */

.card-title {
  margin-top: 9px;

  color: #ffffff;

  font-size: 15px;

  font-weight: 600;

  line-height: 1.35;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}


/* =========================================================
   PAGINATION
========================================================= */

.pages {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 34px;
}


.pages a,
.pages span {
  min-width: 40px;

  height: 40px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0 10px;

  border: 1px solid #303030;

  border-radius: 5px;

  background: #151515;

  color: #dddddd;

  font-size: 14px;

  font-weight: 500;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}


.pages a:hover {
  background: #242424;

  color: #ffffff;

  border-color: #454545;
}


.pages a.current {
  background:
    linear-gradient(
      180deg,
      #ff326c 0%,
      #f51f5c 100%
    );

  color: #ffffff;

  border-color: #ff326c;

  font-weight: 700;
}


.pages span {
  opacity: 0.45;

  cursor: default;
}


/* =========================================================
   OTT GRID
========================================================= */

.ott-grid {
  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  gap: 20px;
}


/* =========================================================
   OTT CARD
========================================================= */

.ott-card {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  min-width: 0;

  padding: 18px;

  min-height: 170px;

  border: 1px solid #292929;

  border-radius: 8px;

  background:
    linear-gradient(
      180deg,
      #151515 0%,
      #101010 100%
    );

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.ott-card:hover {
  background:
    linear-gradient(
      180deg,
      #1d1d1d 0%,
      #151515 100%
    );

  border-color: #ff2d68;

  transform: translateY(-2px);

  box-shadow:
    0 5px 18px rgba(0,0,0,0.35);
}


.ott-card img {
  width: 110px;

  height: 90px;

  object-fit: contain;

  margin-bottom: 12px;
}


.ott-name {
  color: #ffffff;

  font-size: 16px;

  font-weight: 600;

  text-align: center;

  word-break: break-word;
}


/* =========================================================
   ACTRESS GRID
========================================================= */

.actress-grid {
  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 20px;
}


/* =========================================================
   ACTRESS CARD
========================================================= */

.actress-card {
  display: block;

  min-width: 0;

  border: 1px solid #292929;

  border-radius: 8px;

  background:
    linear-gradient(
      180deg,
      #151515 0%,
      #101010 100%
    );

  overflow: hidden;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}


.actress-card:hover {
  transform: translateY(-2px);

  background:
    linear-gradient(
      180deg,
      #1c1c1c 0%,
      #151515 100%
    );

  border-color: #ff2d68;

  box-shadow:
    0 5px 18px rgba(0,0,0,0.35);
}


/* =========================================================
   ACTRESS IMAGE
========================================================= */

.actress-image {
  width: 100%;

  aspect-ratio: 3 / 4;

  background: #181818;

  overflow: hidden;
}


.actress-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}


.actress-card:hover .actress-image img {
  transform: scale(1.025);

  filter:
    brightness(1.05);
}


/* =========================================================
   ACTRESS NAME
========================================================= */

.actress-name {
  padding: 11px 8px;

  color: #ffffff;

  font-size: 15px;

  font-weight: 600;

  text-align: center;

  line-height: 1.3;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;
}


/* =========================================================
   ACTRESS PROFILE
========================================================= */

.actress-profile {
  display: flex;

  align-items: center;

  gap: 20px;

  margin-bottom: 20px;

  padding: 16px;

  border: 1px solid #292929;

  border-radius: 8px;

  background:
    linear-gradient(
      180deg,
      #151515 0%,
      #101010 100%
    );
}


.actress-profile img {
  width: 110px;

  height: 140px;

  object-fit: cover;

  border-radius: 6px;

  background: #181818;

  border: 1px solid #303030;
}


.actress-profile h1 {
  margin: 0;

  color: #ffffff;

  font-size: 26px;

  line-height: 1.25;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.crumb {
  margin-bottom: 18px;

  color: #888888;

  font-size: 13px;

  line-height: 1.5;

  word-break: break-word;
}


.crumb a {
  color: #bdbdbd;
}


.crumb a:hover {
  color: #ff3c70;

  text-decoration: underline;
}


/* =========================================================
   VIDEO PAGE
========================================================= */

.video-page {
  width: 100%;
}


/* =========================================================
   VIDEO PLAYER
========================================================= */

.player {
  width: 100%;

  max-width: 1100px;

  margin: 0 auto 22px;

  aspect-ratio: 16 / 9;

  background: #000000;

  border: 1px solid #292929;

  border-radius: 6px;

  overflow: hidden;

  box-shadow:
    0 5px 25px rgba(0,0,0,0.45);
}


.player iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}


/* =========================================================
   VIDEO INFORMATION
   ALIGNMENT UNCHANGED
========================================================= */

.video-title,
.video-people,
.video-ott {
  width: 100%;

  max-width: 1100px;

  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   VIDEO NAME
========================================================= */

.video-title {
  margin-top: 0;

  margin-bottom: 8px;

  color: #ffffff;

  font-size: 28px;

  line-height: 1.3;

  font-weight: 700;
}


/* =========================================================
   ACTRESS
========================================================= */

.video-people {
  margin-top: 7px;

  margin-bottom: 7px;

  color: #b5b5b5;

  font-size: 14px;

  line-height: 1.6;
}


.video-people strong {
  color: #ffffff;

  margin-right: 5px;
}


.video-people a {
  color: #d0d0d0;
}


.video-people a:hover {
  color: #ff3b70;

  text-decoration: underline;
}


/* =========================================================
   OTT
========================================================= */

.video-ott {
  margin-top: 5px;

  margin-bottom: 22px;

  color: #b5b5b5;

  font-size: 14px;

  line-height: 1.6;
}


.video-ott strong {
  color: #ffffff;

  margin-right: 5px;
}


.video-ott a {
  color: #d0d0d0;
}


.video-ott a:hover {
  color: #ff3b70;

  text-decoration: underline;
}


/* =========================================================
   RELATED SECTION BAR
========================================================= */

.sectionbar {
  width: 100%;

  min-height: 50px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  padding: 10px 14px;

  margin-top: 18px;

  margin-bottom: 18px;

  border: 1px solid #2b2b2b;

  border-radius: 6px;

  background:
    linear-gradient(
      180deg,
      #151515 0%,
      #101010 100%
    );
}


.sectionbar b {
  color: #ffffff;

  font-size: 17px;
}


.sectionbar a {
  color: #dddddd;

  font-size: 13px;
}


.sectionbar a:hover {
  color: #ff3b70;
}


/* =========================================================
   RELATED VIDEOS
========================================================= */

.three {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 20px;

  width: 100%;
}


/* =========================================================
   REQUEST PAGE
========================================================= */

.request-page {
  width: 100%;
}


.request-box {
  width: 100%;

  max-width: 720px;

  margin: 20px auto 0;

  padding: 28px;

  border: 1px solid #2b2b2b;

  border-radius: 8px;

  background:
    linear-gradient(
      180deg,
      #151515 0%,
      #101010 100%
    );

  box-shadow:
    0 6px 25px rgba(0,0,0,0.3);
}


.request-box h1 {
  margin: 0 0 8px;

  color: #ffffff;

  font-size: 26px;
}


.request-intro {
  margin: 0 0 24px;

  color: #999999;

  font-size: 14px;
}


/* =========================================================
   REQUEST FORM
========================================================= */

.request-form {
  display: flex;

  flex-direction: column;

  gap: 9px;
}


.request-form label {
  margin-top: 8px;

  color: #eeeeee;

  font-size: 14px;

  font-weight: 600;
}


.request-form input,
.request-form textarea {
  width: 100%;

  border: 1px solid #343434;

  border-radius: 5px;

  background:
    linear-gradient(
      180deg,
      #1b1b1b 0%,
      #151515 100%
    );

  color: #ffffff;

  outline: none;

  font-family: inherit;

  font-size: 15px;

  padding: 12px 13px;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}


.request-form input {
  height: 44px;
}


.request-form textarea {
  min-height: 140px;

  resize: vertical;
}


.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #777777;
}


.request-form input:focus,
.request-form textarea:focus {
  border-color: #ff2d68;

  background: #1c1c1c;

  box-shadow:
    0 0 0 2px rgba(255,45,104,0.08);
}


/* =========================================================
   REQUEST BUTTON
========================================================= */

.request-submit {
  margin-top: 15px;

  min-height: 44px;

  padding: 10px 18px;

  border: 1px solid #ff2d68;

  border-radius: 5px;

  background:
    linear-gradient(
      180deg,
      #ff326c 0%,
      #f31d5b 100%
    );

  color: #ffffff;

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  transition:
    opacity 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
}


.request-submit:hover {
  opacity: 0.92;

  box-shadow:
    0 4px 14px rgba(255,45,104,0.20);
}


.request-submit:active {
  transform: translateY(1px);
}


.request-submit:disabled {
  opacity: 0.5;

  cursor: not-allowed;

  box-shadow: none;
}


/* =========================================================
   REQUEST MESSAGE
========================================================= */

.request-message {
  min-height: 22px;

  margin-top: 8px;

  color: #cccccc;

  font-size: 14px;

  line-height: 1.5;
}


/* =========================================================
   LOADING
========================================================= */

.loading {
  width: 100%;

  padding: 45px 20px;

  color: #888888;

  text-align: center;

  font-size: 15px;
}


/* =========================================================
   ERROR
========================================================= */

.error {
  width: 100%;

  max-width: 800px;

  margin: 30px auto;

  padding: 24px;

  border: 1px solid #402020;

  border-radius: 8px;

  background:
    linear-gradient(
      180deg,
      #180c0c 0%,
      #120808 100%
    );

  color: #dddddd;
}


.error h2 {
  margin-top: 0;

  color: #ffffff;
}


.error p {
  margin-bottom: 8px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  height: 40px;
}


/* =========================================================
   TABLET
   901px → 1200px

   POSITION / RESPONSIVE STRUCTURE PRESERVED
========================================================= */

@media (max-width: 1200px) {

  .wrap {
    width: calc(100% - 56px);
  }


  .top {
    gap: 24px;
  }


  .brand {
    width: 180px;
    height: 50px;
  }


  .brand::before {
    width: 180px;
    height: 50px;
  }


  .search {
    width: 520px;
  }


  .ott-grid {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));
  }


  .actress-grid {
    grid-template-columns:
      repeat(5, minmax(0, 1fr));
  }


  .trending-grid {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));
  }

}


/* =========================================================
   TABLET
   601px → 900px
========================================================= */

@media (max-width: 900px) {

  .wrap {
    width: calc(100% - 40px);
  }


  .top {
    flex-wrap: wrap;

    gap: 18px;

    padding-top: 20px;
  }


  .brand {
    width: 170px;
    height: 48px;
  }


  .brand::before {
    width: 170px;
    height: 48px;
  }


  .search {
    flex: 1 1 400px;

    width: auto;

    max-width: 100%;

    height: 44px;
  }


  .nav {
    margin-top: 16px;

    gap: 4px;

    padding-bottom: 12px;
  }


  .nav a {
    min-height: 38px;

    padding: 8px 13px;

    font-size: 15px;
  }


  .announcement-bar {
    height: 40px;
  }


  .announcement-text {
    height: 40px;

    font-size: 14px;

    line-height: 40px;
  }


  main.wrap {
    padding-top: 18px;
  }


  .bar {
    min-height: 58px;

    padding: 9px 12px;
  }


  .grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 22px 16px;
  }


  .trending-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 18px 14px;
  }


  .ott-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 16px;
  }


  .actress-grid {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));

    gap: 16px;
  }


  .three {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 16px;
  }


  .video-title {
    font-size: 25px;
  }


  .player {
    max-width: 100%;
  }

}


/* =========================================================
   LARGE MOBILE
   481px → 600px
========================================================= */

@media (max-width: 600px) {

  .wrap {
    width: calc(100% - 16px);
  }

  .top {
    display: block;
    padding-top: 18px;
  }

  /* ================================
     MOBILE BRAND
  ================================= */

  .brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;

    width: 230px;
    height: 46px;

    margin: 0 0 15px 0;

    gap: 8px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;

    color: #ffffff;

    white-space: nowrap;
    overflow: visible;
  }

  .brand::before {
    content: "";

    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    margin: 0;

    background-image:
      url("https://i.ibb.co/C362S7tV/Fd-Xij-Xw-AEXwn-J.png");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  /* ================================
     MOBILE SEARCH
  ================================= */

  .search {
    display: block;

    width: 100%;
    max-width: 100%;

    height: 44px;

    font-size: 15px;
  }

  /* KEEP THE REST OF YOUR EXISTING
     600px RULES BELOW THIS POINT */


  .nav {
    margin-top: 14px;

    padding-bottom: 10px;

    gap: 2px;
  }


  .nav a {
    min-height: 37px;

    padding: 8px 10px;

    font-size: 14px;
  }


  .announcement-bar {
    height: 38px;
  }


  .announcement-text {
    height: 38px;

    font-size: 13px;

    line-height: 38px;
  }


  main.wrap {
    padding-top: 15px;

    padding-bottom: 40px;
  }


  .bar {
    min-height: auto;

    padding: 11px;

    align-items: center;

    gap: 12px;
  }


  .bar-title {
    font-size: 17px;
  }


  .sort {
    min-width: 140px;

    height: 40px;

    font-size: 14px;
  }


  .grid {
    grid-template-columns:
      1fr;

    gap: 24px;
  }


  .trending-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 18px 12px;
  }


  .ott-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 14px;
  }


  .ott-card {
    min-height: 145px;

    padding: 14px;
  }


  .ott-card img {
    width: 90px;

    height: 70px;
  }


  .ott-name {
    font-size: 14px;
  }


  .actress-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 14px;
  }


  .actress-name {
    padding: 9px 6px;

    font-size: 14px;
  }


  .card-title {
    font-size: 15px;
  }


  .pages {
    margin-top: 28px;

    gap: 5px;
  }


  .pages a,
  .pages span {
    min-width: 36px;

    height: 38px;

    padding: 0 8px;

    font-size: 13px;
  }


  .crumb {
    margin-bottom: 14px;

    font-size: 12px;
  }


  .player {
    margin-bottom: 18px;

    border-radius: 5px;
  }


  .video-title {
    margin-bottom: 7px;

    font-size: 22px;
  }


  .video-people,
  .video-ott {
    font-size: 13px;
  }


  .sectionbar {
    min-height: 46px;

    padding: 9px 11px;

    margin-top: 15px;

    margin-bottom: 15px;
  }


  .sectionbar b {
    font-size: 15px;
  }


  .sectionbar a {
    font-size: 12px;
  }


  .three {
    grid-template-columns:
      1fr;

    gap: 22px;
  }


  .actress-profile {
    gap: 14px;

    padding: 12px;
  }


  .actress-profile img {
    width: 80px;

    height: 105px;
  }


  .actress-profile h1 {
    font-size: 21px;
  }


  .request-box {
    padding: 20px 16px;

    margin-top: 15px;
  }


  .request-box h1 {
    font-size: 23px;
  }


  .request-form input {
    height: 44px;
  }


  .request-form textarea {
    min-height: 130px;
  }

}


/* =========================================================
   SMALL MOBILE
   360px → 480px
========================================================= */

@media (max-width: 480px) {

  .wrap {
    width: calc(100% - 20px);
  }


  .brand {
    width: 155px;
    height: 43px;

    margin-bottom: 15px;
  }


  .brand::before {
    width: 155px;
    height: 43px;
  }


  .nav {
    gap: 1px;
  }


  .nav a {
    min-height: 36px;

    padding: 7px 8px;

    font-size: 13px;
  }


  .announcement-bar {
    height: 37px;
  }


  .announcement-text {
    height: 37px;

    font-size: 12px;

    line-height: 37px;
  }


  .bar {
    align-items: stretch;

    flex-direction: column;
  }


  .bar-title {
    font-size: 16px;
  }


  .sort {
    width: 100%;

    min-width: 0;
  }


  .trending-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .ott-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .ott-card {
    min-height: 130px;

    padding: 10px;
  }


  .ott-card img {
    width: 75px;

    height: 60px;
  }


  .ott-name {
    font-size: 13px;
  }


  .actress-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 12px;
  }


  .card-title {
    font-size: 14px;
  }


  .badge,
  .duration {
    top: auto;

    font-size: 11px;

    padding: 3px 6px;
  }


  .badge {
    top: 7px;

    right: 7px;
  }


  .duration {
    right: 7px;

    bottom: 7px;
  }


  .pages {
    gap: 4px;
  }


  .pages a,
  .pages span {
    min-width: 34px;

    height: 36px;

    padding: 0 7px;
  }


  .video-title {
    font-size: 20px;
  }


  .video-people,
  .video-ott {
    font-size: 12px;
  }


  .request-box {
    padding: 18px 13px;
  }


  .request-box h1 {
    font-size: 21px;
  }

}


/* =========================================================
   VERY SMALL PHONES
   ≤ 359px
========================================================= */

@media (max-width: 359px) {

  .wrap {
    width: calc(100% - 16px);
  }

  .brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;

    width: 100%;
    max-width: 205px;
    height: 40px;

    margin: 0 0 15px 0;

    gap: 7px;

    font-size: 23px;
    font-weight: 800;
    line-height: 1;

    white-space: nowrap;
  }

  .brand::before {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    margin: 0;
  }

  /* keep your existing rules below */


  .nav a {
    padding: 7px 6px;

    font-size: 12px;
  }


  .announcement-text {
    font-size: 11px;
  }


  .trending-grid,
  .ott-grid,
  .actress-grid {
    grid-template-columns:
      1fr;
  }


  .video-title {
    font-size: 19px;
  }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

  .card:hover {
    transform: none;
  }


  .card:hover .thumb img {
    transform: none;

    filter: none;
  }


  .ott-card:hover,
  .actress-card:hover {
    transform: none;

    border-color: #292929;

    box-shadow: none;
  }


  .actress-card:hover .actress-image img {
    transform: none;

    filter: none;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
  outline: 2px solid #ff326c;

  outline-offset: 2px;
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;
  }

}