@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&display=swap');

body{
  direction: ltr;
  font-family: 'Alegreya', sans-serif !important;
  line-height: 1.3;
  background-color: var(--bcg-1);
  margin: 0px;
  padding: 0px;  
  box-sizing: border-box;
  overflow-x: hidden;
}



:root{
--green: rgb(10, 95, 25);;
--yellow: #e4da16;
--orange: #ff7b00; 
--blue: #00b1d8;
--white: #ffffff;
--violet: #5d139e;
--pink: #c81cb1;


--bcg-1: #4f3501;
--bcg-2: #1b3007;
--bcg-3: #dd9700; 



}

a {
white-space: normal;
text-decoration: none;
}
ul {
padding-left: 0;
padding-right: 0;
}
li {
margin: 0 20px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
.margin-farm {
  padding: 0;
  margin: 0 auto;
  }
.padding-farm {
padding: 107px 7px;
}
.head-farm-section {
  background: url('imagevault/dir-bg/bg-all-068b98e7e42804.jpg') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}
.head-menu-nav{
  padding: 20px;
  background-color: #ffffffd9;
  border: 4px outset var(--orange);
}
.head-title p{
  margin: 30px;
}
.head-logo-title-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
}
.head-logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.head-title{
  font-size: 42px;
  width: 650px;
}
.head-logo-title img {
  width: 96px;
  height: auto;
  transition: transform 0.3s ease;
}

.head-logo-title h1 {
  font-size: 19px;
  color: #4A7023;
}
.head-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.head-menu a {
  font-size: 19px;
  color: #6B4226;
  text-decoration: none;
  position: relative;
  padding: 7px 15px;
  transition: color 0.3s ease;
}

.head-menu a::before, 
.head-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 4px;
  background: #A0522D;
  transition: all 0.3s ease;
}

.head-menu a::before {
  top: 0;
  left: 0;
}

.head-menu a::after {
  bottom: 0;
  right: 0;
}

.head-menu a:hover::before {
  width: 100%;
}

.head-menu a:hover::after {
  width: 100%;
}

.head-menu a:hover {
  color: #A0522D;
  transform: scale(1.05);
}

.head-farm-section::before,
.head-farm-section::after {
  content: '';
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.head-farm-section::before {
  background-image: url('imagevault/tematik/animals-068b98e7e428b8.png');
  bottom: 15px;
  left: 20px;
  width: 106px;
  height: 106px;
}

.head-farm-section::after {
  background-image: url('imagevault/tematik/animals-168b98e7e428c3.png');
  bottom: 15px;
  right: 20px;
  width: 254px;
  height: 254px;
}

.head-logo-title img:hover {
  transform: rotate(5deg) scale(1.1);
}
.flex-inf {
  display: flex;
  flex-direction: column;
}
.flex-rows {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid grey; 
  margin-top: 18px;
  justify-content: space-between;
  flex-direction: row;
}
.disclaimer-img img {
  width: 100%;
  object-fit: contain;
  height: 50px;
}
.farm-step-s {
  position: relative;
  background: url('imagevault/dir-bg/opacity_bg-068b98e7e4282c.png') no-repeat center center/cover;
  overflow: hidden;
}

.farm-step-s::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height:  96px;
  background: url('imagevault/tematik/fence-068b98e7e428ed.png') repeat-x;
  background-size: auto  96px;
}

.f-step-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.farm-title {
  position: relative;
  display: inline-block;
  font-size: 29px;
  font-weight: 600;
  color: #5a3e1b;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  padding: 20px 39px;
  margin: 30px auto;
  background: url('farm/texture-wooden-boards.jpg') no-repeat center/cover;
  border: 15px outset #593a1c;
  border-radius: 50px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 10px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  transition: opacity 1s ease-out, transform 1s ease-out;
}



.farm-title.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.farm-title:hover {
  animation: swing 1s ease-in-out infinite alternate;
}

@keyframes swing {
  0% {
      transform: rotate(-3deg);
  }
  100% {
      transform: rotate(3deg);
  }
}

