/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --font-head: 'Montserrat', 'Inter', sans-serif;
  --font-body: 'Inter', 'Montserrat', sans-serif;
  --color-bg: #080e12;
  --color-surface: #0b1116;
  --color-surface-soft: rgba(8, 14, 18, 0.84);
  --color-text: #ffffff;
  --color-text-soft: rgba(255, 255, 255, 0.82);
  --color-accent: #c29f7b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
}

body,
main,
#main,
#footer {
  background: var(--color-bg);
}

a {
  color: #2d6bb3;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
}

div.has-error input, div.has-error textarea {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
div.has-error input:focus, div.has-error textarea:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

div.has-error input, div textarea {
  border-color: #dc3545;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #0b1116;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  width: 60px;
  height: 60px;
  border: 6px solid #5abdff;
  border-top-color: #fff;
  border-radius: 50%;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  width: 44px;
  height: 44px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(42, 52, 63, 0.96) 0%, rgba(20, 28, 36, 0.98) 100%);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: opacity 0.28s ease, transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  transform: translateY(8px);
}

.back-to-top i {
  font-size: 22px;
  line-height: 0;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.28s ease, transform 0.28s ease;
}

.back-to-top:hover {
  border-color: rgba(120, 180, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(50, 66, 82, 0.98) 0%, rgba(22, 32, 42, 1) 100%);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(95, 155, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(0);
}

.back-to-top:hover i {
  color: #ffffff;
  transform: translateY(-1px);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }

  .back-to-top i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  height: 100px;
  background: rgba(8, 14, 18, 0.72);
  transition: all 0.5s;
}

#header .container {
  max-width: 100% !important;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.74);
}

#header.header-transparent {
  background: linear-gradient(180deg, rgba(8, 14, 18, 0.82) 0%, rgba(8, 14, 18, 0.35) 62%, rgba(8, 14, 18, 0) 100%);
}

#header.header-scrolled {
  height: 80px;
  padding-top: 0 !important;
  background: rgba(8, 14, 18, 0.92);
  backdrop-filter: blur(10px);
}

#header.header-scrolled .container {
  padding-bottom: 0;
  border-bottom: 0;
}

#header.header-subpage .container {
  border-bottom: none !important;
}

#header .logo img {
  max-height: 60px;
  margin: 0;
  padding: 0;
}

#header.header-scrolled .logo img {
  height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 15px 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.96);
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 120%;
}

.navbar a span i,
.navbar a:focus span i {
  font-size: 100% !important;
  vertical-align: -1px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: rgba(255, 255, 255, 0.68);
}

.navbar a.link-bleft,
.navbar a.link-bleft:focus {
  margin-left: 30px;
  padding: 15px 0 15px 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.74);
}

.navbar a.link-bright,
.navbar a.link-bright:focus {
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.74);
}

.navbar .dropdown ul {
  position: absolute;
  top: calc(100% + 30px);
  left: 30px;
  display: block;
  z-index: 99;
  margin: 0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(11, 17, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: none !important;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #c29f7b;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 991px) and (max-width: 1200px) {
  .navbar a {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(8, 14, 18, 0.94);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #0b1116;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #ffffff;
  text-shadow: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #c29f7b;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 0 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #0b1116;
  box-shadow: none !important;
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px;
}

.navbar-mobile .dropdown > .dropdown-active,
.navbar-mobile .dropdown .dropdown > .dropdown-active {
  display: block;
}

.navbar-mobile .link-bleft {
  border-left: none;
  padding: 10px 20px;
  margin-left: 0;
}

.navbar-mobile .link-bright {
  border-right: none;
  padding: 10px 20px;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 740px;
  padding: 0;
  overflow: hidden;
  background: #080e12;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  height: 100%;
}

#hero .carousel-item {
  position: relative;
}

.hero-slide,
.hero-shade,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.03);
}

.hero-slide-1 {
  background-image: url('../img/slides/hero-slide-1.webp');
}

.hero-slide-2 {
  background-image: url('../img/slides/hero-slide-3.webp');
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 14, 18, 0.97) 0%, rgba(8, 14, 18, 0.92) 22%, rgba(8, 14, 18, 0.72) 42%, rgba(8, 14, 18, 0.36) 62%, rgba(8, 14, 18, 0.14) 100%),
    linear-gradient(180deg, rgba(8, 14, 18, 0.32) 0%, rgba(8, 14, 18, 0.12) 28%, rgba(8, 14, 18, 0.48) 100%);
}

.hero-glow {
  z-index: 2;
  background:
    radial-gradient(circle at 58% 34%, rgba(80, 137, 181, 0.22) 0%, rgba(37, 81, 122, 0.14) 16%, rgba(8, 14, 18, 0) 34%),
    radial-gradient(circle at 52% 62%, rgba(27, 90, 142, 0.18) 0%, rgba(8, 14, 18, 0) 30%),
    radial-gradient(circle at 32% 50%, rgba(8, 23, 38, 0.75) 0%, rgba(8, 14, 18, 0) 30%);
  mix-blend-mode: screen;
  opacity: 0.95;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
  padding-bottom: 138px;
  padding-left: 64px;
  padding-right: 64px;
}

.hero-content {
  max-width: 420px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 10px 4px;
  border-radius: 2px;
  background: #5abdff;
  color: #000;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#hero h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-content p {
  max-width: 400px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 192px;
  min-height: 46px;
  padding: 12px 28px;
  border-radius: 8px;
  background: #ffffff;
  color: #080e12;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #080e12;
  transform: translateY(-1px);
}

.hero-indicators-wrap {
  position: absolute;
  inset: auto 0 52px 0;
  z-index: 4;
}

.hero-indicators {
  position: static;
  justify-content: center;
  margin: 0;
  gap: 12px;
}

.hero-indicators [data-bs-target] {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  overflow: hidden;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-indicators [data-bs-target]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
  opacity: 0;
}

.hero-indicators .active {
  width: 34px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-indicators .active::before {
  opacity: 1;
  animation: heroIndicatorFill 8.5s linear forwards;
}

@keyframes heroIndicatorFill {
  from { width: 0; }
  to { width: 100%; }
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  position: relative;
  z-index: 2;
  min-height: 0;
}


/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news-section {
  width: 100%;
  padding: 84px 0 92px;
  background: #ffffff;
  color: #080e12;
}

.news-section .container {
  max-width: 1380px;
}

.news-section .section-title {
  margin-bottom: 38px;
}

.news-section .section-title h2 {
  margin: 0;
  color: #080e12;
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.news-grid {
  justify-content: center;
}

.news-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  border: 1px solid rgba(8, 14, 18, 0.18);
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(8, 14, 18, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(8, 14, 18, 0.14);
  border-color: rgba(8, 14, 18, 0.2);
}

.news-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #dfe5ea;
  overflow: hidden;
}

.news-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 18, 0) 0%, rgba(8, 14, 18, 0.08) 100%);
  pointer-events: none;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.03);
}

