@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

body{
    direction: ltr;
    font-family: 'El Messiri', sans-serif !important;
    line-height: 1.9;
    margin: 0px;
    padding: 0px;  
    height: 100vh;
    box-sizing: border-box;
    background-color: var(--brown-light); 
    overflow-x: hidden;
    cursor: url(''), auto; 
}

:root{
--green: #246226;
--orange: #ea9b12;
--yellow: #efe00e;
--blue: #13aac5;
--white: #ffffff;
--brown: #47231c;
--brown-light: #783e32;

}
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;
}
.box-padding{
padding: 59px 25px;
}
.box-margin{
padding: 0;
margin: 0 auto;
}

.styled {
  background-color: rgba(139, 94, 60, 0.7);
  border: 6px dotted #c07c49;
  padding: 20px; 
  border-radius: 20px; 
  margin: 0 20px; 
  width: 600px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);

}

/* header */

.header-wild-west-section {
  position: relative;   
  width: 100%;
  background: url("creativecove/bg-assets/bg-light-068517b76c44b3.jpg") no-repeat center center/cover;
  color: #fff;  
  overflow: hidden;
  }
  .header-wild-west-section::before {   
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.76); 
  }
 .header-wild-west-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  }
  
  .header-wild-west-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  }
  .header-wild-west-logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  }
  .header-wild-west-logo h1 {
  font-size: 34px;
  color: #fff;
  }

  .header-wild-west-menu {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap; 
 align-items: center;
 margin-bottom: 20px;
 gap: 30px;
 justify-content: center;
  }

 .header-wild-west-menu a {
 text-decoration: none;
 color: #fff;
padding: 10px 20px;
border: 2px solid #ddd; 
border-radius: 20px;
background-color: rgba(255, 255, 255, 0.1); 
transition: all 0.3s ease;
  } 

  .header-wild-west-menu a:hover{
    color: rgb(145, 136, 136);
    background-color: rgba(255, 255, 255, 0.153);
  }
  .header-wild-west-block {
margin-top: 20px;
text-align: center;
  }


.animated-text {
font-size: 34px;  
margin-bottom: 10px;
font-weight: bold;  
text-align: center;
background: linear-gradient(90deg, rgb(244, 212, 212), rgb(239, 221, 189), rgb(245, 232, 193), rgb(203, 246, 203), rgb(244, 219, 188), rgb(187, 249, 175), rgb(222, 206, 174));
background-size: 400%; 
-webkit-background-clip: text; 
-webkit-text-fill-color: transparent; 
animation: color-shift 5s linear infinite;
}

@keyframes color-shift {
  0% {
      background-position: 0% 50%; 
  }
  50% {
      background-position: 100% 50%; 
  }
  100% {
      background-position: 0% 50%; 
  }
}

.games-wild-west-section {
  background: url(creativecove/bg-assets/opacity_bg-068517b76c464d.png) no-repeat center center / cover;
}

.games-wild-west-wrap {
  max-width: 1200px;
}
.wild-west-title-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; 
  flex-wrap: wrap;
  text-align: center; 
  margin: 20px auto;
  padding: 10px;
}
.header-wild-west-btn{
  margin-top: 42px;
}
.wild-west-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 10px; 
}
.game-wild-west-title {
  text-align: center;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--white);
  background: linear-gradient(90deg, rgb(244, 212, 212), rgb(239, 221, 189), rgb(245, 232, 193), #3f221c, rgb(244, 219, 188), rgb(187, 249, 175), rgb(222, 206, 174));
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: color-shift 5s linear infinite;
}

.games-wild-west-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.games-card {
  position: relative;
  width: 380px; 
  height: 380px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.games-card:hover {
  transform: scale(0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.games-img {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.games-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.games-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); 
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: opacity 0.3s ease;
}

.games-card:hover .games-info {
  opacity: 1; 
}

.games-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--brown);
}

.games-content {
  padding: 0 10px;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  color: black;

}
.games-content::after {
  content: "..."; 
}

.games-btn{
  margin-bottom: 15px;
}
.table-wild-west-section {
  background: url('creativecove/bg-assets/bg-dark-068517b76c4567.jpg') no-repeat center center/cover; 
  color: #fff;
  text-align: center;
}