.step-i img{
width: auto;
height: 96px;
object-fit: cover;
}
.step-i {
  position: relative;
  width: 358px;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #fffae3;
  border-radius: 54% 46% 41% 59% / 54% 65% 35% 46%;
  box-shadow: #ff7b00 0px 50px 100px -20px, #ff7b004a 0px 30px 60px -30px, #ff7b00 0px -2px 6px 0px inset;
  padding: 68px;
  text-align: center;
  font-size: 26px;
  color: #6B4226;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}


.step-i:hover {
  transform: scale(1.1);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
  background: #f7e3b5;
}

.step-i::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #A0522D;
  color: white;
  font-size: 26px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 7px;
}
.farm-about-s {
  position: relative;
  background: url('farm/texture-wooden-boards.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.f-about-wrap {
  display: flex;
  align-items: center;
  gap: 39px;
}

.about-img-block {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video video {
  width:  364px;
  height:  364px;
  object-fit: cover;
  border-radius: 54% 46% 54% 46% / 41% 66% 34% 59%;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.about-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  transform: rotate(-5deg);
  transition: transform 0.3s ease-in-out;
}

.about-img img {
  width: 147px;
  height: auto;
}

.about-img:hover {
  transform: rotate(5deg) scale(1.1);
}

.about-content {
  flex: 2;
  background: rgba(255, 255, 255, 0.85);
  padding: 18px;
  border-radius: 50px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #4B2C20;
}

.about-content p {
  font-size: 19px;
  margin-top: 15px;
}

.farm-benefit-s {
  position: relative;
  background: url('imagevault/dir-bg/opacity_bg-168b98e7e42837.png') no-repeat center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.farm-benefit-s::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background: url(imagevault/tematik/fence-068b98e7e428ed.png) repeat-x;
  background-size: auto 96px;
}
.f-benefit-wrap {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 39px;
  display: flex;
  flex-direction: column;
}

.benefit-img-content{
display: flex;
flex-direction: row;
}
.f-benefit-wrap img {
  width: 40%;
  max-width: 358px;
  object-fit: contain;
}

.benefit-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.benefit-item {
  position: relative;
  width:  90%;
  padding:18px;
  background: var(--yellow);
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  transition: transform 0.3s ease-in-out;
}

.benefit-item:nth-child(1) {
  margin-left: 18px;
}
.benefit-item:nth-child(2) {
  margin-left: 25px;
}
.benefit-item:nth-child(3) {
  margin-left: 18px;
}
.benefit-item:nth-child(4) {
  margin-left: 25px;
}

.benefit-item p {
  font-size:  19px;
  color: #6B4226;
  font-weight: 600;
}

.benefit-item:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}
 

.f-games-wrap {
  text-align: center;
}

.game-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.farm-game-item {
  width: 300px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  border-radius: 87% 13% 94% 6% / 13% 94% 6% 87%;
  border: 4px solid var(--green);
  box-shadow: #ff7b00 0px 50px 100px -20px, #ff7b004a 0px 30px 60px -30px, #ff7b00 0px -2px 6px 0px inset;
}

.farm-game-item:hover {
  transform: scale(1.05);
}

.game-img {
  width: 100%;
  height: 358px;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
}

.game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.farm-text-game {
  position: absolute;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  transition: background 0.3s ease-in-out;
}

.farm-game-item:hover .farm-text-game {
  background: rgba(0, 0, 0, 0.8);
}
.farm-title-game{
  font-size: 26px;
  font-weight: 900;
  color: var(--yellow);
  margin: 18px;
}
.farm-content-game {
  font-size: 18px;
  font-weight: 400;
  margin: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.container-benefit-games{
display: flex;
flex-direction: column;
}

.farm-gallery-s {
  background: url('farm/texture-wooden-boards.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-gallery-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.f-gallery-wrap img {
  width: auto;
  height: 254px;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 3px solid var(--orange);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.f-gallery-wrap img:nth-child(1) { 
  --border-radius: 60% 40% 63% 37% / 58% 56% 44% 42%;
}
.f-gallery-wrap img:nth-child(2) { 
  --border-radius: 37% 63% 42% 58% / 34% 40% 60% 66%;
}
.f-gallery-wrap img:nth-child(3) { 
  --border-radius: 81% 19% 71% 29% / 19% 67% 33% 81%;
}
.f-gallery-wrap img:nth-child(4) { 
  --border-radius: 60% 40% 71% 29% / 48% 57% 43% 52%;
}
.f-gallery-wrap img:nth-child(5) { 
  --border-radius: 60% 40% 39% 61% / 48% 45% 55% 52%;
}
.f-gallery-wrap img:nth-child(6) { 
  --border-radius: 39% 61% 39% 61% / 58% 45% 55% 42%;
}

.f-gallery-wrap img:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
.farm-faq-s {
  background: url('imagevault/dir-bg/opacity_bg-268b98e7e42843.png') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-faq-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.f-faq-img-wrap{
  display: flex;
  flex-direction: row;
  margin: 30px 0; 
}

.f-faq-q-a {
  flex: 1;
  min-width: 242px;
}

.faq-i {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 39px 20px;
  margin-bottom: 18px;
  border-radius: 25px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

.faq-i::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('imagevault/tematik/objects-farm-068b98e7e42912.png') no-repeat center;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
}

.faq-i:hover {
  transform: translateY(-5px);
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-q {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.faq-q::after {
  content: '\25BC';
  font-size: 26px;
  color: var(--green);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.faq-a {
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  font-size: 18px;
}

.faq-i.active .faq-a {
  display: block;
  opacity: 1;
  max-height:  242px;
}

.faq-i.active .faq-q::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-img-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width:  242px;
}

.faq-img-wrap img {
  max-width: 100%;
}

.farm-form-s {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: none !important; 
}

.farm-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.f-form-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6); 
  padding: 30px;
  border-radius: 25px;
  color: #fff;
  text-align: center;
}

.farm-form {
  --input-focus: var(--blue);
  --font-color: #fffdfd;
  --font-color-sub: #666;
  --bg-color: beige;
  --main-color: black;
  padding: 20px;
  background: var(--bcg-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 25px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
}

.form-title {
  color: var(--font-color);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 20px;
  animation: glowing 2s infinite alternate;
}

@keyframes glowing {
  0% {
      text-shadow: 0 0 5px #ffcc00, 0 0 10px #ffcc00;
  }
  100% {
      text-shadow: 0 0 15px #ff6600, 0 0 30px #ff6600;
  }
}

.input,
.input-inputgroup-component,
.textarea-inputgroup-component {
  width: 75%;
  height: 50px;
  border-radius: 4px;
  border: 3px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 18px;
  font-weight: 600;
  color: var(--font-color);
  padding: 4px 10px;
  outline: none;
}

.input::placeholder,
.input-inputgroup-component::placeholder,
.textarea-inputgroup-component::placeholder {
  color: var(--font-color-sub);
  opacity: 0.8;
}

.input:focus,
.input-inputgroup-component:focus,
.textarea-inputgroup-component:focus {
  border: 3px solid var(--input-focus);
}

.check-container input {
  display: none;
}
.cyber-check-wrap{
  display: flex;
  align-items: center;
}
.check-container {
  display: block;
  position: relative;
  cursor: pointer;
  margin: 15px;
  font-size: 20px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background-color: orange;
  border-radius: 0.25em;
  transition: all 0.25s;
}
.check-privacy{
  color: var(--white);
}

.check-container input:checked ~ .checkmark {
  background-color:orange;
}

.checkmark:after {
  content: "";
  position: absolute;
  transform: rotate(0deg);
  border: 0.1em solid black;
  left: 0;
  top: 0;
  width: 1.05em;
  height: 1.05em;
  border-radius: 0.25em;
  transition: all 0.25s, border-width 0.1s;
}

.check-container input:checked ~ .checkmark:after {
  left: 0.45em;
  top: 0.25em;
  width: 0.25em;
  height: 0.5em;
  border-color: #fff0 white white #fff0;
  border-width: 0 0.15em 0.15em 0;
  border-radius: 0em;
  transform: rotate(45deg);
}
.contact-wrap{
  display: flex;
  flex-direction: column;
}
.farm-contact-s{
  background: url('imagevault/dir-bg/opacity_bg-368b98e7e4284e.png') no-repeat center/cover;
  overflow: hidden;
}
.farm-contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  padding: 39px 20pxx;
  border-radius: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 25px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  width: 70%;
  max-width: 358px;
  cursor: pointer;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.contact-item svg {
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  max-width: 24px;
  max-height: 24px;
  height: 24px;
  fill: #ffcc00;
  transition: transform 0.3s;
}

.contact-item:hover svg {
  transform: rotate(10deg) scale(1.1);
  fill: #ffa500;
}

.contact-item a, .contact-item p {
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  word-break: break-all; 
}
.container-form{
  display: flex;
  justify-content: space-around;
  background: rgb(0 0 0 / 17%);
  padding: 47px 30px;
  border-radius: 93% 7% 96% 4% / 4% 94% 6% 96%;
  box-shadow: #ff7b00 0px 50px 100px -20px, #ff7b004a 0px 30px 60px -30px, #ff7b00 0px -2px 6px 0px inset;
}
.checkaccept-div{
  color: var(--white);
}

.farm-privacy-wrap {
color: var(--white);
word-break: break-all; 
}
.farm-footer-s {
  background: #111;
  color: #fff;
  padding: 39px 7px;
  text-align: center;
}

.f-footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-title-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.3s;
}

.footer-title-logo img {
  width: 50px;
  height: auto;
}

.footer-title-logo h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--green);
}

.footer-title-logo:hover {
  transform: scale(1.1);
}

.footer-privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-privacy a {
  color: #ccc;
  text-decoration: none;
  margin: 0 7px;
  transition: color 0.3s;
}

.footer-privacy a:hover {
  color: #999;
}

.disclaimer-container {
  margin-top: 18px; 
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.disclaimer-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffffc4;
  border-radius: 25px;
  z-index: 1;
}
.disclaimer-title {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  margin:  7px;
  border-radius: 25px;
  z-index: 1;
}
.disc-gambla{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px;
  z-index: 1;
}
.disc-gambla p{
  background-color: #000000a8;
  padding: 7px;
}
.disc-gambla img{
  width: 147px;
}
.disclaimer-title h2 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
}

.copyright-container {
  display: flex;

  font-size: 18px;
  opacity: 0.8;
}
.footer-disc-wrap{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-discl-wrap{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.f-footer-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.farm-page-s {
  background: url('path_to_farm_background.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.f-page-wrap {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.title-img-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 18px;
}

.page-title h2 {
  font-size: 26px;
  font-weight: 600;
  color: #4d2600;
}

.f-page-img img {
  width: 100%;
  max-width: 553px;
  border-radius: 54% 46% 41% 59% / 54% 65% 35% 46%;
  box-shadow: #ff7b00 0px 50px 100px -20px, #ff7b004a 0px 30px 60px -30px, #ff7b00 0px -2px 6px 0px inset;
  border: 2px solid var(--orange);
  transition: transform 0.3s;
}

.f-page-img img:hover {
  transform: scale(1.05);
}

.players-content-box {
  display: flex;
  flex-direction: column;
  gap:  15px;
  padding: 15px;
  align-items: stretch;
  margin-top: 18px;
}

.players-game {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:  15px;
  background: rgba(255, 255, 255, 0.8);
  padding: 7px 15px;
  border-radius: 25px;
  transition: background 0.3s, transform 0.3s;
}

.players-game:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-5px);
}

.play-avatar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.play-avatar img {
  width:  51px;
  height:  51px;
  object-fit: cover;
  border-radius: 50%;
}
.play-avatar p{
  color: var(--pink);
  font-size: 26px;
}

.health img {
  width: 147px;
}

.page-content {
  margin-top: 20px;
  text-align: center;
  font-size:  20px;
  color: #333;
}

.iframe-wrap {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.iframe-wrap iframe {
  border: none;
  width: 100%;
  height: 100vh;
  border-radius: 25px;
}
.f-page-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}






@media screen and (min-width: 320px) {
  .margin-farm{
    max-width: 320px;
  }
}
@media screen and (min-width: 480px) {
  .margin-farm{
    max-width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .margin-farm{
    max-width: 768px;
  }
}
@media screen and (min-width: 1200px) {
  .margin-farm{
    max-width: 1200px;
  }
}


@media (max-width: 1200px) {
  .head-logo-title {
      flex-direction: row;
      justify-content: center;
  }
  .head-logo-title-wrap {
    flex-direction: column;
  }
.head-logo-title h1{
  writing-mode: horizontal-tb;
}
  .head-logo-title img {
      width: 80px;
  }
  .head-title{
    font-size: 29px;
  }
  .head-farm-section::before{
    display: none;
  }
  .head-farm-section::after{
    width: 147px;
    height: 147px;
  }
  .head-title{
width: auto;
  }
}

@media (max-width: 850px){
  .about-video video{
    width: 300px;
    height: 300px;
  }
}


@media (max-width: 768px) {
  .step-cont {
    flex-direction: column;
    gap: 20px;
}
.step-i {
    width: 180px;
    font-size: 16px;
}
.farm-title{
  font-size: 22px;
}
.f-about-wrap {
  flex-direction: column;
  text-align: center;
}
.about-img-block {
  flex-direction: column;
}
.about-img {
  position: static;
  transform: none;
}
.about-content {
  padding: 15px;
}

.f-benefit-wrap {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.f-benefit-wrap img {
  width: 80%;
  margin-bottom: 20px;
}
.benefit-img-content {
  flex-direction: column;
  align-items: center;
}
.benefit-items{
  align-items: center;
}
.benefit-item {
  margin-left: 0 !important;
}
.f-gallery-wrap {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.f-gallery-wrap img {
  grid-column: span 1 !important;
}
.f-faq-wrap {
  flex-direction: column;
  align-items: center;
}
.faq-img-wrap {
  margin-top: 20px;
}
.f-faq-img-wrap{
  flex-direction: column;
}
.faq-img-wrap img{
  max-width: 70%;
}
.farm-contact-wrap {
  padding: 30px 10px;
}
.farm-form{
  width: 80%;
}
.contact-item {
  max-width: 100%;
}
.container-form{
  flex-direction: column;
  align-items: center;
}

.footer-privacy a {
  margin-bottom: 5px;
}
.f-footer-wrapper{
  flex-direction: column;
}
.f-page-wrap {
  padding: 20px;
}
.players-game {
  flex-direction: column;
  text-align: center;
}
.iframe-wrap {
  max-width: 100%;
}
.play-avatar p{
  font-size: 20px;
}
.head-title{
  font-size: 26px;
}
}


@media (max-width: 425px) {
.farm-title h2{
  font-size: 18px;
}
.f-page-wrap {
  padding: 10px;
}
}











.button-1 {
  position: relative;
  font-size: 18px;
  padding: 15px 25px;
  background-color: var(--violet);
  text-decoration: none;
  border: none;
  margin: 7px;
  border-radius: 25px;
  color: var(--white);
  box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
}

.button-1::before {
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgb(33 33 33 / 4%) 0%, rgba(33, 33, 33, 1) 50%, #17008b 50%, var(--blue) 60%);
  border-radius: 0 0 0.5em 0;
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.button-1:hover::before {
  width: 1.6em;
  height: 1.6em;
}

.button-1:active {
  box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
  transform: translate(0.1em, 0.1em);
}



.button-2 {
  height: 68px;
  border: none;
  border-radius: 25px;
  background: #0a3139;
  padding: 18px 30px;
  font-size: 18px;
  color: var(--white);
  font-family: inherit;
  font-weight: 600;
 }
 
 .button-2:hover {
  animation: swing 0.5s ease-in-out;
 }
 
 @keyframes shake3856 {
  0% {
   -webkit-transform: translate(0);
   transform: translate(0);
  }
 
  20% {
   -webkit-transform: translate(-2px, 2px);
   transform: translate(-2px, 2px);
  }
 
  40% {
   -webkit-transform: translate(-2px, -2px);
   transform: translate(-2px, -2px);
  }
 
  60% {
   -webkit-transform: translate(2px, 2px);
   transform: translate(2px, 2px);
  }
 
  80% {
   -webkit-transform: translate(2px, -2px);
   transform: translate(2px, -2px);
  }
 
  100% {
   -webkit-transform: translate(0);
   transform: translate(0);
  }
 }
 

.button-3 {
  position: relative;
  width: 140px;
  background-color: #0e3b43;
  display: flex;
  align-items: center;
  color: white;
  flex-direction: column;
  justify-content: center;
  border: none;
  padding: 15px;
  gap: 15px;
  border-radius: 10px;
  cursor: pointer;
}

.button-3 ::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -4px;
  top: -1px;
  margin: auto;
  width: 128px;
  border-radius: 25px;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100% );
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-3::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, var(--yellow) 0%, var(--pink) 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.button-3:hover::after {
  filter: blur(30px);
}

.button-3:hover::before {
  transform: rotate(-180deg);
}

.button-3:active::before {
  scale: 0.7;
}


.button-4 {
  display: inline-block;
  padding: 15px 25px;
  margin: 15px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background-image: linear-gradient(to bottom right, var(--yellow), var(--orange));
  border: none;
  border-radius: 25px;
  box-shadow: 0px 4px 0px var(--text-1);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.button-4:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 0px var(--text-1);
}

.button-4:active {
  transform: translateY(0px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, var(--yellow), var(--orange));
}

.button-4:before,
.button-4:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.button-4:before {
  top: -3px;
  left: -3px;
  border-radius: 25px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.button-4:after {
  bottom: -3px;
  right: -3px;
  border-radius: 25px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.button-5,
.button-5:focus {
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 0.7rem;
  background-image: linear-gradient( #da965e, rgb(158, 129, 254));
  border: 2px solid rgb(50, 50, 50);
  border-bottom: 5px solid rgb(50, 50, 50);
  box-shadow: 0px 1px 6px 0px rgb(158, 129, 254);
  transform: translate(0, -3px);
  cursor: pointer;
  transition: 0.2s;
  transition-timing-function: linear;
}

.button-5:active {
  transform: translate(0, 0);
  border-bottom: 2px solid rgb(50, 50, 50);
}

.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}