.news-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 26px 26px 24px;
}

.news-card-body h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.news-card-body h3 a {
  color: #080e12;
}

.news-card-body h3 a:hover {
  color: #080e12;
}

.news-card-body p {
  margin: 0 0 20px;
  color: rgba(8, 14, 18, 0.74);
  font-size: 15px;
  line-height: 1.6;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: #2d6bb3;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.news-card-link:hover {
  color: #080e12;
}

@media (max-width: 991px) {
  .news-section {
    padding: 72px 0 80px;
  }

  .news-section .section-title {
    margin-bottom: 30px;
  }

  .news-card-body {
    padding: 22px 22px 20px;
  }

  .news-card-body p {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .news-section {
    padding: 58px 0 64px;
  }

  .news-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-section .section-title {
    margin-bottom: 24px;
  }

  .news-section .section-title h2 {
    font-size: 28px;
  }

  .news-grid {
    row-gap: 20px;
  }

  .news-card {
    border-radius: 18px;
  }

  .news-card-body {
    padding: 20px 18px 18px;
  }

  .news-card-body h3 {
    font-size: 24px;
  }

  .news-card-body p {
    font-size: 15px;
    line-height: 1.55;
  }

  .news-card-link {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq-section {
  padding: 78px 0 90px;
  background: #080e12;
  color: #ffffff;
}

.faq-section .container {
  max-width: 1380px;
}

.faq-heading {
  margin-bottom: 34px;
}

.faq-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.faq-wrap {
  width: min(100%, 80%);
  margin: 0 auto;
}

.faq-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgba(255, 255, 255, 0.08);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 8px;
  --bs-accordion-inner-border-radius: 8px;
  --bs-accordion-btn-padding-x: 24px;
  --bs-accordion-btn-padding-y: 22px;
  --bs-accordion-body-padding-x: 24px;
  --bs-accordion-body-padding-y: 0 24px 22px;
  --bs-accordion-active-bg: rgba(255, 255, 255, 0.04);
  --bs-accordion-btn-focus-border-color: rgba(255,255,255,0.14);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-color: #ffffff;
  --bs-accordion-active-color: #ffffff;
}

.faq-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-button {
  padding: 22px 24px;
  background: linear-gradient(90deg, rgba(34, 43, 52, 0.94) 0%, rgba(40, 50, 60, 0.9) 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.faq-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  background: linear-gradient(90deg, rgba(40, 50, 60, 0.98) 0%, rgba(32, 41, 50, 0.96) 100%);
}

.faq-accordion .accordion-button::after {
  width: 14px;
  height: 14px;
  background-size: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.faq-accordion .accordion-body {
  padding: 24px 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
  background: linear-gradient(
    180deg,
    rgba(40, 50, 60, 0.96) 0px,
    rgba(34, 43, 52, 0.94) 40px,
    rgba(28, 36, 44, 0.98) 70px
  );
}

.accordion-body {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
  .faq-section {
    padding: 66px 0 76px;
  }

  .faq-heading {
    margin-bottom: 28px;
  }

  .faq-wrap {
    width: min(100%, 92%);
  }

  .faq-accordion .accordion-button {
    font-size: 18px;
  }

  .faq-accordion .accordion-body {
  padding: 24px 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
  background: linear-gradient(
    180deg,
    rgba(40, 50, 60, 0.96) 0px,
    rgba(34, 43, 52, 0.94) 40px,
    rgba(28, 36, 44, 0.98) 70px
  );
}
}

@media (max-width: 767px) {
  .faq-section {
    padding: 56px 0 62px;
  }

  .faq-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-heading {
    margin-bottom: 24px;
  }

  .faq-heading h2 {
    font-size: 26px;
  }

  .faq-wrap {
    width: 100%;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 10px;
    border-radius: 5px;
  }

  .faq-accordion .accordion-button {
    padding: 18px 18px;
    font-size: 16px;
  }

  .faq-accordion .accordion-body {
  padding: 24px 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
  background: linear-gradient(
    180deg,
    rgba(40, 50, 60, 0.96) 0px,
    rgba(34, 43, 52, 0.94) 40px,
    rgba(28, 36, 44, 0.98) 70px
  );
}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  position: relative;
  z-index: 2;
  padding: 42px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

#footer::before {
  content: "";
  position: absolute;
  top: -54px;
  left: 0;
  width: 100%;
  height: 54px;
  background: linear-gradient(180deg, rgba(8, 14, 18, 0) 0%, rgba(8, 14, 18, 0.58) 100%);
  pointer-events: none;
}

#footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 420px;
  background: url("../img/bg-stadium-1920x1080.jpg") center bottom / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 38%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 38%, rgba(0, 0, 0, 0) 100%);
  z-index: -2;
}

#footer .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 22px;
}

.footer-links a {
  position: relative;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.03em;
  transition: color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.footer-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.28);
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.footer-socials a i {
  font-size: 20px;
  line-height: 1;
}

.footer-socials a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(120, 180, 255, 0.22);
  box-shadow: 0 0 14px rgba(120,180,255,0.15);
  transform: translateY(-2px);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  #footer {
    padding: 34px 0 24px;
  }

  #footer::before {
    top: -40px;
    height: 40px;
  }

  .footer-links {
    gap: 10px 16px;
    margin-bottom: 18px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-links a:not(:last-child)::after {
    right: -8px;
    height: 8px;
  }

  .footer-socials {
    margin-bottom: 16px;
  }

  .footer-socials a {
    width: 42px;
    height: 42px;
  }

  .footer-copy {
    font-size: 11px;
  }
}


