/* =========================
DEEPROWSS STYLE
========================= */

:root {
  --bg: #07090d;
  --surface: #10141b;
  --surface-2: #171c25;
  --text: #f4f7fb;
  --muted: #9ca7b7;
  --line: rgba(255, 255, 255, .08);

  --accent: #ff1744;
  --accent-2: #ff4968;

  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;

  background: var(--bg);
  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.55;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(
    var(--max),
    calc(100% - 32px)
  );

  margin: auto;
}

/* =========================
HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(7, 9, 13, .88);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 70px;

  display: flex;
  align-items: center;

  gap: 28px;

  min-width: 0;
}

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

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

  gap: 10px;

  font-weight: 900;
  letter-spacing: .5px;

  white-space: nowrap;

  flex-shrink: 0;
}

.brand span:last-child span,
.footer strong span {
  color: var(--accent);
}

.brand-mark {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: var(--accent);
  color: white;

  font-size: 19px;

  flex-shrink: 0;
}

/* =========================
NAV
========================= */

.main-nav {
  display: flex;
  gap: 24px;

  margin-left: auto;
}

.main-nav a,
.footer-links a {
  color: #c9d0db;

  font-size: 14px;

  transition:
    color .2s ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: white;
}

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

.nav-search {
  position: relative;
  width: 190px;

  flex-shrink: 0;
}

.nav-search input {
  width: 100%;

  background: var(--surface);
  color: white;

  border: 1px solid var(--line);
  border-radius: 999px;

  padding: 10px 35px 10px 14px;

  outline: none;
}

.nav-search input:focus {
  border-color:
    rgba(255, 23, 68, .7);
}

.nav-search span {
  position: absolute;

  right: 13px;
  top: 7px;

  color: var(--muted);

  font-size: 20px;

  pointer-events: none;
}

/* =========================
MOBILE MENU
========================= */

.menu-toggle {
  display: none;

  background: none;
  color: white;

  border: 0;

  font-size: 25px;

  padding: 4px;

  flex-shrink: 0;
}

/* =========================
HERO
========================= */

.hero {
  min-height: 540px;

  display: flex;
  align-items: center;

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      rgba(7, 9, 13, .62),
      rgba(7, 9, 13, .62)
    ),
    url("icons/istockphoto-477331105-612x612.jpg");

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

/* =========================
HERO OVERLAY
========================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7, 9, 13, .72),
      rgba(7, 9, 13, .38),
      rgba(7, 9, 13, .58)
    );

  pointer-events: none;

  z-index: 1;
}

/* =========================
HERO DECORATIVE EFFECT
========================= */

.hero:after {
  content: "";

  position: absolute;

  inset:
    auto
    -10%
    -35%
    35%;

  height: 380px;

  transform: rotate(-8deg);

  background:
    rgba(255, 255, 255, .025);

  pointer-events: none;

  z-index: 1;
}

.hero-content {
  position: relative;

  z-index: 2;

  padding: 80px 0;

  min-width: 0;
}

.eyebrow {
  color: var(--accent-2);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2px;

  margin: 0 0 10px;
}

.hero h1 {
  font-size:
    clamp(42px, 7vw, 78px);

  line-height: 1;

  margin: 0;

  max-width: 800px;

  letter-spacing: -3px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-copy {
  max-width: 620px;

  color: #bac2ce;

  font-size: 18px;

  margin: 22px 0 30px;
}

.hero-actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;

  border-radius: 10px;

  font-weight: 800;

  transition:
    transform .2s ease,
    background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-2);
}

.btn-ghost {
  border:
    1px solid
    rgba(255, 255, 255, .15);

  background:
    rgba(255, 255, 255, .04);
}

/* =========================
SEARCH SECTION
========================= */

.search-section {
  min-height: 0;
}

#searchStatus {
  color: var(--muted);
  font-size: 14px;
}

/* =========================
SECTIONS
========================= */

