@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

body {
  font-family: "Montserrat", sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
  background: black;
}

/* Educational Disclaimer Styles */
.educational-disclaimer {
  background: #ff6b35;
  color: white;
  text-align: center;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  z-index: 20;
  line-height: 1.2;
}

.disclaimer-text {
  display: block;
  max-width: 100%;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .educational-disclaimer {
    font-size: 11px;
    padding: 6px 8px;
  }

  .disclaimer-text {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .educational-disclaimer {
    font-size: 10px;
    padding: 5px 6px;
  }
}

/* Footer Educational Notice Styles */
.footer-educational-notice {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.footer-educational-title {
  color: #ff6b35;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.footer-educational-text {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.footer-educational-disclaimer {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-copyright {
  font-size: 1rem;
  color: #999;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .footer-educational-notice {
    padding: 15px;
    margin-bottom: 15px;
  }

  .footer-educational-title {
    font-size: 1.6rem;
  }

  .footer-educational-text {
    font-size: 1.2rem;
  }

  .footer-educational-disclaimer {
    font-size: 1rem;
  }

  .footer-copyright {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .footer-educational-notice {
    padding: 12px;
    margin-bottom: 12px;
  }

  .footer-educational-title {
    font-size: 1.4rem;
  }

  .footer-educational-text {
    font-size: 1.1rem;
  }

  .footer-educational-disclaimer {
    font-size: 0.9rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}

html {
  font-size: 62.5%;
  color: white;
}

/* Mobile-first responsive font size */
@media (max-width: 768px) {
  html {
    font-size: 50%;
  }

  body {
    overflow-x: hidden;
  }
}

a {
  color: white;
}

a:active,
a:link,
a:visited {
  text-decoration: none;
}

button {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  min-height: 44px; /* Minimum touch target size for mobile */
}

:root {
  --primary-color: #e50914;
}

.primary--btn {
  background-color: var(--primary-color);
  line-height: normal;
  padding: 0.7rem 1.7rem;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 0.3rem;
  text-transform: capitalize;
  min-height: 44px; /* Minimum touch target size */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.primary--btn:hover {
  background-color: #b8070f;
}

.primary--btn:active {
  transform: scale(0.98);
}

.section__divider {
  border: 6px solid #222;
}

.header {
  position: absolute;
  height: 10rem;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
}

@media (max-width: 768px) {
  .header {
    height: 60px;
    padding: 0 20px;
  }
}

.header__logo {
  display: block;
  width: 15rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .header__logo {
    width: 100px;
    padding: 0;
  }

  .sign__in__btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.header__logo img {
  height: 100%;
  width: 100%;
}

.banner__section {
  position: relative;
  height: 100vh;
}

.banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 5;
}

.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.4) 75%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 10;
}

.banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 15;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 0 5vw;
}

@media (max-width: 768px) {
  .banner__content {
    padding: 0 20px;
    top: 50%;
    width: 100%;
    max-width: none;
  }
}

.banner__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
}

.banner__subtitle {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin: 2rem 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .banner__title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .banner__subtitle {
    font-size: 1.8rem;
    margin: 1rem 0;
    line-height: 1.2;
  }

  .form__cta {
    font-size: 1.4rem;
    margin: 1rem 0;
    line-height: 1.3;
  }
}

.membership__form {
  display: grid;
  position: relative;
}

.membership__input__container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.membership__input {
  flex-basis: 100%;
  padding: 1rem;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  border: none;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .membership__input {
    font-size: 1.4rem;
    padding: 1.2rem 1rem;
  }

  .membership__btn {
    font-size: 1.6rem;
    padding: 1.2rem 2rem;
    margin-top: 1rem;
  }
}

.membership__input:focus {
  outline: none;
}

.membership__btn {
  justify-self: center;
  width: 100%;
  max-width: 20rem;
  padding: 1.5rem 3rem;
}

.membership__input__message {
  flex-basis: 100%;
  text-align: start;
  margin: 1rem 0;
  color: #ffa00a;
  font-size: 1.5rem;
  content: "";
}