/*--------------------------------------------------------------
# Breakpoints
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  #hero {
    min-height: 680px;
  }

  .hero-content-wrap {
    padding-bottom: 126px;
    padding-left: 58px;
    padding-right: 58px;
  }

  #hero h1 {
    font-size: clamp(34px, 4.5vw, 48px);
  }

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

@media (max-width: 991px) {
  #header {
    height: 88px;
  }

  #header .container {
    padding-bottom: 10px;
  }

  #hero {
    min-height: 620px;
  }

  .hero-content-wrap {
    padding-bottom: 112px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .hero-content {
    max-width: 360px;
  }

  .hero-content p {
    max-width: 340px;
    font-size: 17px;
  }

  #footer .copyright {
    row-gap: 12px;
  }

  #footer .copyright .text-end {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  #header {
    height: 80px;
  }

  #header .container {
    padding-bottom: 8px;
    border-bottom-color: rgba(255, 255, 255, 0.45);
  }

  #header .logo img {
    max-height: 50px;
  }

  #hero {
    min-height: 560px;
    height: 100svh;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 14, 18, 0.48) 0%, rgba(8, 14, 18, 0.42) 20%, rgba(8, 14, 18, 0.86) 100%),
      linear-gradient(90deg, rgba(8, 14, 18, 0.92) 0%, rgba(8, 14, 18, 0.56) 44%, rgba(8, 14, 18, 0.16) 100%);
  }

  .hero-glow {
    background:
      radial-gradient(circle at 66% 28%, rgba(80, 137, 181, 0.18) 0%, rgba(8, 14, 18, 0) 28%),
      radial-gradient(circle at 58% 58%, rgba(27, 90, 142, 0.14) 0%, rgba(8, 14, 18, 0) 26%);
  }

  .hero-slide {
    background-position: 68% center !important;
  }

  .hero-content-wrap {
    align-items: flex-end;
    padding-bottom: 112px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-content {
    max-width: 300px;
  }

  .hero-badge {
    margin-bottom: 16px;
    font-size: 12px;
  }

  #hero h1 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .hero-content p {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-btn {
    min-width: 160px;
    min-height: 46px;
    padding: 11px 22px;
    font-size: 16px;
  }

  .hero-indicators-wrap {
    bottom: 32px;
  }

  .hero-indicators {
    gap: 10px;
  }

  .hero-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
  }

  .hero-indicators .active {
    width: 28px;
  }

  #footer .footer-contact a {
    font-size: 15px;
  }

  #footer .copyright {
    text-align: left;
  }
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 72px;
  opacity: 1;
  z-index: 5;
}

.carousel-control-prev.hero-control {
  left: 6px;
}

.carousel-control-next.hero-control {
  right: 6px;
}

.hero-control-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-control-icon i {
  font-size: 34px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.hero-control:hover .hero-control-icon {
  transform: scale(1.06);
}

.hero-control:hover .hero-control-icon i {
  color: #ffffff;
}
@media (max-width: 767px) {
  .carousel-control-prev.hero-control { left: 2px; }
  .carousel-control-next.hero-control { right: 2px; }
  .hero-control {
    width: 44px;
    height: 64px;
  }
  .hero-control-icon i {
    font-size: 28px;
  }
}

#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.3s ease;
}

#header.header-scrolled {
  background: rgba(0,0,0,0.8);
}

#header .logo img {
  max-height: 40px;
  margin-top: -11px;
}

.nav-link-custom {
  position: relative;
  top: -1px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav-link-custom:hover {
  opacity: 1;
}

.nav-btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  font-family: var(--font-head);
  font-size: 13px;
  background: #fff;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
}

#header .container {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

#header.header-scrolled {
  padding-bottom: 0 !important;
  background: rgba(8, 14, 18, 0.8) !important;
}

.nav-menu ul,
#navbar ul,
.navbar ul {
  list-style: none !important;
}

.nav-btn-login,
.nav-btn-login:hover,
.nav-btn-login:focus {
  min-height: 46px;
  padding: 12px 28px;
  border-radius: 8px;
  background: #ffffff;
  color: #080e12 !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-btn-login:hover,
.nav-btn-login:focus {
  background: rgba(255, 255, 255, 0.9);
  color: #080e12 !important;
  transform: translateY(-1px);
}

.nav-btn-login,
.nav-btn-login:hover,
.nav-btn-login:focus {
  min-height: 40px;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 578px) {
  #header {
    padding: 16px 0;
  }

  #header .logo img {
    max-height: 30px !important;
  }

  .nav-link-custom {
    position: relative;
    top: -2px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .nav-menu ul {
    gap: 12px !important;
    padding-left: 0;
  }

  .nav-btn-login,
  .nav-btn-login:hover,
  .nav-btn-login:focus {
    min-height: 30px;
    height: 30px;
    padding: 0 12px;
    font-size: 11px;
    border-radius: 6px;
  }

  .hero-control {
    display: none !important;
  }
}


@media (max-width: 360px) {
  .nav-link-custom {
    position: relative;
    top: -2px;
    font-size: 9px;
    letter-spacing: 0.02em;
    margin: 0 3px;
  }

  .nav-menu ul {
    gap: 8px !important;
  }

  .nav-btn-login,
  .nav-btn-login:hover,
  .nav-btn-login:focus {
    padding: 0 10px;
    font-size: 10px;
  }
}


/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners-section {
  padding: 80px 0;
  background: #080e12;
}

.partners-heading {
  text-align: center;
  margin-bottom: 34px;
}

.partners-heading h2 {
  position: relative;
  display: inline-block;
  /* padding-bottom: 14px; */
  font-size: clamp(26px,2.2vw,34px);
}

.partners-heading h2::after {
  /* content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:0;
  width:140%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.6),transparent); */
}

.partners-grid {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:30px 50px;
}

.partner-logo img {
  height:80px;
  width:auto;
  transition:all .25s ease;
}

.partner-logo:hover img {
  opacity:0.8;
  transform:scale(1.15);
}


/*--------------------------------------------------------------
# Login modal
--------------------------------------------------------------*/
.login-modal .modal-dialog {
  max-width: 460px;
}

.login-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(14, 20, 27, 0.98) 0%, rgba(8, 13, 18, 0.98) 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #ffffff;
  overflow: hidden;
}

.login-modal .modal-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 18px 18px 0;
  border-bottom: 0;
  min-height: 0;
}

.login-modal .btn-close {
  margin: 0;
  opacity: 0.86;
  filter: invert(1) grayscale(100%) brightness(200%);
  box-shadow: none;
}

.login-modal .btn-close:hover {
  opacity: 1;
}

.login-modal .modal-body {
  padding: 8px 32px 34px;
}

