@import "styles/normalize.css";

@import "styles/main.css";
:root {
  --shadow: 2px 2px 4px 4px rgba(34, 60, 80, 0.2);
  --shadow2: 5px 1.2rem 1rem 1rem rgba(250, 253, 255, 0.2);
  --text-shadow: 1px 1px white, 2px 2px #080808;
  --text-shadow-dark: 2px 2px 2px black;

  --text-shadow-for-dark: 2px 2px 0px #fff, 5px 5px 0px rgba(0, 0, 0, 0.15);
  --shadow-inset: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

@font-face {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  src: url("assets/fonts/Lato-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  src: url("assets/fonts/Lato-Bold.ttf") format("ttf");
}

@font-face {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  src: url("assets/fonts/WorkSans-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  src: url("assets/fonts/WorkSans-Bold.ttf") format("ttf");
}

* {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}

html {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}

@media (min-width: 2401px) {
  html {
    font-size: 13px;
  }
}

@media (min-width: 2201px) and (max-width: 2400px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1901px) and (max-width: 2200px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1500px) and (max-width: 1900px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1500px) and (min-width: 1300px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1299px) {
  html {
    font-size: 11px;
  }
}

*::-webkit-scrollbar,
html *::-webkit-scrollbar {
  height: 1.2rem;
  width: 1.2rem;
}

*::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
  background: rgb(218, 228, 245);
}

*::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
  background: rgb(27, 92, 204);
  border-radius: 1.5rem;
  border: 3px solid white;
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;

  font-family: "Lato";
}

.main {
  width: 100%;
  min-height: calc(100vh - 160px);
  overflow-x: hidden;
}

.wrapper_grabgo {
  width: 85%;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
}

@media (max-width: 1000px) {
  .wrapper_grabgo {
    width: 95%;
  }
}

@media (max-width: 700px) {
  .wrapper2_grabgo {
    width: 90%;
  }
}
a,
button {
  cursor: pointer;
  text-decoration: none;
}
h3 {
  font-size: 1.8rem;
}

/******************************  GENERAL TITLE PAGE ******************************/

.text_center {
  text-align: center;
}

.flex_box {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

/********************************************/
.white_color {
  color: white;
  text-shadow: var(--text-shadow-dark);
}
.w_color {
  color: white;
}
.g_color {
  color: gold;
}
.blue_c {
  color: var(--grabgo_dark);
}
.w_150_p {
  width: 150px;
}
.w_100 {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.img {
  width: 100%;
  max-width: 500px;
}
.img_300 {
  width: 100%;
  max-width: 300px;
}
.w_300 {
  width: 100%;
  max-width: 300px;
}
.mb_40 {
  margin-bottom: 40px;
}
.pt_20 {
  padding-top: 70px;
}
.pb_20 {
  padding-bottom: 20px;
}
/********************************************/
img {
  max-width: 100%;
}

.bestclawclash_box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  width: 100%;
  height: 500px;
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}
.bestclawclash_game {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;

  max-width: 100%;
  border-radius: 1rem;
}

/* Анимации при прокрутке */
.bestclawclash-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
}

.bestclawclash-fade-in.bestclawclash-visible {
  opacity: 1;
  transform: translateY(0);
}

.bestclawclash-slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
}

.bestclawclash-slide-in-left.bestclawclash-visible {
  opacity: 1;
  transform: translateX(0);
}

.bestclawclash-slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
}

.bestclawclash-slide-in-right.bestclawclash-visible {
  opacity: 1;
  transform: translateX(0);
}

.bestclawclash-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
}

.bestclawclash-scale-in.bestclawclash-visible {
  opacity: 1;
  transform: scale(1);
}
.c_g {
  color: var(--bestclawclash-secondary);
}
.bestclawclash-menu-list .active {
  color: var(--bestclawclash-secondary);
}

.bestclawclash-thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.bestclawclash-thanks-content {
  max-width: 600px;
}

.bestclawclash-thanks-icon {
  font-size: 64px;
  color: var(--bestclawclash-secondary);
  margin-bottom: 20px;
}

.bestclawclash-thanks-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #edd37e;
}

.bestclawclash-thanks-text {
  font-size: 18px;
  color: #efe5e5;
  margin-bottom: 30px;
  line-height: 1.6;
}

.bestclawclash-thanks-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--bestclawclash-secondary);
  color: rgb(9, 4, 4);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.bestclawclash-thanks-button:hover {
  background-color: var(--bestclawclash-secondary);
}
.column {
  flex-direction: column;
}
.text_left {
  text-align: left;
}
.bestclawclash-terms-content {
  font-size: 1.4rem;
}
.border_g {
  width: 98%;
  border: 1px solid var(--bestclawclash-secondary);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  margin: 20px;
  @media (max-width: 768px) {
    padding: 10px;
  }
}

.bestclawclash-interface {
  padding: 60px 0;
  background-color: var(--bestclawclash-dark);
}

.bestclawclash-interface-item {
  flex: 1;
  margin: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.bestclawclash-interface-item:hover {
  transform: translateY(-10px);
}

.bestclawclash-interface-item .bestclawclash-image-container {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bestclawclash-interface-item .bestclawclash-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.bestclawclash-interface-item:hover .bestclawclash-image {
  transform: scale(1.05);
}

.bestclawclash-interface-item h3 {
  color: var(--bestclawclash-secondary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.bestclawclash-interface-item p {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bestclawclash-interface .bestclawclash-flex {
    flex-direction: column;
  }

  .bestclawclash-interface-item {
    margin: 10px 0;
  }
}