.table-wild-west-wrap {
  max-width: 1200px;
  background-color: rgba(0, 0, 0, 0.84); 
  padding: 20px;
  border-radius: 20px;
}

.step-wild-west-title {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(90deg, rgb(244, 212, 212), rgb(239, 221, 189), rgb(245, 232, 193), #3f221c, rgb(244, 219, 188), rgb(187, 249, 175), rgb(222, 206, 174));
        background-size: 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: color-shift 5s linear infinite;
}

.table-wild-west-title p {
  font-size: 26px;
  margin-bottom: 30px;
}

.lider-wild-west-table {
  width: 100%;
  border-collapse: collapse; 
  background-color: #fff; 
  border-radius: 20px;
  overflow: hidden;
}

.lider-wild-west-table th,
.lider-wild-west-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd; 
  font-size: 16px;
  color: #333; 
}
.lider-wild-west-table th {
  font-size: 24px;
  padding: 15px;
  text-align: center;
  background-color: var(--orange);
  color: #fff;
}
.lider-wild-west-table th svg{
 height: 26px;
color: var(--white);
fill: currentColor;
}

.lider-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%; 
}

.lider-award {
  width: 40px;
  height: 40px;
  object-fit: contain; 
}
.benefit-wild-west-section {
  background: url("creativecove/bg-assets/opacity_bg-168517b76c468f.png") no-repeat center center/cover;
}

.benefit-wild-west-wrap {
  max-width: 1200px;
  text-align: center;
}

.benefit-wild-west-title {
  font-size: 60px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
  font-weight: bold;
  background: linear-gradient(90deg, rgb(244, 212, 212), rgb(239, 221, 189), rgb(245, 232, 193), #3f221c, rgb(244, 219, 188), rgb(187, 249, 175), rgb(222, 206, 174));
        background-size: 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: color-shift 5s linear infinite;
}

.benefit-wild-west-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-direction: row;
}


.benefit-block-item{
  padding: 20px;
  margin: 20px;
  width: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  color: var(--brown);
  border: 2px solid var(--white);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.782);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-block-item:hover{
  transform: scale(1.1); 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}
.benefit-block{
  flex: 1;
}
.benefit-img {
  flex: 1;
  text-align: center;
}

.benefit-img img {
 width: 100%;
  height: auto;
}
.dev-wild-west-section {
  background: url("creativecove/bg-assets/opacity_bg-268517b76c46e0.png") no-repeat center center/cover;
  color: var(--white); 
}

.dev-wild-west-wrap {
  max-width: 1200px;
  text-align: center;
}

.dev-wild-west-wrap h3 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 40px;
  background: linear-gradient(90deg, rgb(244, 212, 212), rgb(239, 221, 189), rgb(245, 232, 193), #3f221c, rgb(244, 219, 188), rgb(187, 249, 175), rgb(222, 206, 174));
        background-size: 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: color-shift 5s linear infinite;
}

.dev-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.dev-item {
  flex: 1 1 calc(33.333% - 20px); 
  max-width: 250px; 
  text-align: center;
}

.dev-item img {
  width: 250px; 
  height: 250px; 
  object-fit: cover; 
  border-radius: 50%; 
  border: 5px solid #fff; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dev-item:hover img {
  transform: scale(1.1); 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.dev-item p {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffe8c1; 
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.dev-item:hover p {
  color: #ffd700; 
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8); 
}

.gallery-wild-west-section {
  background: url("creativecove/bg-assets/opacity_bg-368517b76c4731.png") no-repeat center center/cover;
  background-color: #8b5e3c; 
}

.gallery-wild-west-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  grid-auto-rows: 200px; 
  gap: 20px;
}

.gallery-wild-west-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  position: relative;
  border-radius: 20px;
  filter: brightness(0.7); 
  transition: filter 0.3s ease; 
}

.gallery-wild-west-wrap img:nth-child(1) {
  grid-column: span 2; 
  grid-row: span 2; 
}

.gallery-wild-west-wrap img:nth-child(4) {
  grid-column: span 1; 
}
.gallery-wild-west-wrap img:nth-child(6) {
  grid-column: span 1; 
}
.gallery-wild-west-wrap img:hover {
  filter: brightness(1); 
}

