@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --font-open-sans: "Open Sans", sans-serif;
  --font-bebas-neue: "Bebas Neue", sans-serif;
}
/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-open-sans);
  background-color: #000;
  color: #333;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1 {
  font-family: var(--font-bebas-neue);
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 100%;
}
h2 {
  font-family: var(--font-bebas-neue);
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
}
h3 {
  font-family: var(--font-bebas-neue);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}
.body {
  font-family: var(--font-open-sans);
  font-size: 18px;
}
.sub-text {
  font-family: var(--font-open-sans);
  font-size: 14px;
}
.main-button {
  font-family: var(--font-open-sans);
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  color: #000;
  border: none;
  border-radius: 3px;
  background: linear-gradient(#ffb548, #f3af34);
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-wrap: nowrap;
}
.main-button:hover {
  opacity: 0.8;
}
.navigation {
  font-family: var(--font-open-sans);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.container {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
}

/* HEADER */
header {
  height: 100vh;
  background: radial-gradient(
      circle at center -2000px,
      rgba(255, 3, 3, 0) 83%,
      #000 97%
    ),
    url(img/bg1.jpg) no-repeat center center/cover;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo img {
  width: 55px;
}
header nav {
  display: flex;
  gap: 50px;
}
header nav a {
  color: #fff;
  transition: color 0.2s ease;
}
header nav a:hover {
  color: #ffb548;
}
header .right {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .right .lang {
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  border-right: 1px solid #ffffff75;
  padding-right: 20px;
  line-height: 30px;
}
header .right img {
  width: 30px;
  border-radius: 50%;
  cursor: pointer;
}

header .title {
  text-align: center;
  color: white;
  margin-top: 150px;
}
header button {
  margin-top: 40px;
}
header button span {
  border-left: 1px solid #000000b0;
  padding-left: 10px;
  margin-left: 10px;
}

/* ABOUT */
#about {
  padding: 120px 0;
  color: #fff;
  background: radial-gradient(
      ellipse at 45%,
      rgba(255, 3, 3, 0) 35%,
      rgb(0, 0, 0) 80%
    ),
    url(img/bg2.jpg) no-repeat center center/cover;
}
#about .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
#about .left {
  width: 50%;
}
#about .left h3 {
  margin-top: 40px;
}
#about .left > div {
  display: flex;
  justify-content: end;
  margin-top: 50px;
}
#about .left > div > div {
  width: 364px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: justify;
}
#about .left span {
  position: relative;
  display: inline-block;
  z-index: 0;
}
#about .left span::before {
  content: "";
  display: inline-block;
  width: 110px;
  height: 6px;
  background-color: #f3af34;
  position: absolute;
  bottom: 3px;
  z-index: -1;
}
#about .right {
  width: 50%;
  position: relative;
}
#about .right img {
  position: absolute;
  border-radius: 10px;
}
#about .right img:nth-child(1) {
  height: 540px ;
  z-index: 3;
}
#about .right img:nth-child(2) {
  height: 493px;
  z-index: 2;
  top: 23.5px;
  left: 100px;
}
#about .right img:nth-child(3) {
  height: 441px;
  top: 49.5px;
  left: 140px;
}

/* FEATURES */
#features {
  padding: 120px 0;
  color: #fff;
  /* height: 100vh; */
  position: relative;
  overflow: hidden;
}
#features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 70%,
      rgba(0, 0, 0, 0.149) 0%,
      rgba(0, 0, 0, 0.973) 60%
    ),
    url("img/bg3.jpg") no-repeat center center/cover;
  transform: scaleX(-1); /* gorizontal “ko‘zgu” */
  z-index: -1;
}
#features .container {
  display: flex;
  justify-content: end;
  align-items: center;
}
#features .wrapper {
  width: 40%;
}
#features h1 {
  margin-bottom: 50px;
}
#features > div div {
  margin-bottom: 20px;
}
#features > div div p {
  width: 350px;
}
#features h2 {
  color: #ffb548;
}

