/* Base CSS */
@import url("https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap");

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

a:focus {
  outline: 0 solid;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  color: var(--black-color);
  transition: all 0.3s ease-in-out;
}

body {
  font-weight: 400;
  font-family: "Tektur", sans-serif;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

a:hover {
  text-decoration: none;
}

a,
button,
input,
textarea {
  outline: none !important;
  transition: all 0.3s ease-in-out;
}

:root {
  --white-color: #ffffff;
  --primary-color: #85fb93;
  --secondary-color: #6934f7;
  --black-color: #18191c;
  --gray-color: #4b5563;
  --light-gray-color: #e8e8e8;
  --secondary-gray: #18191c80;
  --light-purple-color: #6934f74d;
  --lavender-color: #fbf7ff;
  --lavender-light-color: #e1c7ff;
  --blackish-color: #2b2d32;
  --gunmetal-dark: #18191c66;
  --pearl-color: #f0f0f0;
  --sonic-silver-color: #848486;
}

.theme-btn {
  gap: 7.5px;
  color: #fff;
  background-color: var(--secondary-color);
  height: 40px;
  font-size: 13px;
}

.theme-btn--green {
  background-color: var(--primary-color);
  color: var(--black-color);
}

.theme-btn:hover {
  background-color: var(--black-color);
  color: #fff;
}

.theme-btn--sm {
  height: 32px;
}

.theme-btn--lg {
  height: 46px;
  font-size: 14px;
  gap: 12px;
}

.text-green {
  color: #85FB93 !important;
}

/* ----------------------------- HEADER AREA START ------------------------ */
.header {
  padding-block: 16px;
}

.header .container {
  max-width: 1404px;
}

.header__logo img {
  width: 148px;
}

.header__inner {
  gap: 50px;
  padding: 13px 25px;
  background-color: var(--black-color);
}

.header__right {
  gap: 36px;
}

.header__menu-list {
  gap: 36px;
}

.header__menu-list a {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
}

.header__menu-list a:hover {
  color: var(--white-color);
}

.header__buttons {
  gap: 24px;
}

.header__btn {
  min-width: 100px;
}

.header__btn:hover {
  background-color: #fff;
  color: var(--black-color);
}

.header__menu-toggle img {
  width: 44px;
}

.mobile__menu {
  background-color: var(--black-color);
  padding-bottom: 25px;
  padding-top: 10px;
  position: relative;
}

.mobile__menu::before {
  content: "";
  width: 100%;
  height: 70px;
  background-color: var(--black-color);
  position: absolute;
  top: -70px;
  left: 0;
}

.mobile__menu-list a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--primary-color);
  font-weight: 500;
  padding: 2px 6px;
  display: inline-block;
}

/* ----------------------------- HEADER AREA END ------------------------ */

/* ----------------------------- HERO AREA START ------------------------ */
.hero__area {
  padding-block: 100px;
}

.hero__shape-1 {
  width: 125px;
  right: -70px;
  top: -92px;
}

.hero__shape-2 {
  left: 0;
  top: 570px;
  width: 130px;
}

.hero__shape-3 {
  right: 0;
  top: 730px;
  width: 237px;
}

.hero__inner {
  display: flex;
  align-items: center;
}

.hero__content h1 {
  font-size: 80px;
  color: var(--secondary-color);
  line-height: 1.5;
  font-weight: 700;
}

.hero__content h4 {
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}

.hero__content p {
  font-weight: 600;
  font-size: 16px;
  color: var(--gray-color);
  line-height: 26px;
  max-width: 710px;
  letter-spacing: 10%;
  margin: 0;
}

.hero__content p a {
  color: var(--secondary-color);
}

.hero__content p a:hover {
  text-decoration: underline;
}

.hero__thumb {
  max-width: 272px;
  margin-left: auto;
}

.hero__content {
  margin-bottom: 30px;
}

.hero__btns {
  gap: 14px;
}


/* ----------------------------- HERO AREA END ------------------------ */

/* ----------------------------- FOOTER AREA START ------------------------ */
.footer {
  padding-block: 38px;
  background-color: var(--black-color);
}

.footer__main-wrapper {
  padding-bottom: 40px;
  border-bottom: 4px solid var(--secondary-color);
  margin-bottom: 40px;
}

.footer__main-wrapper > .row {
  --bs-gutter-x: 8px;
  --bs-gutter-y: 40px;
}

.footer__title {
  font-size: 64px;
  line-height: 1.5;
  letter-spacing: 10%;
}
.footer__social-link {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  font-size: 14px;
  color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social-link:hover {
  background-color: #fff;
}
.footer__widgets .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.footer__widgets {
  background-color: var(--blackish-color);
  padding: 20px;
  border: 2px solid var(--primary-color);
}
.footer__widget-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.footer__widget-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  width: 30px;
  height: 30px;
}

