* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 100%);
  color: white;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  transition: background 0.3s ease;
}

body.light {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  color: #333;
}

/* Light theme component overrides for better contrast and polish */
body.light .navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(20, 20, 20, 0.06);
}

body.light .navbar__nav__items,
body.light .navbar,
body.light .dropdown__container,
body.light .language__drop__down,
body.light .signin__button,
body.light .theme-toggle {
  color: #222;
}

body.light .dropdown__container {
  border: 1px solid rgba(34,34,34,0.08);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 18px rgba(34,34,34,0.06);
}

body.light .language__drop__down {
  color: #222;
}

body.light .language__drop__down option {
  background-color: #fff;
  color: #222;
}

/* Keep primary CTAs vivid in light mode */
body.light .primary__button {
  box-shadow: 0 6px 20px rgba(220, 3, 15, 0.15);
}

/* Signin button: softer in light */
body.light .signin__button {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(34,34,34,0.08);
  color: #222;
  box-shadow: 0 6px 18px rgba(34,34,34,0.04);
}

body.light .theme-toggle {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(34,34,34,0.06);
  color: #444;
}

/* Hero: reduce dark overlay in light mode so image reads as warm/bright */
body.light .hero__bg__overlay {
  background-image: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0.8) 100%
  );
}

body.light .hero__title,
body.light .hero__subtitle,
body.light .hero__description {
  text-shadow: none;
  color: #111;
}

/* Feature blocks: lighter backgrounds and subtle borders */
body.light .feature {
  border-top-color: rgba(220,3,15,0.9);
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(250,250,250,1) 100%);
}

