@font-face {
  font-family: Lato-regular;
  src: url(/assets/fonts/Lato-Regular.ttf) format("truetype");
}
@font-face {
  font-family: Lato-light;
  src: url(/assets/fonts/Lato-Light.ttf) format("truetype");
}

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

:root {
  --primary-color: #4891ff;
  --light-color: #f4f4f6;
  --dark-color: #111;
}

body {
  font-family: "Lato-regular";
  font-size: 14px;
  line-height: 1.5;
  /* background-color: #071021; */
  overflow-x: hidden;
  background-image: linear-gradient(rgba(6, 10, 20, 0.7), rgba(6, 10, 20, 0.7)),
    url("/assets/images/death-stranding-main-poster.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--light-color);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 20, 0.85);
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: var(--light-color);
  font-size: 1.1rem;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* ! Navbar section */
.navbar {
  background: rgba(255, 255, 255, 0.12);
  padding: 14px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1002;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*? logo  */
.navbar__container--logo img {
  width: 150px;
  height: auto;
  margin-left: 15px;
}

.navbar .navbar__container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 1003;
  gap: 90px;
}

.navbar .main-menu ul {
  display: flex;
}

.main-menu a {
  text-decoration: none;
  color: var(--light-color);
  font-size: 1.1rem;
  margin: 0 15px;
}

.main-menu ul {
  list-style: none;
}

.navbar ul li a {
  padding: 10px 20px;
  display: block;
  font-weight: 600;
  transition: 0.5s;
}

.navbar ul li a:hover {
  color: var(--primary-color);
  opacity: 0.8;
}

/*? login icon  */
.navbar ul li a i {
  margin-right: 10px;
}

.navbar ul li:last-child a {
  margin-left: 40px;
  background: var(--light-color);
  color: var(--dark-color);
  border-radius: 13px;
}

.navbar ul li:last-child a:hover {
  color: var(--primary-color);
}

/* ! Hero section */
.hero {
  height: 90vh;
  margin-top: 80px;
  margin-bottom: 50px;
  position: relative;
}

.hero .hero__container {
  max-width: 70%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: start;
  padding: 10px 15px;
  background-image: linear-gradient(
      rgba(6, 10, 20, 0.55),
      rgba(6, 10, 20, 0.35)
    ),
    url("/assets/images/death-stranding-solo-baby.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 13px;
  overflow: hidden;
}

.hero .hero__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 20, 0.45) 0%,
    rgba(6, 10, 20, 0.65) 100%
  );
  pointer-events: none;
}

.hero-heading {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 40px 200px 20px 0;
}

.hero-content {
  width: 70%;
  position: relative;
  z-index: 2;
  color: var(--light-color);
}

.hero-text {
  width: 49.5%;
  text-align: justify;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Lato-light";
}

.hero-btn {
  display: inline-block;
  padding: 13px 20px;
  margin: 0 8px;
  background: var(--light-color);
  color: #333;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: 0.5s;
  box-shadow: 0 6px 18px rgba(3, 10, 30, 0.4);
}

.hero-btn:hover {
  opacity: 0.8;
}

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

/* ! Video section */
.video {
  background: rgba(0, 0, 0, 0.6);
  color: var(--light-color);
  padding: 20px 0 40px;
}

.video__container {
  max-width: 800px;
  height: 70%;
  margin: 50px auto 100px;
  padding: 0 15px;
}

.video-heading {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--light-color);
}

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

.video .video-preview {
  margin-bottom: 20px;
  width: 100%;
  max-width: 920px;
  border-radius: 12px;
  display: block;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-content a {
  position: relative;
  display: inline-block;
  overflow: visible;
}

/*? play svg  */
.video-content > a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 3;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  pointer-events: none;
}

.video-content > a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon points='5,3 19,12 5,21' fill='%23ffffff' /></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 4;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
  transition: transform 180ms ease, filter 180ms ease;
  pointer-events: none;
}

.video-content > a:hover::before {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.1);
}

.video-content > a:hover::after {
  transform: translate(-50%, -50%) scale(1.05);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.55));
}

/* ? video preview  */
.video-content > a:hover::before {
  background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0) 100%
    ),
    rgba(255, 255, 255, 0.1);
  background-blend-mode: overlay;
}

.video-content a:hover .video-preview {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65);
}

.video-content a .video-preview {
  display: block;
  filter: brightness(0.62) contrast(0.95) saturate(0.95);
  transition: filter 240ms ease, transform 240ms ease;
}

.video-content a:hover .video-preview {
  filter: brightness(0.86) contrast(1) saturate(1);
}

/*! Testimonials */
.testimonials {
  padding: 40px 0;
  background: rgba(17, 17, 17, 0.48);
  color: var(--light-color);
}

.testimonials__container {
  max-width: 70%;
  margin: 0 auto;
  padding: 0 15px 100px;
}

.testimonials-heading {
  width: 700px;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px auto;
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--light-color);
}

.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonials__card p:nth-child(2) {
  margin-top: 30px;
  font-weight: bold;
}

.testimonials__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: var(--light-color);
  padding: 20px;
  transition: transform 0.3s ease;
}

.testimonials__card:hover {
  transform: translateY(-5px);
}

.testimonials__card p,
.testimonials__card h4 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.95);
}

/*! Pricing */
.pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
  background: transparent;
}