.membership__placeholder {
  position: absolute;
  color: #8c8c8c;
  top: 50%;
  left: 1rem;
  z-index: 10;
  transform: translateY(-50%);
  font-size: 1.4rem;
  transition: all 0.3s ease-in-out;
}

.membership__input__container.on__focus .membership__placeholder {
  top: 1rem;
  font-size: 1.2rem;
}

.form__cta {
  font-size: 1.6rem;
  margin: 1rem 0;
  font-weight: 600;
}

.story__card {
  padding: 5rem 5vw;
  display: grid;
  grid-row-gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .story__card {
    padding: 3rem 20px;
    grid-row-gap: 1.5rem;
  }
}

.story__card__left {
  text-align: center;
}

.story__card__left h1 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.story__card__left h2 {
  font-size: clamp(1.6rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
}

.story__card__right {
  display: grid;
  place-items: center;
}

.tv__anime__container {
  width: min(30rem, 80vw);
  height: min(23.4rem, 60vw);
  position: relative;
}

@media (max-width: 768px) {
  .tv__anime__container {
    width: 280px;
    height: 200px;
  }

  .tv__anime {
    top: 0.5rem;
    left: 2.5rem;
    width: 20rem;
    height: 18rem;
  }
}

.tv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.tv__anime {
  position: absolute;
  top: 0.8rem;
  left: 4rem;
  width: 22.1rem;
  height: 21rem;
}

.download__container {
  position: relative;
}

.download__container img {
  width: 100%;
  height: 100%;
}

.download__animation__container {
  display: grid;
  grid-template-columns: 4rem 1fr 5rem;
  width: 60%;
  height: 8rem;
  padding: 1rem;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  background: black;
}

.download__animation__container .poster {
  height: 90%;
}
.download__animation__container .download__gif {
  height: 90%;
}

.download__animation__container .text__container .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.download__animation__container .text__container .downloading {
  font-size: 1.2rem;
  color: #0071eb;
}

.download__animation__container .text__container {
  padding-left: 2rem;
}

.kids__image {
  width: 100%;
}

.faq {
  padding: 7rem 5vw;
  max-width: 900px;
  margin: 0 auto;
  width: 90%;
}

@media (max-width: 768px) {
  .faq {
    padding: 4rem 20px;
    width: 100%;
  }

  .faq__title {
    font-size: 2.2rem;
  }

  .accordion__list {
    font-size: 1.6rem;
  }

  .accordion__question {
    --accordion-padding: 1.5rem;
    --accordion-right-padding: 4.5rem;
  }
}

.faq__title {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  line-height: 1.8;
}

.accordion__list {
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: grid;
  grid-row-gap: 1rem;
  font-size: 2rem;
}

.accordion {
  --accordion-padding: 1.8rem;
  --accordion-right-padding: 6rem;
}

.accordion__question {
  background-color: #303030;
  display: block;
  width: 100%;
  text-align: left;
  padding: var(--accordion-padding);
  padding-right: var(--accordion-right-padding);
  margin-bottom: 1px;
  font-size: inherit;
  position: relative;
  cursor: pointer;
}

.accordion__question:after {
  content: "+";
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: var(--accordion-right-padding);
  text-align: center;
  font-size: 3rem;
}

.accordion.active .accordion__question:after {
  content: "-";
}

.accordion__answer {
  background-color: #303030;
  padding: var(--accordion-padding);
  display: none;
}

.accordion.active .accordion__answer {
  display: block;
}

.footer {
  padding: 8rem 5vw 4rem;
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
}

@media (max-width: 768px) {
  .footer {
    padding: 4rem 20px 2rem;
    width: 100%;
  }

  .footer__link {
    font-size: 1.2rem;
  }
}

.footer__link__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}

.footer__link {
  font-size: 1.3rem;
  color: #757575;
  text-transform: capitalize;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__link.contact--link {
  display: inline-block;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .footer__link__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .membership__form {
    grid-template-columns: 70% 1fr;
  }

  .membership__input__message {
    grid-row: 2;
  }

  .membership__btn {
    justify-self: start;
  }

  .story__card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .story__card__left {
    text-align: left;
  }
}