body.light .feature__title {
  background: linear-gradient(135deg, #222 0%, #444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FAQ: convert dark panels to light cards */
body.light .FAQ__title {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(34,34,34,0.06);
  color: #111;
}

body.light .FAQ__visible {
  background: #ffffff;
  border-top: 2px solid rgba(220,3,15,0.95);
  color: #222;
}

/* Modal / transient messages */
body.light .nc-modal {
  background: #ffffff;
  color: #111;
  box-shadow: 0 12px 40px rgba(34,34,34,0.12);
}

body.light .nc-temp-message {
  background: rgba(34,34,34,0.9);
  color: #fff;
}

/* Smooth color transitions for theme switching */
* {
  transition: color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 3% 5%;
  z-index: 10;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.navbar__brand {
  width: 100px;
  height: 100%;
}

.brand__logo {
  width: 100%;
  height: 100%;
}

.language__drop__down {
  background: transparent;
  border: none;
  color: white;
}

.language__drop__down:focus {
  outline: none;
}

.language__drop__down option {
  background-color: black;
}

.dropdown__container {
  border: 1px solid white;
  padding: 0.4rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.dropdown__container:hover {
  border-color: #dc030f;
  background: rgba(220, 3, 15, 0.1);
  box-shadow: 0 4px 15px rgba(220, 3, 15, 0.2);
}

.signin__button {
  background: linear-gradient(135deg, #dc030f 0%, #ff0a16 100%);
  border: 1px solid #dc030f;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 3, 15, 0.3);
}
.theme-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.signin__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 3, 15, 0.5);
}

.navbar__nav__items {
  display: flex;
  gap: 10px;
}

.hero__bg__image__container {
  width: 100%;
  height: 80vh;
}

.hero__bg__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 80vh;
  background: rgba(0, 0, 0, 0.4);
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero__card {
  position: absolute;
  top: 20%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__title {
  font-weight: 700;
  font-size: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

.hero__subtitle,
.hero__description {
  font-weight: 400;
  font-size: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__description {
  margin: 0 50px;
}

/* Redesigned hero: stronger hierarchy and prominent CTA */
.hero__card {
  max-width: 720px;
  text-align: left;
  left: 5%;
}

.hero__title {
  font-size: 2.6rem;
  line-height: 1.05;
}

.hero__subtitle { font-size: 1.2rem; }
.hero__description { font-size: 1rem; color: rgba(255,255,255,0.9); }

.hero__cta-row { display:flex; gap:12px; margin-top:12px; align-items:center; }

/* Catalog & content rows */
.catalog__section { padding: 2rem 1rem; background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 100%); }
.catalog__controls { display:flex; gap:12px; align-items:center; padding:0 1rem 1rem 1rem; }
.catalog__controls input[type="search"] { flex:1; padding:10px 12px; border-radius:6px; border:1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.45); color:#fff; }
.catalog__controls select { padding:10px; border-radius:6px; border:1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.45); color:#fff; }
.catalog__grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap:16px; padding: 0 1rem; }
.catalog__card { background: #111; border-radius:6px; overflow:hidden; color:#fff; box-shadow: 0 6px 20px rgba(0,0,0,0.6); display:flex; flex-direction:column; }
.catalog__card img { width:100%; height:240px; object-fit:cover; }
.catalog__card .meta { padding:10px; display:flex; justify-content:space-between; align-items:center; gap:8px; }
.catalog__card .meta .title { font-size:14px; font-weight:600; }
.catalog__card .meta .actions button { background:linear-gradient(135deg,#dc030f,#ff0a16); border:none; color:#fff; padding:6px 8px; border-radius:4px; cursor:pointer; }

/* Content rows (grouped by genre) */
.content__rows__container { padding: 1rem 0; }
.content-row { padding: 8px 1rem; }
.row__title { color:#fff; font-size:1.2rem; margin: 0 0 8px 8px; }
.row__track-wrap { position:relative; }
.row__inner { display:flex; gap:10px; overflow-x:auto; padding:8px 8px; -webkit-overflow-scrolling:touch; scroll-behavior:smooth; }
.row-card { min-width:140px; width:140px; flex:0 0 auto; border-radius:6px; overflow:hidden; background:#111; transform-origin:center left; transition:transform 220ms ease, box-shadow 220ms ease; }
.row-card img { width:100%; height:200px; object-fit:cover; display:block; }
.row-card .caption { padding:6px; color:#fff; font-size:13px; }
.row-card.is-hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(0,0,0,0.6); z-index:5; }

/* row arrows */
.row__arrow { position:absolute; top:50%; transform:translateY(-50%); width:44px; height:64px; border-radius:4px; background: linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15)); color:#fff; border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:10; opacity:0; transition:opacity 0.18s ease; }
.row__arrow--left { left:8px; }
.row__arrow--right { right:8px; }
.row__track-wrap:hover .row__arrow { opacity:1; }

@media (min-width: 768px) {
  .row-card { min-width:180px; width:180px; }
  .row-card img { height:240px; }
}

/* Playback modal */
.nc-modal-overlay.video-modal { background: rgba(0,0,0,0.85); }
.nc-modal.video-modal { width: min(960px, 95%); padding:0; background: transparent; box-shadow: none; }
.nc-modal.video-modal .video-wrap { background:#000; border-radius:8px; overflow:hidden; }
.nc-modal.video-modal video { width:100%; height:auto; display:block; }
.nc-modal.video-modal .video-meta { padding:12px; background:#111; color:#fff; }


.email__input {
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  padding-left: 7px;
}

.email__label {
  color: rgba(255,255,255,0.78);
  position: absolute;
  top: 28%;
  left: 2%;
  transition: 0.5s;
}

.email__form__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.form__container {
  background-color: white;
  width: 90%;
  height: 50px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.form__container:focus-within {
  box-shadow: 0 6px 25px rgba(220, 3, 15, 0.3);
  transform: translateY(-2px);
}

.email__input:focus + .email__label {
  top: 0.2rem;
  font-size: 10px;
}

.email__input:not(:placeholder-shown).email__input:not(:focus) + .email__label {
  top: 0.2rem;
  font-size: 10px;
}

.email__input:focus-visible {
  outline: none;
}

.primary__button {
  background: linear-gradient(135deg, #dc030f 0%, #ff0a16 100%);
  border: 1px solid #dc030f;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 3, 15, 0.3);
  font-weight: 500;
}

.primary__button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(220, 3, 15, 0.5);
}

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

.feature {
  border-top: 8px solid #dc030f;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 3, 15, 0.05) 0%, rgba(220, 3, 15, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature:hover::before {
  opacity: 1;
}

.feature__details {
  text-align: center;
}

.feature__title {
  font-size: 25px;
  font-weight: 600;
  margin: 10px 0;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.feature__sub__title {
  font-size: 15px;
  font-weight: 400;
}

.feature__image__container {
  width: 100%;
  position: relative;
}

.feature__image {
  width: 100%;
}

.feature__backgroud__video__container {
  position: absolute;
  width: 100%;
  top: 20%;
  left: 13%;
  height: 100%;
  max-width: 73%;
  max-height: 54%;
  z-index: -2;
}

.feature__backgroud__video {
  width: 100%;
}

.feature__2__poster__container {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 16em;
  display: flex;
  align-items: center;
  background-color: black;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  height: 60px;
  padding: 0.25rem 0.6rem;
  gap: 15px;
}

.poster__container {
  width: 20%;
}

.poster {
  width: 100%;
  height: 100%;
}

.poster__details {
  width: 60%;
}

.poster__details > h4 {
  font-size: 13px;
  font-weight: 500;
}

.poster__details > h6 {
  font-size: 12px;
  font-weight: 400;
  color: rgb(63, 63, 246);
}

.download__gif__container {
  width: 20%;
  height: 100%;
}

.gif {
  width: 100%;
  height: 100%;
}

.feature__3__backgroud__video__container {
  max-width: 63%;
  max-height: 47%;
  z-index: -2;
  top: 9%;
  left: 19%;
}

.FAQ__accordian {
  width: 100%;
  transition: all 0.3s ease;
}

.FAQ__accordian:hover {
  transform: translateX(5px);
}

.FAQ__title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 18px;
  background: linear-gradient(135deg, #2a2a2a 0%, #303030 100%);
  border: 1px solid #404040;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-weight: 500;
}

.FAQ__title:hover {
  background: linear-gradient(135deg, #303030 0%, #3a3a3a 100%);
  border-color: #dc030f;
  box-shadow: 0 4px 15px rgba(220, 3, 15, 0.2);
}

.FAQ__visible {
  background: linear-gradient(135deg, rgba(48, 48, 48, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%);
  border-top: 2px solid #dc030f;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  border-radius: 0 0 4px 4px;
}

.FAQ__visible > p {
  margin: 1rem;
}

.FAQ__list__container {
  border-top: 8px solid #dc030f;
  padding: 2rem 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
}

.FAQ__heading {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  margin: 1rem 3rem;
  background: linear-gradient(135deg, #dc030f 0%, #ff0a16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.FAQ__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.FAQ__get__started__email {
  text-align: center;
}

.FAQ__get__started__email > h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 2rem 0;
}

footer {
  border-top: 8px solid #dc030f;
  padding: 2rem 1rem;
  color: #757575;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  transition: all 0.3s ease;
}

.footer__row__2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.footer__row__1 > h4 {
  font-size: 15px;
  font-weight: 500;
}

.footer__row__3 > .dropdown__container {
  width: fit-content;
  border: 1px solid #757575;
  color: #757575;
}

.footer__row__3 > .dropdown__container > .language__drop__down {
  color: #757575;
}

@media (min-width: 768px) {
  .hero__bg__image__container {
    height: 100vh;
  }

  .hero__bg__overlay {
    height: 100vh;
  }

  .hero__card {
    top: 40%;
    left: 30%;
    transform: translate(-20%, -20%);
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle,
  .hero__description {
    font-size: 1.3rem;
  }

  .feature {
    padding: 4rem;
  }

  .feature__title {
    font-size: 35px;
  }

  .feature__sub__title {
    font-size: 20px;
  }

  .feature__2__poster__container {
    max-width: 26em;
    height: 85px;
  }

  .poster__container {
    width: 15%;
  }

  .download__gif__container {
    width: 3rem;
    height: 3rem;
  }

  .poster__details > h4 {
    font-size: 18px;
  }

  .poster__details > h6 {
    font-size: 14px;
  }

  .FAQ__title {
    font-size: 20px;
  }

  .FAQ__heading {
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .FAQ__list {
    padding: 1rem 5rem;
  }

  .FAQ__get__started__email {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(15%);
  }
}

/* Responsive navbar and small screens tweaks */
@media (max-width: 767px) {
  .navbar {
    padding: 1rem;
    align-items: center;
  }
  .navbar__nav__items {
    gap: 8px;
    flex-wrap: wrap;
  }
  .hero__card {
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1rem;
  }
  .hero__title {
    font-size: 1.6rem;
  }
  .hero__subtitle, .hero__description {
    font-size: 0.95rem;
  }
  .form__container { width: 95%; }
}

@media (min-width: 1024px) {
  .navbar {
    padding: 2% 5%;
  }

  .navbar__brand {
    width: 150px;
  }

  .signin__button {
    padding: 10px 20px;
    font-size: 18px;
  }

  .dropdown__container {
    padding: 10px 5px;
  }

  .navbar__nav__items {
    gap: 30px;
  }

  .hero__card {
    top: 50%;
    left: 5%;
    transform: translate(0%, -50%);
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__subtitle,
  .hero__description {
    font-size: 1.2rem;
  }

  .email__form__container {
    flex-direction: row;
  }

  .form__container {
    width: 50%;
  }

  .primary__button {
    padding: 0.8rem 1.5rem;
  }

  .feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .feature__details {
    text-align: left;
    padding: 0 6rem;
  }

  .feature__title {
    font-size: 50px;
  }

  .feature__sub__title {
    font-size: 25px;
  }

  .feature__image__container {
    max-width: 500px;
  }

  .feature:nth-child(even) {
    flex-direction: row-reverse;
  }

  .feature__2__poster__container {
    max-width: 20em;
    height: 100px;
    padding: 1rem;
  }

  .poster__container {
    width: 20%;
  }

  .FAQ__list {
    padding: 1rem 25rem;
  }

  .FAQ__get__started__email {
    transform: translateX(16%);
  }

  footer {
    padding: 2rem 20rem;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
  }

  .footer__row__2 {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .footer__row__1,
  .footer__row__3,
  .footer__row__4 {
    align-self: flex-start;
  }
}

@media (min-width: 1254px) {
}

/* Lightweight styles for JS-driven UI (modal, inline errors, small accessibility tweaks) */
.nc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.nc-modal {
  background: #111;
  color: #fff;
  padding: 1.25rem;
  width: 320px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  font-family: 'Poppins', sans-serif;
}
.nc-input-error {
  color: #ffb3b3;
  font-size: 13px;
  margin-top: 6px;
}

/* Minor UX improvements */
.FAQ__title { cursor: pointer; }
.signin__button, .primary__button { cursor: pointer; }
.FAQ__title:focus { outline: 2px solid rgba(255,255,255,0.12); }

/* Netflix-like modal and form styles */
.nc-modal-overlay { background: rgba(0,0,0,0.75); }
.nc-modal { max-width: 420px; width: 92%; padding: 28px; border-radius: 6px; }
.nc-modal .nc-close { background: transparent; border: none; color: #e6e6e6; font-size: 20px; cursor: pointer; }
.nc-modal h3 { margin: 0 0 8px 0; font-size: 20px; font-weight: 600; }
.nc-modal p { margin: 0 0 12px 0; color: #b3b3b3; font-size: 14px; }
.nc-signin-form input[type="email"], .nc-signin-form input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 4px;
  border: 1px solid #333;
  background: #141414;
  color: #fff;
  font-size: 14px;
}
.nc-signin-form input::placeholder { color: #777; }
.nc-signin-form .nc-actions { display:flex; gap:10px; justify-content:flex-end; margin-top:6px; }
.nc-btn { display:inline-block; padding:10px 16px; border-radius:4px; font-weight:600; border:0; cursor:pointer; }
.nc-btn.secondary { background:#333; color:#fff; }
.nc-btn.primary { background:#e50914; color:#fff; }

/* Transient message (bottom-right) */
.nc-temp-message {
  position: fixed; right: 16px; bottom: 16px; background: #111; color: #fff;
  padding: 10px 14px; border-radius: 6px; z-index: 99999; box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  font-family: 'Poppins', sans-serif; transition: opacity .35s ease;
}

/* Light theme overrides */
body.light {
  background: #f6f6f6;
  color: #111;
}
body.light .navbar { background: transparent; }
body.light .dropdown__container { border-color: rgba(0,0,0,0.12); background: rgba(255,255,255,0.6); }
body.light .signin__button { background: #e50914; color: #fff; border-color: #e50914; }
body.light .hero__bg__overlay { background-image: linear-gradient(to top, rgba(0,0,0,0.6) 0, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 100%); }
body.light .feature__details, body.light .FAQ__title, body.light footer { color: #111; }
body.light .form__container { background: #fff; }

/* Expand light theme to cover more elements */
body.light, body.light * { transition: background-color 250ms ease, color 250ms ease; }
body.light .hero__card, body.light .hero__title, body.light .hero__subtitle, body.light .hero__description {
  color: #111;
}
body.light .hero__bg__overlay {
  background-image: linear-gradient(
    to top,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.85) 100%
  );
}
body.light .hero__bg__image { filter: brightness(0.95) saturate(0.95); }
body.light .form__container { background: #fff; border: 1px solid rgba(0,0,0,0.06); }
body.light .email__label { color: #666; }
body.light .primary__button { background: #e50914; border-color: #e50914; color: #fff; }
body.light .feature { background: transparent; }
body.light .feature__image { filter: none; }
body.light footer { background: transparent; color: #444; }
body.light .footer__row__2 p { color: #555; }

/* Improve visibility of inputs in light theme */
body.light input, body.light textarea, body.light select { background: #fff; color: #111; border-color: rgba(0,0,0,0.09); }

/* Slightly increase specificity where needed */
body.light .FAQ__title { background: #f0f0f0; border-color: #e6e6e6; }

/* Feedback floating button */
.nc-feedback-btn {
  position: fixed; left: 16px; bottom: 16px; z-index: 99999; background: #e50914; color: #fff;
  border: none; padding: 10px 12px; border-radius: 24px; box-shadow: 0 6px 18px rgba(0,0,0,0.3); cursor: pointer; font-weight:600;
}

.nc-feedback-modal .nc-modal { max-width: 520px; }
.nc-feedback-modal .nc-signin-form textarea { min-height: 120px; resize: vertical; }

@media (min-width: 768px) {
  .nc-modal { width: 420px; }
}