.pricing__container {
  max-width: 800px;
  margin: 50px auto 100px;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.pricing__container--header {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-card-heading {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing .pricing-subheading {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 20px 0 10px;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
  color: var(--light-color);
  position: relative;
  z-index: 2;
}

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

.pricing-card p,
.pricing-card h4 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.95);
}

.pricing-card-subheading {
  margin-top: 30px;
}

.pricing .pricing-card-price {
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.pricing ul {
  margin: 30px 0;
}

.pricing ul li {
  margin-bottom: 20px;
}

.pricing ul li i {
  margin-right: 10px;
}

.pricing .pricing-footer {
  margin: 30px 0;
  text-align: justify;
  opacity: 0.5;
}

.price {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 20px;
}

.pricing-card__btn {
  display: inline-block;
  padding: 13px 20px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: 0.5s;
  display: block;
  width: 100%;
  background: var(--primary-color);
  color: var(--light-color);
}

.pricing-card__btn:hover {
  opacity: 0.8;
}

.expensive {
  background: rgba(0, 0, 0, 0.6);
  color: var(--light-color);
}

/*! FAQ */
.faq {
  padding: 40px 0;
  background: transparent;
  background: rgba(0, 0, 0, 0.6);
  color: var(--light-color);
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq__header--section {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.faq .faq-group {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.faq .faq-group .faq-group-header {
  padding: 20px 0;
  margin-bottom: 15px;
  position: relative;
}

.faq .faq-group .faq-group-header h4 {
  font-weight: 600;
  width: 95%;
}

.faq .faq-group .faq-group-header i {
  position: absolute;
  right: 0;
  top: 35px;
  font-size: 1.3rem;
  cursor: pointer;
}

.faq .faq-group .faq-group-body {
  display: none;
}

.faq .faq-group .faq-group-body.open {
  display: block;
}

.faq-group-body {
  position: relative;
  z-index: 2;
}

.faq ul.faq-menu {
  max-width: 400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark-color);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.faq ul.faq-menu li {
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
}

.faq ul.faq-menu li.active {
  background: var(--primary-color);
  color: #fff;
}

.faq-question {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 20px 0 10px;
}

.faq-content {
  margin: 20px 0 100px;
}

/*! Footer */
.footer {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  position: relative;
  z-index: 2;
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.footer__card:hover {
  transform: translateY(-5px);
}

.footer__card p,
.footer__card h4 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.95);
}

.footer__btn {
  display: inline-block;
  padding: 13px 20px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: 0.5s;
  background: var(--primary-color);
  color: #fff;
  display: block;
  width: 100%;
}

.footer h4 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.footer ul li {
  line-height: 2.5;
}

.footer a {
  color: #ccc;
}

.footer i {
  font-size: 1.5rem;
  margin-right: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.footer-grid img {
  width: 30%;
  height: auto;
}

.footer .card {
  margin: 20px 30px 30px 0;
}

.footer input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 20px 0;
}

.footer__copyright {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 60px 0 0;
  padding: 40px 0 0;
  text-align: center;
  border-top: 1px solid #222222;
}

.footer__contact {
  max-width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  justify-content: center;
}

/* .footer__contact img {
  width: 60%;
  margin-bottom: 30px;
} */

.footer__contact {
  margin-bottom: 14px;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
  /* Navbar */
  .navbar .navbar__container {
    justify-content: space-between;
  }

  .navbar .main-menu ul {
    display: none;
  }

  .navbar ul li:last-child a {
    margin-left: 0;
    margin-top: 10px;
  }

  /* Hero Section */
  .hero {
    margin-top: 40px;
    height: auto;
  }

  .hero .hero__container {
    max-width: 90%;
    min-height: auto;
    padding: 20px;
    background-image: linear-gradient(
        rgba(6, 10, 20, 0.55),
        rgba(6, 10, 20, 0.35)
      ),
      url("/assets/images/death-stranding-Lea.jpg");
    height: 500px;
  }

  .hero-heading {
    font-size: 1.2rem;
    margin: 20px 0;
  }

  .hero-content {
    font-size: 0.9rem;
    width: 100%;
    margin-top: 50%;
  }

  .hero-text {
    width: 100%;
  }

  .hero-buttons {
    display: flex;
    gap: 5px;
  }

  .hero-btn {
    width: 30%;
    margin: 1px 4px;
    display: inline;
    padding: 8px 12px;
    font-weight: bold;
    font-size: 0.7rem;
  }

  /* Video Section */
  .video__container {
    max-width: 90%;
    margin: 30px auto;
  }

  .video-heading {
    font-size: 1.3rem;
  }

  /* Testimonials */
  .testimonials__container {
    max-width: 90%;
  }

  .testimonials-heading {
    width: 100%;
    font-size: 1.3rem;
  }

  .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Pricing */
  .pricing .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing__container {
    max-width: 90%;
  }

  .pricing__container--header {
    font-size: 2rem;
  }

  .pricing .pricing-subheading {
    font-size: 1rem;
  }

  /* FAQ */
  .faq__container {
    max-width: 90%;
  }

  .faq__header--section {
    font-size: 1.5rem;
  }

  .faq ul.faq-menu {
    gap: 10px;
    font-size: 0.8rem;
  }

  /* Footer */
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }

  .footer__contact {
    width: 100%;
  }

  /* .footer__contact img {
    width: fit-content;
  } */

  .footer__card {
    width: 100%;
  }
}

/* Small phone screens */
@media screen and (max-width: 480px) {
  .hero-heading {
    font-size: 1rem;
  }

  .hero-content {
    font-size: 0.9rem;
    width: 100%;
    margin-top: 45%;
  }

  .hero-btn {
    padding: 4px 7px;
  }

  .video-heading,
  .testimonials-heading,
  .pricing__container--header {
    font-size: 1.5rem;
  }

  .navbar__container--logo img {
    width: 120px;
  }

  .footer h4 {
    font-size: 1rem;
  }
}