.contact-wild-west-section{
background-image: linear-gradient(to bottom, var(--brown), var(--brown-light));
}
.contact-wild-west-title {
  text-align: center;
  font-size: 60px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
  font-weight: bold;
  background: linear-gradient(90deg, rgb(244, 212, 212), rgb(239, 221, 189), rgb(245, 232, 193), #3f221c, rgb(244, 219, 188), rgb(187, 249, 175), rgb(222, 206, 174));
        background-size: 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: color-shift 5s linear infinite;
}
.contact-wild-west-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-wild-west-adres{
  display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin: 0 25px;
}
.contact-wild-west-cont-form{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
}
.contact-wild-west-list{
  display: flex;
    flex-direction: column;
    line-height: 2;
    color: white;
    align-items: center;
}
.contact-wild-west-item{
  margin: 25px 0;
  text-decoration: none;
  padding: 10px 20px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 26px;
}
.contact-wild-west-item p{
  margin: 0;
}
.contact-wild-west-item a,
.contact-wild-west-item p {
  word-break: break-all;
  color: #fff;
}
.form {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.title {
  color: var(--white);
  margin: 3rem 0;
  font-size: 2rem;
}

.input,
.input-form_area_group {
  margin: 0.5rem 0;
  padding: 1rem 0.5rem;
  width: 100%;
  font-size: 14px;
  background-color: inherit;
  color: wheat;
  border: none;
  outline: none;
  border-bottom: 1px solid wheat;
  transition: all 400ms;
}
.textarea,
.textarea-form_area_group {
  margin: 0.5rem 0;
  padding: 1rem 0.5rem;
  width: 100%;
  height: 90px;
  font-size: 14px;
  background-color: inherit;
  color: wheat;
  border: none;
  outline: none;
  border-bottom: 1px solid wheat;
  transition: all 400ms;
}

.input:hover,
.textarea:hover,
.input-form_area_group:hover,
.textarea-form_area_group:hover
 {
  background-color: #47231c;
  border: none;
  border-radius: 0.5rem;
}

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  color: #333;
  transition: color 0.3s;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid wheat;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
  transform-style: preserve-3d;
}

.custom-checkbox .checkmark::before {
  content: "\2713";
  font-size: 16px;
  color: transparent;
  transition: color 0.3s, transform 0.3s;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: #333;
  border-color: #333;
  transform: scale(1.1) rotateZ(360deg) rotateY(360deg);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::before {
  color: #fff;
}

.custom-checkbox:hover {
  color: #666;
}

.custom-checkbox:hover .checkmark {
  border-color: #666;
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.custom-checkbox input[type="checkbox"]:focus + .checkmark {
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
  outline: none;
}

.custom-checkbox .checkmark,
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  transition: background-color 1.3s, border-color 1.3s, color 1.3s, transform 0.3s;
}

.form-footer-wild-west-title {
  font-size: 30px;
    background: linear-gradient(90deg, rgb(244, 212, 212), rgb(239, 221, 189), rgb(245, 232, 193), #3f221c, rgb(244, 219, 188), rgb(187, 249, 175), rgb(222, 206, 174));
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: color-shift 5s linear infinite;
    text-align: center;
}
.footer-wild-west-section{
  background-color: var(--brown);
}

.footer-wild-west-wrap{
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
}
.footer-wild-west-wrap a{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-wild-west-menu{
  display: flex;
  flex-direction: row;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-wild-west-menu a{
  text-decoration: none;
  color: var(--white);
  padding: 10px 20px;
  border: 2px solid #ddd;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.footer-wild-west-menu a:hover{
  color: rgb(145, 136, 136);
  background-color: rgba(255, 255, 255, 0.153);
}

.wild-west-privacy-wrap h2{
  text-align: center;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--white);
  background: linear-gradient(90deg, rgb(244, 212, 212), rgb(239, 221, 189), rgb(245, 232, 193), #3f221c, rgb(244, 219, 188), rgb(187, 249, 175), rgb(222, 206, 174));
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: color-shift 5s linear infinite;
}
.wild-west-privacy-wrap p{
  color: var(--white);
  font-size: 18px;
}
.wild-west-privacy-wrap li{
  color: var(--white);
  font-size: 18px;
}
.wild-west-games-section {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brown-light), var(--brown));
  color: #333;
  gap: 30px;
}

.wild-west-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wild-west-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.wild-west-card-img img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.wild-west-card:hover .wild-west-card-img img {
  transform: scale(1.1);
}

.wild-west-card-body {
  padding: 20px;
}

.wild-west-card-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--white);
  margin: 0;
}

.wild-west-card-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #666;
}