.login-modal-title {
  margin: 0 0 24px;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.login-field input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.login-field input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.login-field input:focus {
  border-color: rgba(90, 189, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(90, 189, 255, 0.12);
}

.login-submit-btn {
  width: 100%;
  height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #080e12;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.login-submit-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.login-modal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  text-align: center;
}

.login-modal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.login-modal-links a:hover {
  color: #ffffff;
}

.login-link-register {
  color: #ffffff !important;
}

.login-modal.fade .modal-dialog {
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  transform: translateY(14px) scale(0.985);
}

.login-modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-backdrop.show {
  opacity: 0.62;
}

@media (max-width: 578px) {
  .login-modal .modal-dialog {
    margin: 16px;
  }

  .login-modal .modal-body {
    padding: 6px 20px 24px;
  }

  .login-modal-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .login-field input,
  .login-submit-btn {
    height: 50px;
  }
}


/*--------------------------------------------------------------
# Subpage header line
--------------------------------------------------------------*/
.header-subpage-lined {
  background: rgba(8, 14, 18, 0.96) !important;
}

.header-subpage-lined::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.header-subpage-lined .container {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Registration page
--------------------------------------------------------------*/
.page-subpage {
  min-height: 100vh;
}

.subpage-main {
  padding-top: 120px;
}

.registration-section {
  padding: 48px 0 96px;
  background: #080e12;
}

.registration-section .container {
  max-width: 1380px;
}

.registration-shell {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 44px 36px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15, 21, 27, 0.98) 0%, rgba(9, 14, 19, 0.98) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.registration-heading {
  margin-bottom: 30px;
}

.registration-heading h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.registration-heading h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 132%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0) 100%);
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.registration-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.registration-field label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.registration-field label span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.registration-field input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.registration-field input:focus {
  border-color: rgba(90, 189, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(90, 189, 255, 0.12);
}

.registration-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
  cursor: pointer;
}

.registration-check input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #5abdff;
}

.registration-check a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.registration-submit {
  width: 100%;
  height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #080e12;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.registration-submit:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .subpage-main {
    padding-top: 90px;
  }

  .registration-section {
    padding: 28px 0 72px;
  }

  .registration-check input {
    transform: scale(1.1);
  }

  .registration-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .registration-shell {
    width: 100%;
    padding: 32px 20px 24px;
    border-radius: 16px;
  }

  .registration-heading {
    margin-bottom: 24px;
  }

  .registration-heading h1 {
    padding-bottom: 12px;
    font-size: 28px;
  }

  .registration-field input,
  .registration-submit {
    height: 50px;
  }
}

/*--------------------------------------------------------------
# Text subpages base holder
--------------------------------------------------------------*/
.subpage-base-section {
  padding: 32px 0 96px;
  background: #080e12;
}

.subpage-base-section .container {
  max-width: 1380px;
}

.subpage-base-holder {
  position: relative;
  width: 100%;
  padding: 28px 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 115%, rgba(196, 92, 44, 0.16) 0%, rgba(196, 92, 44, 0.08) 16%, rgba(8, 14, 18, 0) 42%),
    linear-gradient(180deg, rgba(14, 20, 27, 0.94) 0%, rgba(8, 13, 18, 0.96) 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.subpage-base-holder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 50% 100%, rgba(90,189,255, 0.12) 0%, rgba(90,189,255, 0) 44%);
  pointer-events: none;
}

.subpage-base-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.subpage-base-full {
  max-width: 100% !important;
}