.section {
  padding: 68px 0 0;

  min-width: 0;
}

.section-heading {
  display: flex;

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

  gap: 20px;

  margin-bottom: 22px;

  min-width: 0;
}

.section-heading h2 {
  margin: 0;

  font-size: 30px;

  letter-spacing: -.8px;
}

.section-link {
  color: #c8cfda;

  font-size: 14px;

  white-space: nowrap;

  transition:
    color .2s ease;
}

.section-link:hover {
  color: var(--accent-2);
}

/* =========================
HOMEPAGE HORIZONTAL POSTS
========================= */

.horizontal-posts {
  display: flex;

  gap: 16px;

  overflow-x: auto;
  overflow-y: hidden;

  padding:
    2px
    4px
    14px
    2px;

  scroll-snap-type: x proximity;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: thin;

  max-width: 100%;
}

.horizontal-posts > * {
  flex: 0 0 auto;

  scroll-snap-align: start;
}

.horizontal-posts .live-card {
  width: 340px;
}

.horizontal-posts .media-card {
  width: 330px;
}

.horizontal-posts .movie-card {
  width: 230px;
}

.horizontal-posts::-webkit-scrollbar {
  height: 7px;
}

.horizontal-posts::-webkit-scrollbar-track {
  background: var(--surface);

  border-radius: 20px;
}

.horizontal-posts::-webkit-scrollbar-thumb {
  background: #343b47;

  border-radius: 20px;
}

.horizontal-posts::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* =========================
CARDS
========================= */

.live-card,
.media-card,
.movie-card {
  background:
    linear-gradient(
      145deg,
      var(--surface),
      #0c1016
    );

  border:
    1px solid
    var(--line);

  border-radius: 15px;

  overflow: hidden;
}

.live-card {
  padding: 20px;

  min-width: 0;
}

/* =========================
DYNAMIC THUMBNAILS
========================= */

.post-thumb {
  position: relative;

  width: 100%;
  height: 180px;

  overflow: hidden;

  display: block;

  background:
    radial-gradient(
      circle at 60% 40%,
      #29354d,
      #111824 50%,
      #090c12
    );
}

.post-thumb img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  max-width: none;

  display: block;

  object-fit: cover;

  object-position: center;

  z-index: 1;
}

.post-thumb.has-thumbnail::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  background:
    rgba(0, 0, 0, .10);

  pointer-events: none;
}

.post-thumb.no-thumbnail {
  display: grid;

  place-items: center;

  min-height: 180px;
}

.thumbnail-placeholder {
  color: var(--muted);

  font-size: 13px;

  font-weight: 900;

  letter-spacing: 1px;
}

.thumbnail-placeholder span span {
  color: var(--accent);
}

.live-thumbnail {
  height: 180px;
}

.highlight-thumbnail {
  height: 180px;
}

.movie-thumbnail {
  height: auto;

  aspect-ratio: 2 / 3;

  min-height: 280px;

  background:
    linear-gradient(
      145deg,
      #4d1725,
      #1d1724 55%,
      #090b10
    );
}

.movie-thumbnail img {
  object-fit: cover;

  object-position: center;
}

/* =========================
FOOTBALL
========================= */

.match-top {
  display: flex;

  justify-content: space-between;

  gap: 10px;

  color: var(--muted);

  font-size: 12px;
}

.live-badge,
.upcoming-badge {
  font-weight: 900;
}

.live-badge {
  color: #ff526e;
}

.upcoming-badge {
  color: #aeb7c4;
}

.teams {
  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  gap: 10px;

  align-items: center;

  text-align: center;

  padding:
    28px
    0
    18px;
}

.teams strong {
  font-size: 17px;
}

.teams span {
  color: var(--muted);

  font-size: 12px;
}

.match-meta {
  color: var(--muted);

  font-size: 12px;

  min-height: 38px;
}

/* =========================
BUTTONS
========================= */