/* SYSTEM REQUIREMENTS */
#system {
  padding: 120px 0;
  color: #fff;
  background: radial-gradient(
      circle at 50%,
      rgba(255, 3, 3, 0) 15%,
      rgb(0, 0, 0) 45%
    ),
    url(img/bg4.png);
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: 20% 20%;
  text-align: center;
}
#system .content {
  text-align: left;
}
#system .content table {
  margin-top: 50px;
  width: 573px;
  border: 1px solid #9797976d;
  text-align: left;
  border-collapse: collapse;
}
#system .content table td {
  border: 1px solid #9797976d;
  padding: 10px 10px 30px;
}
#system .content table h3 {
  margin-bottom: 10px;
  color: #ffb548;
}

/* .specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 700px;
  margin-top: 50px;
}

.spec-item {
  padding: 20px;
  padding-bottom: 40px;
  border: 1px solid #333;
  border-collapse: collapse;
}

.spec-item h3 {
  margin: 0 0 10px;
  color: orange;
  font-size: 18px;
  text-transform: uppercase;
}

.spec-item p {
  margin: 0;
  font-size: 16px;
} */

/* PRESS QUOTES */
#quotes {
  padding: 120px 0;
  color: #fff;
  background: radial-gradient(
      ellipse at 45%,
      rgba(255, 3, 3, 0) 35%,
      rgb(0, 0, 0) 80%
    ),
    url(img/bg5.png) no-repeat center center/cover;
}
#quotes .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#quotes .wrapper .left {
  width: 437px;
}
#quotes .wrapper .left p {
  margin: 40px 0;
}
#quotes .wrapper .right {
  width: 50%;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
#quotes .quote {
  padding: 15px;
  background: #1d1d1de7;
  border-radius: 10px;
  width: 452px;
  position: relative;
}
#quotes .quote:first-child {
  transform: translateX(150px);
}
#quotes .quote:last-child {
  transform: translateX(70px);
}
#quotes .quote .top {
  display: flex;
  align-items: center;
  gap: 10px;
}
#quotes .quote .avatar {
  position: relative;
  margin-right: 20px;
  z-index: 1;
}
#quotes .quote .avatar::after {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffb548, #f3af34);
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: -1;
}
#quotes .quote .top img {
  width: 60px;
  height: 60px;
}
#quotes .quote h3 {
  margin-bottom: -10px;
  color: #ffb548;
}
#quotes .quote i {
  font-style: normal;
  color: #7b7b7be3;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
  position: absolute;
  right: 20px;
  top: 20px;
}
#quotes .quote i:hover {
  color: #ffb548;
}
#quotes .quote span {
  font-size: 14px;
  color: #7b7b7be3;
}
#quotes .quote p {
  margin-top: 20px;
  font-size: 16px;
}

/* SUBSCRIBE */
#subscribe {
  padding: 120px 0 20px;
  position: relative;
  overflow: hidden;
}
#subscribe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 76%,
      rgba(255, 15, 15, 0) 15%,
      rgb(0, 0, 0) 30%
    ),
    url("img/detal.png") no-repeat;
  background-size: 75%;
  background-position: 300px 0;
  transform: scaleX(-1); /* gorizontal “ko‘zgu” */
  z-index: -1;
}

#subscribe .wrapper {
  display: flex;
  justify-content: end;
}
#subscribe .wrapper .content {
  width: 677px;
  color: #fff;
  margin-top: 50px;
}
#subscribe .wrapper .content p {
  margin: 30px 0;
}
#subscribe .wrapper .content form {
  display: flex;
  align-items: center;
  gap: 10px;
}
#subscribe .wrapper .content form input {
  width: 400px;
  padding: 18px;
  border: none;
  border-radius: 3px;
  background-color: #1d1d1de7;
  color: #ffb548;
}
#subscribe .wrapper .content form button {
  padding-left: 40px;
  padding-right: 40px;
}