.subpage-base-title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.subpage-base-content {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.subpage-base-content p {
  margin: 0 0 18px;
}

.subpage-base-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .subpage-base-section {
    padding: 18px 0 72px;
  }

  .subpage-base-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .subpage-base-holder {
    padding: 22px 18px 24px;
    border-radius: 18px;
  }

  .subpage-base-title {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .subpage-base-content {
    font-size: 15px;
    line-height: 1.7;
  }
}

/*--------------------------------------------------------------
# Pricing subpage
--------------------------------------------------------------*/
.pricing-section {
  padding: 20px 0 96px 0;
  background: #080e12;
}

.pricing-section .container {
  max-width: 1380px;
}

.pricing-heading {
  margin-bottom: 42px;
}

.pricing-heading h1 {
  position: relative;
  display: inline-block;
  margin: 0 0 16px;
  padding-bottom: 14px;
  color: #ffffff;
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.pricing-heading h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 124%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.pricing-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.pricing-grid {
  justify-content: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 13, 18, 0.98) 0%, rgba(10, 18, 24, 0.98) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
}

.pricing-card-topline {
  padding: 12px 22px;
  background: linear-gradient(180deg, #dfbb34 0%, #c79a1f 100%);
  color: #080e12;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
}

.pricing-card-topline-normal {
  background: linear-gradient(180deg, #ffffff 0%, #e6e6e6 100%);
  color: #080e12;
}

.pricing-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 28px 28px 30px;
}

.pricing-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.pricing-card-subtitle {
  min-height: 52px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.pricing-card-price {
  margin: 0 0 28px;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-card-price span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pricing-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #ffffff;
  color: #080e12 !important;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pricing-card-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.pricing-card-vip {
  border-color: rgba(223, 187, 52, 0.76);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(223, 187, 52, 0.12);
}

.pricing-card-vip:hover {
  border-color: rgba(223, 187, 52, 0.96);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.3), 0 0 24px rgba(223, 187, 52, 0.12);
}

.pricing-card-vip .pricing-card-price {
  color: #f1cb47;
}

.pricing-card-vip .pricing-card-price span {
  color: rgba(241, 203, 71, 0.72);
}

.pricing-card-btn-vip {
  background: linear-gradient(180deg, #e4c348 0%, #d3a82f 100%);
  border-color: rgba(223, 187, 52, 0.74);
  color: #080e12 !important;
}

.pricing-card-btn-vip:hover {
  background: linear-gradient(180deg, #ebcb53 0%, #ddb53a 100%);
}

.pricing-card-btn:disabled,
button[type="submit"]:disabled,
input[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.pricing-card-btn.is-submitting,
button[type="submit"].is-submitting {
  position: relative;
  color: transparent !important;
}

.pricing-card-btn.is-submitting .btn-spinner,
button[type="submit"].is-submitting .btn-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  pointer-events: none;
  z-index: 2;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-top-color: rgba(0, 0, 0, 0.78);
  border-radius: 50%;
  animation: pricing-btn-spin 1.05s linear infinite;
}

@keyframes pricing-btn-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.alert-danger .btn-close {
  opacity: 1 !important;
}

.alert {
  border-radius: 12px;
}

.alert-danger {
  border: none;
  background-color: rgba(220, 53, 69, 0.65);
  color: #ffb3b3;
  opacity: 0.96;
}

.alert-danger strong {
  color: #ff8080;
  display: block;
  font-size: 110%;
}

.alert-info {
  border: none;
  background-color: rgba(45, 107, 179, 0.25);
  color: #fff;
  opacity: 0.96;
}

.alert-info strong {
  color: #2d6bb3;
  display: block;
  font-size: 110%;
}

@media (max-width: 991px) {
  .pricing-section {
    padding: 0 0 82px;
  }

  .pricing-heading {
    margin-bottom: 34px;
  }

  .pricing-card-body {
    padding: 26px 24px 26px;
  }

  .pricing-card h2 {
    font-size: 28px;
  }

  .pricing-card-price {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding: 20px 0 66px;
  }

  .pricing-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-heading {
    margin-bottom: 28px;
  }

  .pricing-heading h1 {
    font-size: 28px;
  }

  .pricing-heading p {
    font-size: 15px;
  }

  .pricing-card {
    border-radius: 18px;
  }

  .pricing-card-topline {
    padding: 11px 18px;
    font-size: 13px;
  }

  .pricing-card-body {
    padding: 22px 18px 22px;
  }

  .pricing-card h2 {
    font-size: 26px;
  }

  .pricing-card-subtitle {
    min-height: 0;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .pricing-card-price {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .pricing-card-price span {
    font-size: 16px;
  }

  .pricing-card-btn {
    min-height: 50px;
    font-size: 15px;
  }
}

/* --------------------------------------------------------------
# Explore page only
-------------------------------------------------------------- */
.explore-page-body {
  background:
    radial-gradient(circle at top center, rgba(90, 189, 255, 0.08) 0%, rgba(8, 14, 18, 0) 26%),
    #080e12;
}

.explore-main {
  overflow: hidden;
  padding-top: 0 !important;
}

.explore-hero-section {
  position: relative;
  /* padding: 0 0 18px; */
}

/* .explore-hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  background: linear-gradient(180deg, rgba(8, 14, 18, 0) 0%, rgba(8, 14, 18, 0.82) 58%, #080e12 100%);
  pointer-events: none;
  z-index: 1;
} */

.explore-carousel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 71px;
  background: transparent url(../img/hero-bottom-shadow.png) center bottom repeat-x;
  z-index: 1;
}

.explore-hero-section .container,
.explore-list-section .container {
  max-width: 1380px;
}

.explore-carousel {
  position: relative;
  z-index: 2;
}

.explore-carousel-inner {
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.explore-feature-slide {
  position: relative;
  min-height: 80vh;
  background: #0b1116;
  isolation: isolate;
}

.explore-feature-media,
.explore-feature-media img,
.explore-feature-overlay {
  position: absolute;
  inset: 0;
}

.explore-feature-media {
  overflow: hidden;
}

.explore-feature-media img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  min-width: 100%;
  max-width: none;
  object-fit: cover;
}

.explore-feature-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 14, 18, 0.98) 0%, rgba(8, 14, 18, 0.94) 20%, rgba(8, 14, 18, 0.78) 38%, rgba(8, 14, 18, 0.34) 58%, rgba(8, 14, 18, 0) 76%),
    linear-gradient(180deg, rgba(8, 14, 18, 0.18) 0%, rgba(8, 14, 18, 0.08) 28%, rgba(8, 14, 18, 0.50) 100%);
}

.explore-feature-content {
  position: absolute;
  z-index: 2;
  left: 64px;
  top: 120px;
  bottom: 96px;
  width: min(40%, 620px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.explore-feature-content h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.explore-feature-content p {
  max-width: 460px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

.explore-feature-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.explore-feature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.explore-carousel-indicators {
  position: absolute;
  inset: auto 0 52px 0;
  z-index: 4;
  justify-content: center;
  margin: 0;
  gap: 12px;
}

.explore-carousel-indicators [data-bs-target] {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  overflow: hidden;
  transition: width 0.2s ease, background 0.2s ease;
}

.explore-carousel-indicators [data-bs-target]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
  opacity: 0;
}

.explore-carousel-indicators .active {
  width: 34px;
  background: rgba(255, 255, 255, 0.22);
}

.explore-carousel-indicators .active::before {
  opacity: 1;
  animation: heroIndicatorFill 8.5s linear forwards;
}

.explore-list-section {
  position: relative;
  z-index: 2;
  padding: 28px 0 18px;
}

.explore-list-section-archive {
  padding-bottom: 92px;
}

.explore-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.explore-section-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.explore-section-heading p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.explore-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.explore-card-grid-live {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.explore-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 19, 25, 0.98) 0%, rgba(8, 13, 18, 0.98) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.explore-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.32);
}

.explore-card-live {
  border-color: rgba(90, 189, 255, 0.22);
}

.explore-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111922;
}

.explore-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 18, 0) 0%, rgba(8, 14, 18, 0.16) 100%);
  pointer-events: none;
}

.explore-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.explore-card:hover .explore-card-media img {
  transform: scale(1.04);
}

.explore-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.explore-card-badge.is-live {
  background: rgba(212, 34, 34, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
}

.explore-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.explore-card-date {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.explore-card-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.explore-card-body h3 a {
  color: #ffffff;
}

.explore-card-body h3 a:hover {
  color: #ffffff;
}

.explore-card-body p,
.explore-card-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.explore-card-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.explore-watch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #ffffff;
  color: #080e12 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.explore-watch-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.explore-card-archive-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  color: inherit;
  text-decoration: none;
}

.explore-card-archive-link .explore-card-body {
  display: flex;
}

.explore-card-archive-link:hover {
  color: inherit;
}

.explore-archive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 28px;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 8px;
  background: #ffffff;
  color: #080e12;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.explore-archive-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.explore-noslider {
  height: 120px;
}

.explore-card-topbar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.explore-card-topbar .explore-card-badge,
.explore-card-topbar .explore-card-lock {
  pointer-events: auto;
}

.explore-card-topbar .explore-card-badge {
  position: static;
}

.explore-card-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(8, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.explore-card-lock:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(8, 14, 18, 0.88);
  color: #ffffff;
}