.watch-btn,
.media-info button,
.movie-info button {
  border: 0;

  color: white;

  background: var(--accent);

  border-radius: 8px;

  padding:
    9px
    13px;

  cursor: pointer;

  font-weight: 800;

  transition:
    background .2s ease;
}

.watch-btn {
  width: 100%;

  margin-top: 16px;
}

.watch-btn:hover,
.media-info button:hover,
.movie-info button:hover {
  background: var(--accent-2);
}

/* =========================
LEGACY HIGHLIGHT
========================= */

.media-thumb {
  height: 180px;

  display: grid;

  place-items: center;

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 60% 40%,
      #29354d,
      #111824 50%,
      #090c12
    );
}

.football-thumb {
  background:
    radial-gradient(
      circle at 60% 40%,
      #29354d,
      #111824 50%,
      #090b10
    );
}

.goals-thumb {
  background:
    radial-gradient(
      circle at 30% 30%,
      #53233a,
      #16131c 55%,
      #090b10
    );
}

.skills-thumb {
  background:
    radial-gradient(
      circle at 70% 40%,
      #243f38,
      #0c1715 55%,
      #090b10
    );
}

.media-info,
.movie-info {
  padding: 17px;
}

.tag {
  font-size: 10px;

  letter-spacing: 1.5px;

  font-weight: 900;

  color: var(--accent-2);
}

.media-info h3,
.movie-info h3 {
  margin:
    7px
    0
    5px;

  font-size: 18px;
}

.media-info p,
.movie-info p {
  color: var(--muted);

  font-size: 13px;

  margin:
    0
    0
    14px;
}

/* =========================
MOVIES
========================= */

.movie-card {
  min-width: 0;
}

.poster {
  position: relative;

  width: 100%;

  aspect-ratio: 2 / 3;

  min-height: 280px;

  display: flex;

  align-items: flex-end;

  padding: 16px;

  font-weight: 900;

  letter-spacing: 1.5px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #4d1725,
      #1d1724 55%,
      #090b10
    );
}

.poster .post-thumbnail {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  max-width: none;

  object-fit: cover;

  object-position: center;

  z-index: 1;
}

.poster.has-thumbnail:after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 42%;

  z-index: 2;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, .75),
      transparent
    );

  pointer-events: none;
}

.poster-one {
  background:
    linear-gradient(
      145deg,
      #4d1725,
      #1d1724 55%,
      #090b10
    );
}

.poster-two {
  background:
    linear-gradient(
      145deg,
      #182f4e,
      #111521 55%,
      #090b10
    );
}

.poster-three {
  background:
    linear-gradient(
      145deg,
      #4b3c18,
      #1c1820 55%,
      #090b10
    );
}

.poster-four {
  background:
    linear-gradient(
      145deg,
      #173c38,
      #101a22 55%,
      #090b10
    );
}

.poster span {
  font-size: 11px;
}

.poster-category {
  position: relative;

  z-index: 3;
}

/* =========================
MOVIE ACTIONS
========================= */

.movie-actions {
  display: flex;

  align-items: center;

  gap: 10px;

  width: 100%;

  margin-top: 16px;
}

.movie-actions .movie-watch-btn {
  flex: 1;

  width: auto;

  min-width: 0;

  margin-top: 0;

  min-height: 54px;

  display: inline-flex;

  align-items: center;

  justify-content: center;
}

/* =========================
MOVIE DOWNLOAD BUTTON
========================= */