.wild-west-card-info p {
  margin: 0;
}

.wild-west-card-info span {
  font-weight: bold;
  color: var(--orange);
}

.wild-west-card-text {
  font-size: 18px;
  line-height: 1.6;
  color: black;
}


.wild-west-iframe-games {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wild-west-iframe-games iframe {
  border: none;
  width: 100%;
  height: 640px;
  border-radius: 15px;
}

.disclaimer-wild-west-section {
  padding: 40px 20px;
  background: #fbe6c1;
  font-family: 'Playfair Display', serif;
  color: #4a2c2a;
}

.disclaimer-wild-west-wrap {
  max-width: 900px;
  margin: 0 auto;
  border: 4px dashed #8b5a2b; 
  border-radius: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #f7f2eb);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclaimer-wild-west-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.disclaimer-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #4a2c2a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 #8b5a2b;
}

.disclaimer-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.disclaimer-img img {
  width: 150px;
  height: auto;
  padding: 10px;
  border: 4px dashed #8b5a2b;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.disclaimer-img:hover img {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.disclaimer-text {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a2c2a;
}

.disclaimer-text p {
  margin: 0;
  text-align: justify;
}
.copyright-wild-west {
  text-align: center;
  padding: 20px;
  color: #4a2c2a;
  border-top: 4px dashed #8b5a2b;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}
.wild-west-current-year{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.wild-west-current-year p {
  margin: 5px 0;
  font-size: 1.2rem;
  color: rgb(239, 221, 189);
  font-weight: bold;
}
.about-wild-west-section {
  position: relative;
  padding: 60px 20px;
  background: #fbe6c1;
  color: #4a2c2a;
  font-family: 'Playfair Display', serif;
  overflow: hidden;
}


.about-wild-west-section video {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.about-wild-west-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8); 
  border: 4px dashed #8b5a2b;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about-wild-west-title {
  text-align: center;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--white);
  background: linear-gradient(90deg, rgb(244, 212, 212), rgb(239, 221, 189), rgb(245, 232, 193), #3f221c, rgb(244, 219, 188), rgb(187, 249, 175), rgb(222, 206, 174));
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: color-shift 5s linear infinite;
}

.about-wild-west-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a2c2a;
  text-align: justify;
  max-width: 800px;
}
.anim {
  opacity: 0; 
  transform: translateY(50px) scale(0.8); 
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim.animate {
  opacity: 1; 
  transform: translateY(0) scale(1); 
}

.wild-west-privacy-service {
  word-break: break-all;
}

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


@media (max-width: 1200px) {
.contact-wild-west-cont-form{
  flex-direction: column;
}
}

@media (max-width: 1024px) {
  .game-wild-west-title,
  .step-wild-west-title,
  .benefit-wild-west-title,
  .dev-wild-west-wrap h3,
  .contact-wild-west-title,
  .about-wild-west-title,
  .wild-west-privacy-wrap h2{
    font-size: 26px;
  }
}



@media (max-width: 768px) {

.header-wild-west-logo h1 {
font-size: 20px;
}
.header-wild-west-title h3 {
font-size: 22px;
}
.games-card {
  width: 100%; 
  height: auto; 
  margin: 15px;
}
.games-img {
  position: static;
  width: 100%; 
  height: auto; 
}
.games-img img {
  object-fit: cover; 
}
.games-info {
  position: static; 
  opacity: 1;
  background-color: transparent;
  display: block; 
}
.games-title {
  color: rgb(239, 221, 189);
  font-size: 20px;
  margin-bottom: 10px;
}
.table-wild-west-title p{
  font-size: 16px;
}
.games-content {
  font-size: 14px; 
  margin-bottom: 15px;
}
.lider-wild-west-table th,
.lider-wild-west-table td {
    padding: 10px;
    font-size: 14px;
}
.lider-avatar {
    width: 40px;
    height: 40px;
}
.lider-award {
    width: 30px;
    height: 30px;
}
.benefit-wild-west-list {
  flex-direction: column; 
  align-items: center;
}
.benefit-block,
.benefit-img {
  flex: 1 1 100%; 
}
.benefit-img {
  margin: 20px 0; 
}
.dev-item {
  flex: 1 1 calc(50% - 20px);
}
.gallery-wild-west-wrap {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px; 
}
.styled{
width: 200px;
}
.wild-west-title-wrap {
  flex-direction: column; 
  gap: 15px;
}

.wild-west-img {
  width: 120px;
  height: 120px;
}
.form-footer-wild-west-title {
  font-size: 20px;
}
.wild-west-card {
  width: 100%;
}

.wild-west-card-title {
  font-size: 1.5rem;
}
.wild-west-card-text {
  font-size: 0.9rem;
}
.disclaimer-wrap {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.disclaimer-img img {
  width: 120px;
}
.disclaimer-text {
  font-size: 1rem;
}
.wild-west-current-year {
  padding: 10px 15px;
  display: flex;
  justify-content: space-evenly;
}
.wild-west-current-year p {
  font-size: 16px;
}
.about-wild-west-title {
  font-size: 2rem;
}
.about-wild-west-text {
  font-size: 1rem;
}
.about-wild-west-wrap {
  padding: 15px;
}

.games-wild-west-cards {
  gap: 25px;
}
}
    



@media (max-width: 576px) {
  .wild-west-card-img img {
    height: auto;
  }
  .step-wild-west-title {
    font-size: 24px;
}

.table-wild-west-title p {
    font-size: 14px;
}

.lider-wild-west-table th,
.lider-wild-west-table td {
    padding: 8px;
    font-size: 12px;
}

.benefit-wild-west-title {
  font-size: 1.8rem; 
}

.benefit-block {
  font-size: 0.9rem;
}
.dev-item {
  flex: 1 1 100%; 
}

.dev-wild-west-wrap h3 {
  font-size: 1rem; 
}

.dev-item img {
  width: 200px; 
  height: 200px;
}
.gallery-wild-west-wrap {
display: flex;
flex-direction: column; 
}

.wild-west-img {
  width: 100px; 
  height: 100px;
}
.game-wild-west-title,
.step-wild-west-title,
.benefit-wild-west-title,
.dev-wild-west-title,
.contact-wild-west-title,
.about-wild-west-title,
.wild-west-privacy-wrap h2{
  font-size: 20px;
}
.contact-wild-west-item a, 
.contact-wild-west-item p{
font-size: 18px;
}
.wild-west-current-year{
  flex-direction: column;
}
.wild-west-current-year p {
  font-size: 14px;
}
.styled{
  padding: 3px;
  margin: 0;
}
.disclaimer-title {
  font-size: 20px;
}
}





.button-1 {
  background: var(--brown);
  color: var(--white);
  font-family: inherit;
  padding: 0.6em 1.3em;
  font-weight: 900;
  font-size: 16px;
  border: 2px solid black;
  border-radius: 0.4em;
  box-shadow: 0.1em 0.1em;
  cursor: pointer;
}

.button-1:hover {
  transform: translate(-0.05em, -0.05em);
  box-shadow: 0.15em 0.15em;
}

.button-1:active {
  transform: translate(0.05em, 0.05em);
  box-shadow: 0.05em 0.05em;
}



.button-2{
  padding: 20px 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.button-2:hover {
  background-color: var(--green);
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

.button-2:active {
  transform: translateY(-1px);
}
 

.button-3 {
  color: #ecf0f1;
  font-size: 17px;
  background-color: rgb(198, 167, 74);
  border: 1px solid var(--brown-light);
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  box-shadow: 0px 6px 0px var(--orange);
  transition: all 0.1s;
}

.button-3:active {
  box-shadow: 0px 2px 0px var(--orange);
  position: relative;
  top: 2px;
}


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

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

.button-4:active {
  transform: translateY(0px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}

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

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

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

.button-5 {
  background-color: #e0e0e0;
  border-radius: 5px;
  box-shadow: inset 3px 3px 10px #bcbcbc, inset -4px -4px 10px var(--white);
  color: var(--brown);
  cursor: pointer;
  font-size: 18px;
  padding: 15px 40px;
  transition: all 0.2s ease-in-out;
  border: 2px solid rgb(206, 206, 206);
}

.button-5:hover {
  box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff;
}

.button-5:focus {
  outline: none;
  box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff;
}

.game-wr{
  padding: 20px;

  h1{
    margin: 0;
  }
}