@media (max-width: 767px) {
  .explore-card-topbar {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .explore-card-lock {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}

@media (max-width: 1199px) {
  .explore-noslider {
    height: 100px;
  }

  .explore-feature-slide {
    min-height: 80vh;
  }

  .explore-feature-content {
    left: 58px;
    top: 120px;
    bottom: 88px;
    width: min(46%, 560px);
  }

  .explore-feature-content h1 {
    font-size: clamp(34px, 4.5vw, 48px);
  }

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

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

@media (max-width: 991px) {
  .explore-noslider {
    height: 90px;
  }

  .explore-hero-section::after {
    height: 150px;
  }

  .explore-feature-slide {
    min-height: 80vh;
  }

  .explore-feature-overlay {
    background:
      linear-gradient(180deg, rgba(8, 14, 18, 0.54) 0%, rgba(8, 14, 18, 0.42) 18%, rgba(8, 14, 18, 0.88) 100%),
      linear-gradient(90deg, rgba(8, 14, 18, 0.94) 0%, rgba(8, 14, 18, 0.60) 42%, rgba(8, 14, 18, 0.18) 100%);
  }

  .explore-feature-content {
    left: 50px;
    top: 104px;
    bottom: 84px;
    width: min(58%, 520px);
  }

  .explore-feature-content p {
    max-width: 380px;
    font-size: 17px;
  }

  .explore-carousel-indicators {
    bottom: 32px;
  }

  .explore-list-section {
    padding-top: 22px;
  }

  .explore-list-section-archive {
    padding-bottom: 72px;
  }
}

@media (max-width: 767px) {
  .explore-noslider {
    height: 80px;
  }

  .explore-hero-section {
    padding-bottom: 10px;
  }

  .explore-hero-section::after {
    height: 120px;
  }

  .explore-list-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .explore-feature-slide {
    min-height: 80svh;
  }

  .explore-feature-media img {
    left: auto !important;
    right: -120px;
  }

  .explore-feature-content {
    left: 22px;
    right: 22px;
    top: 90px;
    bottom: 92px;
    width: auto;
  }

  .explore-feature-content h1 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .explore-feature-content p {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.45;
  }

  .explore-feature-actions {
    gap: 10px;
  }

  .explore-feature-tag {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .explore-carousel-indicators {
    bottom: 32px;
    gap: 10px;
  }

  .explore-carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
  }

  .explore-carousel-indicators .active {
    width: 28px;
  }

  .explore-section-heading {
    margin-bottom: 20px;
  }

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

  .explore-section-heading p {
    font-size: 14px;
  }

  .explore-card-grid,
  .explore-card-grid-live {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .explore-card {
    border-radius: 16px;
  }

  .explore-card-body {
    padding: 16px 16px 18px;
  }

  .explore-card-body h3,
  .explore-card-title {
    font-size: 18px;
  }

  .explore-watch-btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------
# Watch page only
-------------------------------------------------------------- */
.watch-main {
  padding-top: 88px !important;
}

.watch-section {
  padding: 24px 0 96px;
  background: #080e12;
}

.watch-section .container {
  max-width: 1380px;
}

.watch-shell {
  width: 100%;
}

.watch-player-wrap {
  width: 100%;
}

.watch-player-ratio {
  width: 100%;
}

.watch-player-ratio .tab-content,
.watch-player-ratio .tab-pane {
  width: 100%;
}

.watch-player-ratio .tab-pane {
  position: relative;
}

.watch-player-iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
}

.watch-meta {
  padding-top: 18px;
}

.watch-meta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.watch-meta-head h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.watch-tabs-wrap {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
}

.watch-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
}

.watch-tabs .nav-link {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.watch-tabs .nav-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.watch-tabs .nav-link.active {
  color: #080e12;
  border-color: rgba(255, 255, 255, 0.9);
  background: #ffffff;
}

.watch-subtitle {
  margin: 12px 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.watch-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .watch-section {
    padding: 12px 0 76px;
  }

  .watch-meta-head {
    gap: 14px 20px;
  }
}

@media (max-width: 767px) {
  .watch-section {
    padding: 8px 0 64px;
  }

  .watch-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .watch-meta {
    padding-top: 14px;
  }

  .watch-meta-head {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .watch-tabs-wrap {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .watch-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .watch-tabs .nav-link {
    width: 100%;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 8px;
  }

  .watch-meta-head h1 {
    font-size: 28px;
  }

  .watch-subtitle {
    margin: 10px 0 12px;
    font-size: 12px;
  }

  .watch-meta p {
    font-size: 15px;
    line-height: 1.6;
  }
}

.hta-watch-player {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 110%, rgba(90, 189, 255, 0.12) 0%, rgba(90, 189, 255, 0.04) 18%, rgba(8, 14, 18, 0) 44%),
    linear-gradient(180deg, rgba(12, 18, 24, 0.98) 0%, rgba(7, 12, 17, 0.98) 100%);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.hta-watch-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05090d;
}

.hta-watch-iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
}

.hta-watch-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 18px 18px 0;
  pointer-events: none;
}

.hta-watch-title {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  max-width: min(100%, 520px);
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(8, 14, 18, 0.68) 0%, rgba(8, 14, 18, 0.42) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.hta-watch-title-main {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.hta-watch-title-sub {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hta-watch-center-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(10, 18, 24, 0.82) 0%, rgba(8, 14, 18, 0.72) 100%);
  color: #ffffff;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  cursor: default;
  pointer-events: none;
}

.hta-watch-center-icon {
  position: relative;
  left: 2px;
  font-size: 30px;
  line-height: 1;
}

.hta-watch-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 18px 16px;
  background: linear-gradient(180deg, rgba(8, 14, 18, 0) 0%, rgba(8, 14, 18, 0.18) 20%, rgba(8, 14, 18, 0.74) 100%);
}

.hta-watch-progress {
  margin-bottom: 12px;
}

.hta-watch-seek,
.hta-watch-volume-slider {
  width: 100%;
  accent-color: #5abdff;
  cursor: pointer;
}

.hta-watch-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hta-watch-controls-left,
.hta-watch-controls-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hta-watch-controls-left {
  flex-wrap: nowrap;
  min-width: 0;
}

.hta-watch-volume {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hta-watch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(16, 24, 31, 0.86) 0%, rgba(10, 17, 23, 0.86) 100%);
  color: #ffffff;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hta-watch-btn span {
  font-size: 17px;
  line-height: 1;
}

.hta-watch-volume-slider {
  width: 110px;
}

.hta-watch-time {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .hta-watch-player {
    border-radius: 14px;
  }

  .hta-watch-topbar {
    padding: 12px 12px 0;
  }

  .hta-watch-title {
    padding: 8px 10px;
    border-radius: 10px;
  }

  .hta-watch-title-main {
    font-size: 13px;
  }

  .hta-watch-title-sub {
    font-size: 10px;
  }

  .hta-watch-center-toggle {
    width: 58px;
    height: 58px;
  }

  .hta-watch-center-icon {
    font-size: 24px;
  }

  .hta-watch-bottom {
    padding: 0 12px 12px;
  }

  .hta-watch-progress {
    margin-bottom: 10px;
  }

  .hta-watch-controls {
    gap: 10px;
  }

  .hta-watch-controls-left {
    gap: 6px;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .hta-watch-controls-right {
    gap: 8px;
  }

  .hta-watch-volume-slider {
    width: 72px;
  }

  .hta-watch-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .hta-watch-btn span {
    font-size: 15px;
  }

  .hta-watch-time {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .hta-watch-time {
    display: none;
  }
}

@media (max-width: 338px) {
  .hta-watch-live-btn,
  .hta-watch-live-btn.is-live-source,
  .hta-watch-live-btn.is-active {
    min-width: 36px !important;
    width: 36px !important;
    padding: 0 !important;
    gap: 0 !important;
    justify-content: center;
  }

  .hta-watch-live-btn .hta-watch-live-label {
    display: none !important;
  }

  .hta-watch-live-btn .hta-watch-live-dot {
    margin: 0;
  }
}

.hta-watch-btn i,
.hta-watch-center-icon i {
  font-size: 18px;
  line-height: 1;
}

.hta-watch-center-icon i {
  font-size: 28px;
}

#htaWatchPlayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#htaWatchPlayer iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hta-watch-center-toggle,
.hta-watch-btn,
.hta-watch-seek,
.hta-watch-volume-slider {
  pointer-events: auto;
}

.hta-watch-stage:fullscreen {
  background: #000;
}

.hta-watch-stage:fullscreen .hta-watch-bottom {
  padding-bottom: 18px;
}

.hta-watch-btn,
.hta-watch-center-toggle {
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.hta-watch-btn:hover,
.hta-watch-center-toggle:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(20, 30, 38, 0.92) 0%, rgba(12, 20, 27, 0.92) 100%);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(90, 189, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hta-watch-btn:hover i,
.hta-watch-center-toggle:hover i {
  color: #ffffff;
}

.hta-watch-player.is-ui-hidden .hta-watch-bottom,
.hta-watch-player.is-ui-hidden .hta-watch-center-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hta-watch-bottom,
.hta-watch-center-toggle {
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.hta-watch-reveal-hitbox {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  padding: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.hta-watch-player.is-ui-hidden .hta-watch-reveal-hitbox {
  pointer-events: auto;
}

.player-controls-content {
  display: none !important;
}

.hta-watch-interaction-blocker {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  opacity: 0;
  cursor: default;
  pointer-events: auto;
  touch-action: manipulation;
}

#htaWatchPlayer,
#htaWatchPlayer iframe {
  z-index: 1;
}

.hta-watch-bottom {
  z-index: 3;
}

.hta-watch-center-toggle {
  z-index: 4;
}

.hta-watch-player.is-ui-hidden .hta-watch-bottom,
.hta-watch-player.is-ui-hidden .hta-watch-center-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hta-watch-player.is-ui-hidden .hta-watch-interaction-blocker {
  pointer-events: auto;
}

.hta-watch-live-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 88px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(16, 24, 31, 0.86) 0%, rgba(10, 17, 23, 0.86) 100%);
  color: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.hta-watch-live-btn .hta-watch-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.hta-watch-live-btn .hta-watch-live-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hta-watch-live-btn.is-live-source {
  color: rgba(255, 255, 255, 0.88);
}

.hta-watch-live-btn.is-live-source .hta-watch-live-dot {
  background: rgba(255, 255, 255, 0.42);
}

.hta-watch-live-btn.is-active {
  color: #ffffff;
}

.hta-watch-live-btn.is-active .hta-watch-live-dot {
  background: #ff3b3b;
  box-shadow: 0 0 10px rgba(255, 59, 59, 0.55);
}

.hta-watch-live-btn[aria-disabled="true"] {
  opacity: 0.48;
}

.hta-watch-player.is-ui-hidden .hta-watch-live-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hta-watch-live-btn {
    min-width: 82px;
    height: 36px;
    padding: 0 14px;
    gap: 7px;
  }

  .hta-watch-live-btn .hta-watch-live-label {
    font-size: 13px;
  }

  .hta-watch-live-btn .hta-watch-live-dot {
    width: 6px;
    height: 6px;
  }
}

.hta-watch-live-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 74px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(16, 24, 31, 0.86) 0%, rgba(10, 17, 23, 0.86) 100%);
  color: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.hta-watch-live-btn .hta-watch-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.hta-watch-live-btn .hta-watch-live-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hta-watch-live-btn.is-live-source {
  color: rgba(255, 255, 255, 0.88);
}

.hta-watch-live-btn.is-live-source .hta-watch-live-dot {
  background: rgba(255, 255, 255, 0.42);
}

.hta-watch-live-btn.is-active {
  color: #ffffff;
}

.hta-watch-live-btn.is-active .hta-watch-live-dot {
  background: #ff3b3b;
  box-shadow: 0 0 10px rgba(255, 59, 59, 0.55);
}

.hta-watch-live-btn[aria-disabled="true"],
.hta-watch-live-btn[hidden] {
  display: none !important;
}

.hta-watch-player.is-ui-hidden .hta-watch-live-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 460px) {
  #htaWatchVolumeSlider {
    display: none;
  }

  .hta-watch-live-btn {
    min-width: 68px;
    height: 36px;
    padding: 0 10px;
    gap: 6px;
    border-radius: 8px;
  }

  .hta-watch-live-btn .hta-watch-live-label {
    font-size: 13px;
  }

  .hta-watch-live-btn .hta-watch-live-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 380px) {
  .hta-watch-time {
    display: none;
  }
}

.hta-watch-access-state {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #000000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.hta-watch-access-state.is-visible {
  opacity: 1;
  visibility: visible;
}

.hta-watch-access-state-inner {
  width: min(100%, 520px);
  text-align: center;
}

.hta-watch-access-state-title {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hta-watch-access-state-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
}

.hta-watch-player.is-access-blocked .hta-watch-bottom,
.hta-watch-player.is-access-blocked .hta-watch-center-toggle,
.hta-watch-player.is-access-blocked .hta-watch-reveal-hitbox {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hta-watch-access-state {
    padding: 18px;
  }

  .hta-watch-access-state-text {
    font-size: 15px;
    line-height: 1.55;
  }
}

.hta-watch-access-state-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 12px;
}