/* FOOTER */
footer {
  margin-top: 180px;
}
footer .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #7b7b7be3;
  padding-bottom: 20px;
}
footer .top nav {
  display: flex;
  gap: 40px;
}
footer .top nav a {
  color: #fff;
  transition: all 0.2s ease;
}
footer .top nav a:hover {
  color: #ffb548;
}
footer .top .social {
  display: flex;
  align-items: center;
  gap: 30px;
}
footer .top .social i {
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
footer .top .social i:hover {
  color: red;
}

footer .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
footer .bottom .copyright {
  color: #7b7b7be3;
}
footer .bottom .links {
  color: white;
}

/* PHONE SCREEN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 50px;
    font-weight: 600;
  }
  h2 {
    font-size: 30px;
    font-weight: 600;
  }
  h3 {
    font-size: 22px;
    font-weight: 600;
  }
  /* HEADER */
  header nav {
    display: none;
  }

  /* ABOUT */
  #about {
    padding: 0 0 400px;
  }
  #about .wrapper {
    flex-direction: column;
  }
  #about .left {
    width: 100%;
  }
  #about .right {
    width: 100%;
  }
  #about .right img:nth-child(1) {
    height: 273px;
    top: 30px;
    left: 30px;
  }
  #about .right img:nth-child(2) {
    
    height: 252px;
    top: 43.5px;
    left: 100px;
  }
  #about .right img:nth-child(3) {
    
    height: 229px;
    top: 59.5px;
    left: 130px;
  }

  /* FEATURES */
  #features {
    padding: 80px 0;
  }
  #features::before {
    background: radial-gradient(
        circle at 80%,
        rgba(0, 0, 0, 0.344) 0%,
        rgba(0, 0, 0, 0.973) 60%
      ),
      url("img/bg3.jpg") no-repeat center center/cover;
  }
  #features .wrapper {
    width: 100%;
    padding-left: 50px;
  }
  #features > div div p {
    width: 100%;
  }
  #features h2 {
    line-height: 1;
  }

  /* SYSTEM REQUIREMENTS */
  #system {
    padding: 80px 0;
    color: #fff;
    background: radial-gradient(
        circle at 50%,
        rgba(0, 0, 0, 0.426) 15%,
        rgb(0, 0, 0) 45%
      ),
      url(img/bg4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 20%;
    text-align: center;
  }
  #system .content table {
    width: 100%;
  }

  /* PRESS QUOTES */
  #quotes {
    padding: 0;
    color: #fff;
    background: radial-gradient(
        ellipse at 45%,
        rgba(255, 3, 3, 0) 35%,
        rgb(0, 0, 0) 80%
      ),
      url(img/bg5.png) no-repeat center center/cover;
  }
  #quotes .wrapper {
    flex-direction: column;
  }
  #quotes .wrapper .left {
    width: 100%;
  }
  #quotes .wrapper .left p {
    margin: 20px 0;
  }
  #quotes .wrapper .right {
    width: 100%;
    margin-top: 40px;
  }
  #quotes .quote {
    width: 100%;
  }
  #quotes .quote:first-child {
    transform: translateX(0);
  }
  #quotes .quote:last-child {
    transform: translateX(0);
  }

  /* SUBSCRIBE */
  #subscribe {
    padding: 80px 0 20px;
  }
  #subscribe::before {
    background: radial-gradient(
        circle at 106%,
        rgba(255, 15, 15, 0) 35%,
        rgb(0, 0, 0) 50%
      ),
      url("img/detal.png") no-repeat;
    background-size: 160%;
    background-position: -200px 100px;
  }

  #subscribe .wrapper .content {
    width: 100%;
  }
  #subscribe .wrapper .content h3,
  #subscribe .wrapper .content h1 {
    padding-left: 80px;
  }
  #subscribe .wrapper .content p {
    margin: 30px 0;
    padding-left: 80px;
  }
  #subscribe .wrapper .content form {
    flex-direction: column;
    align-items: stretch;
    margin-top: 40px;
  }
  #subscribe .wrapper .content form input {
    width: 100%;
  }

  /* FOOTER */
  footer {
    margin-top: 100px;
  }
  footer .top {
    flex-direction: column;
  }
  footer .top nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .top nav a {
    font-size: 16px;
  }
  footer .top .social i {
    font-size: 30px;
  }
  footer .bottom {
    flex-direction: column;
    gap: 15px;
  }
}