.footer__widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__widget-list li {
  margin-bottom: 12px;
}

.footer__widget-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lavender-light-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
  padding: 10px;
}

.footer__widget-link:hover {
  color: var(--primary-color);
}

.footer__widget-link img {
  max-width: 20px;
}

.footer__contact-block {
  background-color: var(--secondary-color);
  border: 2px solid var(--primary-color);
  padding: 20px;
  min-height: 362px;
}

.footer__contact-block .footer__widget-icon {
  border-color: var(--black-color);
  background-color: var(--primary-color);
}
.footer__contact {
  padding: 10px 8px 0;
  margin-bottom: 10px;
}
.footer__contact:last-child {
  margin-bottom: 0px;
}

.footer__contact-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lavender-light-color);
  margin-bottom: 2px;
  line-height: 1.5;
}

.footer__contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__contact-icon img {
  max-width: 20px;
}

.footer__contact-text {
  font-size: 12px;
  font-weight: 400;
  color: var(--white-color);
  margin: 0;
  line-height: 1.5;
}

.footer__contact-link {
  font-size: 12px;
  font-weight: 400;
  color: var(--white-color);
  margin: 0;
  line-height: 16px;
  display: inline-block;
}

.footer__contact-link:hover {
  text-decoration: underline;
}

.footer__social-block {
  gap: 10px;
}

.footer__metrics-wrapper {
  background-color: var(--blackish-color);
  border: 4px solid var(--secondary-color);
  padding: 15px;
  margin-bottom: 40px;
}

.footer__metrics-wrapper .row {
  --bs-gutter-x: 14px;
  --bs-gutter-y: 14px;
}

.footer__metrics-item {
  text-align: center;
}

.footer__metrics-value {
  font-size: 28px;
  letter-spacing: -4%;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 4px 0;
}

.footer__metrics-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--lavender-light-color);
  line-height: 18px;
  margin: 0;
}

.footer__metrics-flag {
  min-height: 38px;
  display: inline-block;
}