.hta-watch-access-state-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(18px, 3.2vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.hta-watch-access-state-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 2.6vw, 16px);
  line-height: 1.6;
  text-align: center;
}

.hta-watch-access-state,
.hta-watch-access-state * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
  mix-blend-mode: normal !important;
}

.hta-watch-access-state-text {
  color: rgba(255, 255, 255, 0.82) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.82) !important;
}

.hta-watch-skip-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  pointer-events: auto;
}

.hta-watch-skip-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(16, 24, 31, 0.86) 0%, rgba(10, 17, 23, 0.86) 100%);
  color: #ffffff;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.hta-watch-skip-btn i {
  font-size: 26px;
  line-height: 1;
  margin-top: 2px;
}

.hta-watch-skip-btn .hta-watch-skip-value {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -43%);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  margin-top: -1px;
  white-space: nowrap;
  pointer-events: none;
}

.hta-watch-skip-btn:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(20, 30, 38, 0.92) 0%, rgba(12, 20, 27, 0.92) 100%);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(90, 189, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hta-watch-skip-btn:hover i,
.hta-watch-skip-btn:hover .hta-watch-skip-value {
  color: #ffffff;
}

.hta-watch-player.is-ui-hidden .hta-watch-skip-controls {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hta-watch-skip-controls {
    gap: 6px;
  }

  .hta-watch-skip-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    padding: 0 7px;
  }

  .hta-watch-skip-btn i {
    font-size: 24px;
    margin-top: 2px;
  }

  .hta-watch-skip-btn .hta-watch-skip-value {
    font-size: 8px;
  }
}