.movie-download-btn {
  flex:
    0
    0
    54px;

  width: 54px;

  height: 54px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  background: #171a21;

  border:
    1px solid
    #2b2f38;

  color: #ffffff;

  text-decoration: none;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.movie-download-btn svg {
  width: 24px;

  height: 24px;

  fill: none;

  stroke: currentColor;

  stroke-width: 2;

  stroke-linecap: round;

  stroke-linejoin: round;
}

.movie-download-btn:hover {
  background: var(--accent);

  border-color: var(--accent);

  color: #ffffff;

  transform: translateY(-2px);
}

.movie-download-btn:active {
  transform: translateY(0);
}

.movie-download-btn:focus-visible {
  outline:
    2px solid
    #ffffff;

  outline-offset: 3px;
}

/* =========================
FULL POSTS
========================= */

.page-hero {
  padding:
    80px
    0
    60px;

  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(255, 23, 68, .18),
      transparent 35%
    ),
    linear-gradient(
      120deg,
      #080b11,
      #10141d
    );

  border-bottom:
    1px solid
    var(--line);
}

.page-hero h1 {
  font-size:
    clamp(40px, 6vw, 64px);

  line-height: 1;

  margin:
    0
    0
    15px;

  letter-spacing: -2px;
}

.page-hero p:last-child {
  color: var(--muted);

  margin: 0;
}

.all-posts-grid {
  display: grid;

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

  gap: 18px;

  padding-bottom: 70px;

  min-width: 0;
}

.all-posts-grid .live-card,
.all-posts-grid .media-card,
.all-posts-grid .movie-card {
  width: auto;

  min-width: 0;
}

.all-posts-grid .movie-thumbnail {
  aspect-ratio: 2 / 3;

  min-height: 0;

  height: auto;
}

.all-posts-grid .movie-card .poster {
  min-height: 0;

  aspect-ratio: 2 / 3;
}

.all-posts-grid .movie-info {
  padding: 14px;
}

/* =========================
DATE / STATES
========================= */

.post-date {
  color: var(--muted);

  font-size: 11px;

  margin-top: 8px;
}

.loading,
.empty-posts {
  color: var(--muted);

  padding:
    40px
    20px;

  text-align: center;

  background: var(--surface);

  border:
    1px solid
    var(--line);

  border-radius: 15px;

  min-width: 250px;
}

.all-posts-grid > .loading,
.all-posts-grid > .empty-posts {
  grid-column: 1 / -1;
}

/* =========================
VIDEO MODAL
========================= */

.modal {
  display: none;

  position: fixed;

  inset: 0;

  z-index: 100;

  width: 100%;
  height: 100%;
}

.modal.open {
  display: grid;

  place-items: center;
}

.modal-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(0, 0, 0, .78);

  backdrop-filter: blur(6px);

  -webkit-backdrop-filter: blur(6px);
}

.modal-box {
  position: relative;

  z-index: 2;

  width:
    min(
      900px,
      calc(100% - 28px)
    );

  max-height:
    calc(100vh - 30px);

  overflow-y: auto;

  background: #0c1017;

  border:
    1px solid
    var(--line);

  border-radius: 16px;

  padding: 22px;

  box-shadow:
    0
    30px
    90px
    rgba(0, 0, 0, .55);
}

.modal-box h2 {
  margin:
    0
    35px
    18px
    0;
}

.modal-close {
  position: absolute;

  right: 14px;
  top: 10px;

  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  background:
    rgba(0, 0, 0, .25);

  border: 0;

  border-radius: 50%;

  color: white;

  font-size: 32px;

  line-height: 1;

  cursor: pointer;

  z-index: 50;

  padding: 0;

  appearance: none;

  -webkit-appearance: none;

  touch-action: manipulation;
}

.modal-close:hover {
  background: var(--accent);
}

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

.embed-area {
  width: 100%;

  aspect-ratio: 4 / 3;

  background: #000;

  border-radius: 10px;

  display: grid;

  place-items: center;

  overflow: hidden;
}

.embed-area iframe {
  display: block;

  width: 100%;
  height: 100%;

  min-width: 100%;
  min-height: 100%;

  margin: 0;

  padding: 0;

  border: 0;
}

/* =========================
VIDEO CONTROLS
========================= */

.video-controls {
  width: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  margin-top: 8px;

  padding: 0;
}

/* =========================
ALT / MAIN SCREEN BUTTON
========================= */