.footer__copyright-text p {
  gap: 20px;
  color: var(--lavender-light-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.footer__copyright-icon {
  width: 24px;
}

/* ------------------------------ FOOTER AREA END ------------------------ */

/* sign up modal start */

.theme-modal .modal-dialog {
  max-width: 864px;
}

.theme-modal .modal-content {
  background-color: var(--black-color);
  border: 2px solid var(--secondary-color);
}

.modal-title {
  font-size: 40px;
  line-height: 1.5;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.signup__options {
  max-width: 300px;
  margin: 0 auto 20px;
  gap: 14px;
}

.form__input {
  width: 100%;
}

.form__input-field {
  height: 46px;
  padding-inline: 26px;
  color: var(--black-color);
}

.form__input-shape {
  pointer-events: none;
}

.form__input-field::placeholder {
  color: var(--black-color);
  opacity: 0.5;
}

.form__footer-text {
  max-width: 332px;
  font-size: 12px;
  line-height: 1.5;
}

.form__divider {
  width: 150px;
  height: 1px;
  background-color: #e7fee9;
}

.theme-modal .modal-body {
  min-height: 450px;
}

.modal__close-btn {
  top: 14px;
  left: 20px;
}

.modal__close-btn img {
  width: 32px;
}

/* sign up modal end */

/* signup section start */

.signup {
  background-color: var(--black-color);
}

.signup__wrapper {
  padding-top: 187px;
  padding-bottom: 24px;
  gap: 105px;
}

.signup__logo img {
  width: 278px;
}

.form__input {
  width: 100%;
}

.form__title {
  font-size: 26px;
  line-height: 1.5;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.form__body {
  width: 100%;
}

.signup__shape-1 {
  width: 174px;
  top: 35px;
  right: -80px;
  transform: rotate(45deg);
}

.signup__shape-2 {
  width: 174px;
  bottom: 260px;
  left: -118px;
  transform: rotate(-28deg);
}

.form .theme-btn:hover {
  background-color: #fff;
  color: var(--black-color);
}

/* signup section end */

/* game section start */
.game {
  background-color: var(--black-color);
  padding-bottom: 30px;
}

.game__container {
  max-width: 1440px;
}

.game__title {
  font-size: 26px;
  top: 45px;
}

.game__score {
  font-size: 26px;
  top: 86px;
  right: 0;
}

.game__placeholder {
  min-height: 360px;
}

/* game section end */

/* dark mode */
.dark body {
  background-color: var(--black-color);
}

.dark .header__inner {
  background-color: #fff;
}

.dark .header__menu-list a {
  color: var(--black-color);
}

.dark .header__menu-list a:hover {
  color: var(--secondary-color);
}

.dark .hero__content h1 {
  color: var(--primary-color);
}

.dark .hero__content h4 {
  color: #fff;
}

.dark .hero__content p {
  color: #fff;
}

.dark .hero__content p a {
  color: var(--primary-color);
}

.dark .mobile__menu {
  background-color: #fff;
}

.dark .mobile__menu::before {
  background-color: #fff;
}

.dark .mobile__menu-list a {
  color: var(--black-color);
}

.dark .theme-btn:not(.chat__action-btn, .chat__send-btn, .chat__help-btn):hover {
  background-color: #fff;
  color: var(--black-color);
}

.dark .header__btn:hover {
  background-color: var(--black-color);
  color: #fff;
}











.lang {
  color: #18191C;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.new-hero__btns:last-child {
  border: 0;
}

.new-hero__btns {
  padding-inline: 19px;
  background: transparent;
  gap: 7px;
  color: #FFF;
  font-size: 13px;
  font-weight: 600;
  line-height: 131.105%;
  border-right: 1px solid #85FB93;
  height: 40px;
}

.chatbox__field-primary {
  height: auto;
}

.chatbox__dark {
  border: 4px solid #6934F7;
  background: #2B2D32;
  box-shadow: 0 9.5px 50px 0 rgba(105, 52, 247, 0.15), 0 12.25px 19px 0 rgba(105, 52, 247, 0.14), 0 13.5px 16px 0 rgba(105, 52, 247, 0.10), 22px 12px 31.1px 0 rgba(105, 52, 247, 0.32), -12px 3px 17.1px 0 rgba(105, 52, 247, 0.35);
  border-radius: 0;
  margin-top: 52px;
}

.chatbox__dark .chat__actions {
  padding: 20px;
  padding-bottom: 16px;
  border-color: #27292E;
  border-bottom: 0;
}

.chatbox__dark .chat__action-btn {
  width: 23.2%;
  height: 46px;
}

.chatbox__dark .chat__action-btn span {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.chat__send-btn-dark {
  background: transparent;
  border: 0;
}

.chat__send-btn-dark.theme-btn {
  background: #6934F7;
  height: 46px;
}

.chat__send-btn-dark.theme-btn span img {
  width: 8px;
}

.chat__send-btn-dark.theme-btn span {
  width: 24px;
}

.chat__input-dark {
  gap: 10px;
  padding: 20px;
  padding-top: 0;
}

.chat__input-dark input {
  background: #18191C;
  color: #fff !important;
  border-color: #6934F7;
  height: 46px;
}

.chat__input-btn {
  gap: 10px;
}

.px-55 {
  padding-inline: 55px;
}

.p-10 {
  padding: 10px;
}

.bg-theme-drak {
  background: #18191C;
}

.py-50 {
  padding-block: 50px;
}

.user-chatbox {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.user-chatbox img {
  max-width: 22px;
}

.chat__actions-dark a {
  width: 198px !important;
}

.chatbox__area .chat__input-dark input {
  background: #2B2D32;
}

.chat__send-btn-dark img {
  width: 48px !important;
}














.chatbox__dark-right {
  width: 0%;
  background: #2B2D32;
  padding: 20px;
  transition: .3s;
  transform: translateX(-260%);
}

.chatbox__area .chatbox__dark {
  width: 100%;
  box-shadow: unset;
  margin-left: auto;
  transition: .3s !important;
}

.chatbox-dark-right--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbox-dark-right--header h4 {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.chatbox__dark-right-menu li a {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 6px;
  color: #D3D3D3;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.chatbox__dark-right-menu {
  border-bottom: 1px solid #757678;
  margin-bottom: 10px;
}

.chatbox__dark-right-btn a {
  color: #D3D3D3;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  height: 40px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  transition: .3s;
}

.chatbox__dark-right-btn a:hover {
  color: #fff;
  font-weight: 700;
}

.chatbox__area.active .chatbox__dark-right {
  transform: translateX(0);
  width: 17.8%;
}

.chatbox__area.active .chatbox__dark {
  width: 82.3%;
}


.header.bg-transparent .header__inner {
  background: transparent;
}

.hero__left {
  width: 100%;
  position: relative;
  z-index: 99;
}

.hero__input-wrap {
  border: 1px solid #85FB93;
  background: var(--Obsidian-black--2, #2B2D32);
  box-shadow: 2px 4px 12.2px 2px rgba(133, 251, 147, 0.20), -2px -4px 12.2px 2px rgba(105, 52, 247, 0.20);
  padding: 10px;
}

.hero__input-wrap label {
  color: #FFFFFF;
  font-family: Tektur;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
}

.hero__input {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.hero__input input {
  border: 1px solid #85FB93;
  background: var(--Glitch-White, #FFF);
  width: 92%;
  height: 46px;
  text-align: center;
  color: var(--Obsidian-black, #18191C);
  font-family: Tektur;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.hero__input button {
  border: 0;
  background: transparent;
}

.h-love2 {
  position: absolute;
  right: 10%;
  top: 14%;
}

.h-love1 {
  position: absolute;
  left: 0;
  bottom: 15%;
}