.pricing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 26px 0 6px 0;
  color: rgba(255,255,255,.6);
  font-size: 1.2rem;
  letter-spacing: .5px;
}

.pricing-divider::before,
.pricing-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
}

.pricing-divider span {
  white-space: nowrap;
}

.hero-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

/* CTA BUTTON – PREMIUM VERSION */
.hero-btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(180deg, #ffffff 0%, #f1f1f1 100%);
  color: #080e12;

  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 8px;

  overflow: hidden;
  isolation: isolate;

  box-shadow:
    0 8px 22px rgba(0,0,0,0.26),
    0 0 18px rgba(255,255,255,0.08);

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

  animation: ctaIdleGlow 2.8s ease-in-out infinite;
}

/* jemný vnitřní světelný nádech */
.hero-btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.08) 42%, rgba(255,255,255,0) 75%);
  opacity: 0.85;
  z-index: -1;
  transition: opacity 0.25s ease;
}

/* jemný shine sweep jen na hover */
.hero-btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 42%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

/* idle glow = aby to žilo i bez hoveru */
@keyframes ctaIdleGlow {
  0% {
    box-shadow:
      0 8px 22px rgba(0,0,0,0.26),
      0 0 10px rgba(255,255,255,0.05);
  }
  50% {
    box-shadow:
      0 10px 24px rgba(0,0,0,0.28),
      0 0 22px rgba(255,255,255,0.13);
  }
  100% {
    box-shadow:
      0 8px 22px rgba(0,0,0,0.26),
      0 0 10px rgba(255,255,255,0.05);
  }
}

/* HOVER */
.hero-btn-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
  border-color: rgba(255,255,255,0.78);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.34),
    0 0 24px rgba(255,255,255,0.22);
  animation: none;
}

.hero-btn-cta:hover::before {
  opacity: 1;
}

.hero-btn-cta:hover::after {
  animation: ctaShine 0.9s ease forwards;
  opacity: 1;
}

/* ACTIVE */
.hero-btn-cta:active {
  transform: translateY(0);
  box-shadow:
    0 5px 14px rgba(0,0,0,0.28),
    0 0 12px rgba(255,255,255,0.12);
}

/* shine sweep */
@keyframes ctaShine {
  0% {
    left: -65%;
  }
  100% {
    left: 125%;
  }
}

/* --------------------------------------------------------------
# Watch fullscreen modal
-------------------------------------------------------------- */
.hta-watch-fs-modal .modal-dialog {
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
}

.hta-watch-fs-modal .modal-content {
  width: 100%;
  height: 100dvh;
  border: 0;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.hta-watch-fs-modal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.hta-watch-fs-modal .hta-watch-stage {
  width: 100vw;
  max-width: 100vw;
  height: auto;
  max-height: 100dvh;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 0;
}

.hta-watch-fs-modal .hta-watch-player {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #000;
}

.hta-watch-fs-modal .hta-watch-bottom {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}

.hta-watch-fs-modal .hta-watch-topbar,
.hta-watch-fs-modal .hta-watch-skip-controls {
  padding-left: max(14px, env(safe-area-inset-left));
  padding-right: max(14px, env(safe-area-inset-right));
}

body.hta-watch-fs-modal-open {
  overflow: hidden;
}

/* FAUX FULLSCREEN */
body.hta-watch-faux-fs-open {
  overflow: hidden;
}

body.hta-watch-faux-fs-open #header,
body.hta-watch-faux-fs-open #footer,
body.hta-watch-faux-fs-open .watch-meta,
body.hta-watch-faux-fs-open .watch-subtitle,
body.hta-watch-faux-fs-open .watch-shell > p {
  display: none !important;
}

body.hta-watch-faux-fs-open .watch-main,
body.hta-watch-faux-fs-open .watch-section {
  padding: 0 !important;
}

body.hta-watch-faux-fs-open .watch-section .container,
body.hta-watch-faux-fs-open .watch-shell,
body.hta-watch-faux-fs-open .watch-player-wrap {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#htaWatchRoot.is-faux-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  width: 100vw;
  height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

#htaWatchRoot.is-faux-fullscreen .hta-watch-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #000;
}

#htaWatchRoot.is-faux-fullscreen #htaWatchPlayer {
  position: relative;
  inset: auto;
  width: min(100vw, calc(100dvh * 16 / 9));
  height: min(100dvh, calc(100vw * 9 / 16));
  max-width: 100vw;
  max-height: 100dvh;
}

#htaWatchRoot.is-faux-fullscreen #htaWatchPlayer iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

#htaWatchRoot.is-faux-fullscreen .hta-watch-bottom {
  padding: 0 16px max(16px, env(safe-area-inset-bottom));
}

#htaWatchRoot.is-faux-fullscreen,
#htaWatchRoot.is-faux-fullscreen .hta-watch-stage,
#htaWatchRoot.is-faux-fullscreen .hta-watch-bottom {
  border-radius: 0 !important;
}