@import url("https://fonts.googleapis.com/css2?family=Black+Han+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap");

header {
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9950;
}
header > .left_area {
  margin-left: 30px;
  display: flex;
  gap: 10px;
}

header .left_area_logo_a {
  display: flex;
}

header .text_logo {
  width: 85px;
}

header .left_area .img_logo {
  height: 30px;
  margin-left: 20px;
}

header nav {
  display: flex;
  margin-left: 20px;
  align-items: center;

  a {
    color: white;
    font-size: 15px;
    padding: 10px 18px;
    transition: 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 400;
    position: relative;
  }
  a:hover {
    background-color: rgba(255, 255, 255, 0.199);
    color: var(--main_color);
  }
  a:after {
    position: absolute;
    opacity: 0;
    transition: 0.3s ease;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 100%;
    height: 3px;
    border-radius: 100px;
    background-color: var(--main_color);
  }
  a:hover:after {
    opacity: 1;
  }
}

header > .right_area {
  margin-right: 30px;
  align-items: center;
  display: flex;
  gap: 10px;
}

header .language_icon {
  cursor: pointer;
  align-items: center;
  padding: 0;
  display: flex;
}

header #now_play_btn {
  color: black;
  border-radius: 8px;
  background-color: var(--main_color);
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
  &:hover {
    background-color: #ff1f31;
  }
}

header .nikname {
  color: white;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  background-color: #1c2935;
  border-radius: 10px;
}

header .nikname .nikname_box {
  display: none;
  bottom: -170px;
  right: 0;
  position: absolute;
  width: 250px;
  height: 170px;
  background-color: #1c2935;
  border-top: 5px solid var(--main_color);
  flex-direction: column;
  align-items: center;
}

header .nikname:hover .nikname_box {
  display: flex;
}

header .nikname .nikname_box .nikname_box_btns {
  width: 90%;
  padding: 5px 5px;
  color: rgb(229, 229, 229);
  font-weight: 200;
  cursor: pointer;
  transition: 0.2s ease;
  background-color: #1c2935;
  border-radius: 5px;
  &:hover {
    background-color: rgb(68, 88, 107);
    color: white;
  }
}

header .nikname .nikname_box .nikname_box_nikname {
  width: 100%;
  color: white;
  font-weight: 200;
  font-size: 20px;
  padding: 10px 10px;
  border-bottom: 0.3px solid rgb(175, 175, 175);
  margin-bottom: 15px;
}

#login_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9951;
  background-color: rgba(255, 255, 255, 0.734);
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

#login_modal .contnet {
  width: 95%;
  max-width: 1000px;
  height: 58%;
  max-height: 800px;
  background-color: #0f1923;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#login_modal .contnet #login_modal_close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: var(--main_color);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#login_modal .contnet .title {
  font-size: 60px;
  color: white;
  font-weight: 500;
  margin-bottom: 10px;
}

#login_modal .contnet .title2 {
  font-size: 20px;
  color: var(--main_color);
  font-weight: 500;
  margin-bottom: 30px;
}

#login_modal .contnet .sign_box {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;

  .area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

    p {
      color: white;
      font-weight: 400;
    }
  }
}

#login_modal .contnet .sign_box .signup_btn {
  width: 230px;
  height: 70px;
  background-color: #ece8e1;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 0;
  transition: 0.4s ease;

  &:hover {
    background-color: var(--main_color);
    color: white;
  }
}

#login_modal .contnet .sign_box .signin_btn {
  width: 230px;
  height: 70px;
  background-color: var(--main_color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 0;
  transition: 0.4s ease;

  &:hover {
    background-color: #0f1923;
    color: white;
  }
}

#visual {
  width: 100%;
  height: 85vh;
  position: relative;
}

#visual_video {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  object-fit: cover;
}

#title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#title h1 {
  font-size: 100px;
  font-weight: 800;
  color: var(--main_color);
  font-family: "Black Han Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#title p {
  font-size: 20px;
  font-weight: 800;
}

#game_info_section {
  width: 100%;
  display: flex;
  background-image: url("https://cmsassets.rgpub.io/sanity/images/dsfx7636/news/ece1d7a8a15c7f55cb3a09a8aca0fd5d5d93c9ac-5120x1140.png?auto=format&fit=fill&q=80&w=2994");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

#one_left {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 40px;
}

#one_left_text {
  width: 80%;
}

#one_left_text h1 {
  font-size: 120px;
  font-family: "Black Han Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.9;
}

#one_left_text p {
  font-size: 18px;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.3px;
  line-height: 1.3;
}

#one_right {
  width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#one_right img {
  width: 680px;
  height: auto;
}