.screen-switch-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: #242a34;

  color: #ffffff;

  border:
    1px solid
    rgba(255, 255, 255, .12);

  border-radius: 5px;

  padding:
    5px
    10px;

  font-size: 9px;

  font-weight: 700;

  line-height: 1;

  min-height: 24px;

  white-space: nowrap;

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .15s ease;
}

.screen-switch-btn:hover {
  background: var(--accent);

  border-color: var(--accent);
}

.screen-switch-btn:active {
  transform: scale(.97);
}

.screen-switch-btn:focus-visible {
  outline:
    2px solid
    #ffffff;

  outline-offset: 2px;
}

/* =========================
FULLSCREEN BUTTON
========================= */

.fullscreen-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: var(--accent);

  color: #fff;

  border: 0;

  border-radius: 5px;

  padding:
    5px
    10px;

  font-size: 9px;

  font-weight: 600;

  line-height: 1;

  min-height: 24px;

  white-space: nowrap;

  cursor: pointer;

  opacity: 1;

  -webkit-tap-highlight-color: transparent;

  transition:
    background .2s ease,
    transform .15s ease;
}

.fullscreen-btn:hover {
  background: var(--accent-2);
}

.fullscreen-btn:active {
  transform: scale(.97);
}

/* =========================
FULLSCREEN
========================= */

.modal-box:fullscreen {
  width: 100vw;

  height: 100vh;

  max-width: none;

  max-height: none;

  margin: 0;

  padding: 0;

  border: 0;

  border-radius: 0;

  background: #000;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}

.modal-box:fullscreen .embed-area,
.modal-box:-webkit-full-screen .embed-area {
  width: 100vw;

  max-width: 100vw;

  aspect-ratio: 4 / 3;

  border-radius: 0;

  flex-shrink: 0;
}

.modal-box:fullscreen .video-controls,
.modal-box:-webkit-full-screen .video-controls {
  width: 100vw;

  flex-shrink: 0;
}

.modal-box:fullscreen .modal-close,
.modal-box:fullscreen h2,
.modal-box:-webkit-full-screen .modal-close,
.modal-box:-webkit-full-screen h2 {
  display: none;
}

.modal-box:-webkit-full-screen {
  width: 100vw;

  height: 100vh;

  max-width: none;

  max-height: none;

  margin: 0;

  padding: 0;

  border: 0;

  border-radius: 0;

  background: #000;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}

/* =========================
PLACEHOLDER
========================= */

.embed-placeholder {
  text-align: center;

  padding: 30px;

  color: var(--muted);
}

.embed-placeholder strong {
  display: block;

  color: white;

  margin-bottom: 8px;
}

.embed-note {
  color: var(--muted);

  font-size: 12px;
}

code {
  color: #ff8ba0;
}

/* =========================
NO RESULTS
========================= */

.no-results {
  display: none;

  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: 90;

  background: #151a22;

  border:
    1px solid
    var(--line);

  padding:
    12px
    15px;

  border-radius: 9px;

  color: #d7dde6;
}

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

.footer {
  border-top:
    1px solid
    var(--line);

  padding: 30px 0;

  color: var(--muted);
}

.footer-wrap {
  display: grid;

  grid-template-columns:
    1fr
    auto;

  gap:
    15px
    30px;

  align-items: center;
}

.footer strong {
  color: white;
}

.footer p {
  margin:
    5px
    0
    0;

  font-size: 12px;
}

.footer-links {
  display: flex;

  gap: 18px;
}

.copyright {
  grid-column: 1 / -1;

  padding-top: 10px;

  border-top:
    1px solid
    var(--line);
}

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

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

/* =========================
ABOUT
========================= */

.about {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 40px;

  padding-bottom: 70px;

  min-width: 0;
}

.about h2 {
  font-size: 34px;

  line-height: 1.15;

  margin: 0;

  letter-spacing: -1px;
}

.about > p {
  color: var(--muted);

  max-width: 600px;

  margin:
    22px
    0
    0;

  line-height: 1.65;
}

/* =========================
TABLET
========================= */

@media (max-width: 900px) {

  .main-nav {
    display: none;

    position: absolute;

    left: 16px;
    right: 16px;

    top: 70px;

    padding: 16px;

    background: #0b0f15;

    border:
      1px solid
      var(--line);

    border-radius: 12px;

    flex-direction: column;

    gap: 16px;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;

    margin-left: auto;
  }

  .nav-search {
    width: 160px;
  }

  .all-posts-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

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

    gap: 24px;
  }

  .about > p {
    max-width: 100%;

    margin: 0;
  }
}

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

@media (max-width: 600px) {

  .container {
    width:
      calc(100% - 24px);

    max-width: 100%;
  }

  .nav-wrap {
    gap: 8px;

    min-width: 0;
  }

  .brand {
    font-size: 13px;

    min-width: 0;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-search {
    width: 110px;

    margin-left: auto;
  }

  .nav-search input {
    padding:
      9px
      30px
      9px
      12px;

    font-size: 14px;
  }

  .nav-search span {
    right: 9px;
  }

  .hero {
    min-height: 500px;

    background-position: center;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero h1 {
    letter-spacing: -2px;

    font-size:
      clamp(
        40px,
        12vw,
        58px
      );

    max-width: 100%;
  }

  .hero-copy {
    font-size: 16px;

    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .section {
    padding-top: 50px;
  }

  .section-heading {
    align-items: flex-start;

    gap: 10px;

    flex-wrap: wrap;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .horizontal-posts {
    gap: 12px;

    padding-bottom: 12px;
  }

  .horizontal-posts .live-card {
    width:
      min(
        82vw,
        330px
      );
  }

  .horizontal-posts .media-card {
    width:
      min(
        82vw,
        320px
      );
  }

  .horizontal-posts .movie-card {
    width:
      min(
        68vw,
        230px
      );
  }

  .horizontal-posts .movie-card .movie-thumbnail {
    aspect-ratio: 2 / 3;

    min-height: 280px;
  }

  /* =========================
  ABOUT
  ========================= */

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

    gap: 24px;

    padding-bottom: 50px;

    width: 100%;
  }

  .about h2 {
    font-size:
      clamp(
        32px,
        9vw,
        42px
      );

    line-height: 1.08;

    letter-spacing: -1px;

    max-width: 100%;
  }

  .about > p {
    max-width: 100%;

    width: 100%;

    margin: 0;

    font-size: 16px;

    line-height: 1.65;

    overflow-wrap: break-word;
  }

  /* =========================
  MOVIE ACTIONS
  ========================= */

  .movie-actions {
    gap: 8px;
  }

  .movie-actions .movie-watch-btn {
    min-height: 54px;
  }

  .movie-download-btn {
    flex-basis: 54px;

    width: 54px;
    height: 54px;
  }

  /* =========================
  ALL POSTS
  ========================= */

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

    gap: 14px;
  }

  .all-posts-grid .movie-thumbnail {
    aspect-ratio: 2 / 3;

    min-height: 0;
  }

  /* =========================
  PAGE HERO
  ========================= */

  .page-hero {
    padding:
      60px
      0
      45px;
  }

  .page-hero h1 {
    font-size:
      clamp(
        38px,
        12vw,
        54px
      );
  }

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

  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;

    gap:
      12px
      18px;
  }

  .copyright {
    grid-column: auto;
  }

  /* =========================
  MOBILE MODAL
  ========================= */

  .modal {
    align-items: center;

    justify-content: center;
  }

  .modal.open {
    display: flex;

    align-items: center;

    justify-content: center;
  }

  .modal-box {
    width: 100%;

    max-width: 100%;

    height: auto;

    max-height: none;

    margin: 0;

    padding: 0;

    border-radius: 0;

    border: 0;

    background: #000;

    overflow: visible;

    box-shadow: none;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
  }

  .modal-box h2 {
    display: none;
  }

  .modal-close {
    top: 8px;

    right: 10px;

    z-index: 100;

    width: 44px;
    height: 44px;

    font-size: 30px;

    line-height: 1;

    text-shadow:
      0
      2px
      8px
      rgba(0, 0, 0, .8);
  }

  .embed-area {
    width: 100%;

    height: auto;

    aspect-ratio: 4 / 3;

    margin: 0;

    padding: 0;

    border-radius: 0;

    background: #000;

    overflow: hidden;

    flex-shrink: 0;
  }

  .embed-area iframe {
    display: block;

    width: 100%;
    height: 100%;

    min-width: 100%;
    min-height: 100%;

    margin: 0;

    padding: 0;

    border: 0;
  }

  .video-controls {
    width: 100%;

    height: 38px;

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 5px;

    padding: 0;

    background: #000;

    flex-shrink: 0;
  }

  /* =========================
  ALT SCREEN
  ========================= */

  .screen-switch-btn {
    padding:
      8px
      14px;

    min-height: 32px;

    font-size: 10px;
  }

  /* =========================
  LANDSCAPE FULLSCREEN
  ========================= */

  .fullscreen-btn {
    padding:
      8px
      14px;

    min-height: 32px;

    font-size: 10px;

    font-weight: 600;
  }

  .fullscreen-btn:hover {
    background: var(--accent-2);
  }

  .fullscreen-btn:active,
  .screen-switch-btn:active {
    transform: scale(.97);
  }

  .modal-box:fullscreen,
  .modal-box:-webkit-full-screen {
    width: 100vw;

    height: 100vh;

    max-width: none;

    max-height: none;

    padding: 0;

    margin: 0;

    border: 0;

    border-radius: 0;

    background: #000;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    overflow: hidden;
  }

  .modal-box:fullscreen .embed-area,
  .modal-box:-webkit-full-screen .embed-area {
    width: 100vw;

    aspect-ratio: 4 / 3;

    max-width: 100vw;

    border-radius: 0;

    flex-shrink: 0;
  }

  .modal-box:fullscreen .video-controls,
  .modal-box:-webkit-full-screen .video-controls {
    width: 100vw;

    height: 38px;

    flex-shrink: 0;
  }

  .modal-box:fullscreen .modal-close,
  .modal-box:-webkit-full-screen .modal-close {
    display: none;
  }

  .modal-box:fullscreen .fullscreen-btn,
  .modal-box:-webkit-full-screen .fullscreen-btn,
  .modal-box:fullscreen .screen-switch-btn,
  .modal-box:-webkit-full-screen .screen-switch-btn {
    font-size: 10px;
  }
}

/* =========================
VERY SMALL PHONES
========================= */

@media (max-width: 380px) {

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

  .brand {
    font-size: 11px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;

    border-radius: 8px;
  }

  .nav-search {
    width: 95px;
  }

  .nav-search span {
    right: 9px;
  }

  .hero {
    min-height: 500px;

    background-position: center;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .about {
    gap: 20px;

    padding-bottom: 45px;
  }

  .about h2 {
    font-size: 32px;

    line-height: 1.08;
  }

  .about > p {
    font-size: 15px;

    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .video-controls {
    height: 34px;

    min-height: 34px;

    margin-top: 4px;

    gap: 7px;
  }

  /* =========================
  BOTH VIDEO BUTTONS
  ========================= */

  .fullscreen-btn,
  .screen-switch-btn {
    padding:
      7px
      12px;

    min-height: 30px;

    font-size: 9px;

    font-weight: 600;

    border-radius: 5px;
  }

  .horizontal-posts .movie-card .movie-thumbnail {
    min-height: 260px;
  }

  .movie-download-btn {
    flex-basis: 52px;

    width: 52px;
    height: 52px;
  }

  .movie-actions .movie-watch-btn {
    min-height: 52px;
  }
}
