@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");

:root {
  --colorWhite: #ffffff;
  --colorDark: #060606;
  --white: #fff;
  --abuot-bg1: linear-gradient(120deg, #d19a66, #f4e2d8);
  --abuot-bg2: linear-gradient(135deg, #a67649, #e5c19e);
  --abuot-bg3: linear-gradient(180deg, #b04a4a, #e8bcae);
  --abuot-bg4: #1b1f24;
  --abuot-bg5: linear-gradient(135deg, #3b1e1e, #66231e);
  --video-bg-1: #e5d0bb;
  --video-bg-2: #dfcab5;
  --video-bg-3: #e0bfae;
  --video-bg-4: #d7b59b;
  --video-bg-5: #d4c1a1;

  --color-tex-darkTem-1: var(--colorDark);
  --color-tex-darkTem-2: var(--colorDark);
  --color-tex-darkTem-3: var(--colorDark);
  --color-tex-darkTem-4: var(--white);
  --color-tex-darkTem-5: var(--white);

  --colorBorder-1: #8b4513;
  --colorBorder-2: #6a452a;
  --colorBorder-3: #8b0000;
  --colorBorder-4: #ffcc00;
  --colorBorder-5: #a36744;

  --pink-1: #d8b998;
  --pink-2: #bca485;
  --pink-3: #cda58a;
  --pink-4: #b09178;
  --pink-5: #b9a179;
  --pink-dark-1: #b5916f;
  --pink-dark-2: #9a7f64;
  --pink-dark-3: #a67856;
  --pink-dark-4: #886a52;
  --pink-dark-5: #917854;
  --transparent-pink-1: rgba(216, 185, 152, 0);
  --transparent-pink-2: rgba(188, 164, 133, 0);
  --transparent-pink-3: rgba(205, 165, 138, 0);
  --transparent-pink-4: rgba(176, 145, 120, 0);
  --transparent-pink-5: rgba(185, 161, 121, 0);

  --align-items-1: flex-start;
  --align-items-2: flex-end;

  --hover-1: #ffcc00;
  --hover-2: #ff0000;

  --bg-warning: radial-gradient(circle, #ffcc00, #ff6600);

  --shadow-accent: rgba(0, 0, 0, 0.5);
  --container-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  --wild-west-bg: #f7e3d1;
  --text-color: #5a3c1a;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

body {
  direction: ltr;
  font-family: "Marcellus", sans-serif !important;
  font-size: 15px;
  margin: 0;
  padding: 0px;
  line-height: 1.5;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 200ms linear;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

img,
video {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

ul {
  list-style: none;
}
[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}
h2 {
  font-size: clamp(21px, 4vw, 36px);
}

.btnWest-1 {
  display: block;
  width: fit-content;
  text-align: center;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1b1f24;
  font-size: 16px;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btnWest-1:hover {
  background: linear-gradient(135deg, #ff8c00, #ffd700);
}
.btnWest-2 {
  display: block;
  width: fit-content;
  text-align: center;
  background: #8b4513;
  color: #ffd700;
  font-size: 16px;
  padding: 10px 40px;
  border-radius: 10px;
  border: 4px solid #ffd700;
  position: relative;
  cursor: pointer;
}
.btnWest-2:hover::after {
  content: "★";
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  animation: sparkle 1s infinite;
}

@keyframes sparkle {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.btnWest-3 {
  text-align: center;
  width: fit-content;
  display: block;
  background-color: #a66b3f;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btnWest-3:hover {
  background-color: #814c2c;
}

.btnWest-4 {
  display: block;
  text-align: center;
  width: fit-content;
  background: #1b1f24;
  color: #fff;
  padding: 10px 30px;
  border: 2px solid #ff4500;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}

.btnWest-4:hover:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: #ff4500;
  animation: bulletTrail 0.5s ease-in-out forwards;
}
@keyframes bulletTrail {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.btnWest-5 {
  width: fit-content;
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #8b0000, #ff4500);
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.btnWest-5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: yellow;
  border-radius: 50%;
  animation: flicker 0.2s infinite;
}
@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.btnWest-5:hover {
  background: linear-gradient(90deg, #ff4500, #8b0000);
  color: #fff;
  box-shadow: 0 0 15px #ff4500, 0 0 30px #ff6347;
}

.btnWest-5:hover::before {
  animation: fuse-flicker 0.1s infinite alternate;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
}
.flex-boxTop {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: var(--align-items-2);
}
.conteiner-section {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.navbar {
  background-color: #eedcc9;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding-left: 62px;
  padding-right: 62px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  box-shadow: 0 12px 48px rgba(112, 54, 0, 0.13);
}
.logoWest {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--colorDark);
  img {
    height: 45px;
    width: auto;
    object-fit: contain;
  }
}
.nav-menu {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  align-items: center;
  display: flex;
}
.w-nav-link {
  text-align: center;
  display: inline-block;
  color: var(--colorDark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  transition: color 0.3s ease-in-out;
}

.w-nav-link:hover,
.w-nav-link:focus {
  color: var(--hover-2);
}
.menu-toggle {
  background: none;
  border: none;
  color: #744f40;
  cursor: pointer;
  display: none;
  position: relative;
  height: 60px;
  padding: 18px;
  border-radius: 12px;
  background-color: #f1e6da;
  box-shadow: inset 0 -2px 0 1px rgba(0, 0, 0, 0.07);
}

.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  display: block;
  width: 25px;
  height: 3px;
  background: #744f40;
  margin: 0px auto;
  transition: all 0.3s;
}

.menu-toggle .hamburger::before {
  content: "";
  transform: translateY(-9px);
}

.menu-toggle .hamburger::after {
  content: "";
  transform: translateY(9px);
}

.menu-toggle.active .hamburger {
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger::before {
  transform: rotate(90deg);
}

.menu-toggle.active .hamburger::after {
  transform: rotate(90deg);
  opacity: 0;
}
.nav-menuMobil {
  display: none;
  flex-direction: column;
  background-color: #c8c8c8;
  position: absolute;
  flex-direction: column;
  gap: 15px;
  top: 0;
  min-width: 200px;
  overflow: hidden;
  left: 0;
  right: 0;
  text-align: center;
  gap: 15px;
  padding: 48px 80px;
}
.menuMobil_img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }
}
.nav-menuMobil.active {
  display: flex;
  top: 100%;
  transition: all, transform 400ms;
}
.hero-section {
  grid-row-gap: 10px;
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 26px;
  min-height: 90vh;
  padding: 100px 62px;
  display: flex;
}
.hero-title {
  position: relative;
  max-width: 60%;
  margin-bottom: 30px;
  h1 {
    color: var(--colorDark);
    font-weight: 500;
    font-size: clamp(25px, 4.3vw, 50px);
  }
}
.title-underline {
  position: relative;
  margin-top: 10px;
  height: 1px;
  background: linear-gradient(90deg, #c9730d, #f2b441);
}

.title-underline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #c9730d, #f2b441);
}

.title-underline .shape {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(90deg, #c9730d, #f2b441);
  clip-path: polygon(
    50% 0%,
    83% 12%,
    100% 43%,
    94% 78%,
    68% 100%,
    32% 100%,
    6% 78%,
    0% 43%,
    17% 12%
  );
}

.hero-text {
  color: var(--colorDark);
  max-width: 60%;
  font-size: clamp(18px, 3vw, 25px);
}
.hero-img {
  background-image: url(creativecove/back/bg-light-068d3f919b1485.jpg);
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 40vh;
  display: none;
}
.section-vidio {
  background-color: var(--video-bg-3);
  background-image: url(creativecove/back/opacity_bg-068d3f919b158a.png);
  background-position: 50% 100%;
  background-size: cover;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 100px 80px;
  display: flex;
  position: relative;
}

.image-section {
  display: block;
  position: absolute;
  top: -132px;
  max-height: 500px;
}
.media-block {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  overflow: hidden;
  border: 2px solid var(--colorBorder-1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.play-button {
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: var(--hover-2);
  border: 4px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.section-games {
  padding: 90px 80px;
  background-color: #f0e2b6;
}
.games-listWM {
  display: flex;
  gap: 52px;
  flex-direction: column;
}
.game-itemWM {
  display: flex;
  justify-content: center;
  gap: 30px;
  border-radius: 22px;
  overflow: hidden;
  flex-direction: row-reverse;
  transition: box-shadow 0.3s ease-in-out;
}
.game-itemWM:hover {
  box-shadow: -1px 3px 8px rgba(112, 54, 0, 0.1),
    -3px 14px 14px rgba(112, 54, 0, 0.09), -7px 31px 19px rgba(112, 54, 0, 0.05),
    -13px 56px 23px rgba(112, 54, 0, 0.01), -20px 87px 25px rgba(112, 54, 0, 0);
}
.game-itemWM_element {
  flex: 1;
}
.game-itemWM_link {
  width: 100%;
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    height: 510px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
  }
}
.game-itemWM_contWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
  flex-direction: column;
  gap: 20px;
}
.game-itemWM_title {
  color: var(--colorDark);
  font-weight: 600;
}
.game-itemWM_contWrapper .hero-title {
  max-width: 100%;
}
.game-itemWM_context {
  font-size: 18px;
  font-weight: 400;
}
.game-itemWM:nth-child(even) {
  flex-direction: row-reverse;
}
.footer-wrapper {
  display: flex;
  gap: 49px;
  flex-direction: column;
}
.footer-element {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.foorer-copyright {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: var(--colorDark);
  font-size: 17px;
}
.footer-bg {
  background-color: #eedcc9;
  box-shadow: 0 12px 48px rgba(112, 54, 0, 0.13);
}
.footer-ingWk {
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    width: auto;
    height: 60px;
    object-fit: contain;
  }
}
.footer-listWk {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-listWk li a {
  padding: 0 10px;
  display: block;
  font-weight: 600;
  font-size: 17px;
  position: relative;
  text-align: center;
}
.footer-listWk li a:hover,
.footer-listWk li a:focus {
  color: var(--hover-2);
}
.footer-listWk li:not(:first-child) a::before {
  position: absolute;
  content: "";
  top: 50%;
  inset-inline-start: -13px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #ffab53;
  clip-path: polygon(
    50% 0%,
    83% 12%,
    100% 43%,
    94% 78%,
    68% 100%,
    32% 100%,
    6% 78%,
    0% 43%,
    17% 12%
  );
}

.disclaimer-section-bold {
  background: var(--bg-warning);
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--container-shadow);
  border: 3px solid var(--colorBorder-1);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.disclaimer-section-bold::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.1), #b22222);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.disclaimer-container {
  position: relative;
  z-index: 1;
}

.disclaimer-title-bold {
  font-family: "Cinzel", serif;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 2px 2px 6px var(--shadow-accent);
  margin-bottom: 20px;
}

.disclaimer-text-bold {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: var(--white);
  line-height: 1.6;
  padding: 0 10px;
  text-shadow: 1px 1px 4px var(--shadow-accent);
}

.about-section {
  background: var(--abuot-bg3);
  padding: 100px 80px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: row-reverse;
}

.about-text {
  width: 100%;
  height: 100%;
  font-size: 1.03rem;
  padding: 20px;
  background: var(--colorWhite);
  border: 2px solid var(--colorBorder-3);
  border-radius: 18px;
  box-shadow: 5px 5px 20px var(--shadow-color);
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}
.about-section .about-title {
  color: var(--color-tex-darkTem-3);
}
.form-btn {
  margin: 0 auto;
}
.about-title {
  margin-bottom: 50px;
  text-align: left;
  font-family: "Cinzel", serif;
  color: var(--colorDark);
  text-transform: uppercase;
  text-shadow: 2px 2px var(--shadow-color);
}

.about-text div {
  color: var(--text-color);
  line-height: 1.6;
}

.about-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  border: 2px solid var(--colorBorder-3);
  border-radius: 18px;
  box-shadow: 5px 5px 15px var(--shadow-color);
}

.places-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.title-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.step-img {
  width: auto;
  height: 350px;
  object-fit: contain;
  display: inline-block;
}

.slider-container {
  position: relative;
  max-width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 24px;
  display: block;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  background-image: linear-gradient(90deg, var(--colorDark), #ffffff00 62%),
    url(creativecove/back/bg-light-168d3f919b14a3.jpg);
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding: 48px;
  vertical-align: top;
  white-space: normal;
  text-align: left;
  min-width: 100%;
  height: 100%;
  color: #fff;
}
.slide2 {
  background-image: linear-gradient(90deg, var(--colorDark), #ffffff00 62%),
    url(creativecove/back/bg-light-268d3f919b14bf.jpg);
  background-position: 0 0, 50%;
  background-size: auto, cover;
}
.slide3 {
  background-image: linear-gradient(90deg, var(--colorDark), #ffffff00 62%),
    url(creativecove/back/bg-light-368d3f919b14d9.jpg);
  background-position: 0 0, 50%;
  background-size: auto, cover;
}
.slide4 {
  background-image: linear-gradient(90deg, var(--colorDark), #ffffff00 62%),
    url(creativecove/back/bg-light-468d3f919b14f3.jpg);
  background-position: 0 0, 50%;
  background-size: auto, cover;
}
.step-content {
  display: flex;
  flex-direction: column;
  width: 45%;
  height: 100%;
  gap: 20px;
  font-size: 1.005rem;
  justify-content: center;
  color: var(--colorWhite);
}
.number {
  font-size: 2.02rem;
  color: var(--button-text-color);
}

.slider-toggle {
  position: absolute;
  bottom: 48px;
  right: 0;
  transform: translateX(-50%);
  background: var(--colorBorder-2);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: background 0.3s;
  svg {
    fill: var(--colorWhite);
    width: 50px;
    height: 50px;
  }
}

.slider-toggle:hover {
  background: #aa6f39;
}
.step-list {
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.letter {
  background: #fafafa;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3),
    0 0 300px 25px rgba(222, 198, 122, 0.7) inset;
  padding: 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: var(--colorDark);
  align-items: start;
}
.letter:before,
.letter:after {
  content: "";
  background: #fafafa;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2),
    inset 0 0 300px rgba(222, 198, 122, 0.7);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  transition: 0.5s;
}

.letter:before {
  left: -5px;
  top: 2px;
  transform: rotate(-1.5deg);
}

.letter:after {
  right: -3px;
  top: 0px;
  transform: rotate(2.4deg);
}

.letter:hover:before {
  transform: rotate(0deg);
  border: solid rgba(111, 99, 61, 0.4);
  border-width: 0px 0px 0px 1px;
  left: -6px;
  top: -6px;
}

.letter:hover:after {
  transform: rotate(0deg);
  border: solid rgba(111, 99, 61, 0.4);
  border-width: 0px 0px 0px 1px;
  right: 3px;
  top: -3px;
}
.privacy-wrapper {
  word-break: break-word;
}
.privacy-wrapper p {
  margin-bottom: 10px;
  text-indent: 3ch;
}
.privacy-wrapper h1 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 26px;
}
.privacy-wrapper h2 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
.privacy-wrapper table,
.privacy-wrapper a {
  word-break: break-word;
  color: inherit;
}
.flex-colBox {
  display: flex;
  flex-direction: column;
}
.gapLK {
  gap: 49px;
}
.play-game {
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
}
.page-content {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.page-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  img {
    width: 100%;
    height: 400px;
    object-fit: contain;
  }
}
.page-text {
  font-size: 17px;
  text-align: justify;
  color: var(--colorDark);
  p {
    margin-bottom: 10px;
    text-indent: 3ch;
  }
}
.page-text ul,
ol {
  list-style: inside;
}
.form-conteiner {
  display: flex;
  position: relative;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  justify-content: center;
}
.image-1 {
  width: 30%;
  z-index: 0;
  height: 700px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.image-2 {
  width: 30%;
  transform-style: preserve-3d;
  height: 700px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0;
  right: auto;
  transform: rotateX(0) rotateY(180deg) rotateZ(0);
}
.contact-form-wrapper {
  z-index: 1;
  width: 40%;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-radius: 18px;
  flex-direction: column;
  padding: 48px;
  display: flex;
  position: relative;
}
.game-input,
.game-textarea,
.input-groupsection_section,
.textarea-groupsection_section {
  width: 100%;
  background-color: var(--colorWhite);
  color: var(--colorDark);
  padding: 16px;
  border-radius: 12px;
  border: 1px #000;
  outline: none;
  border-bottom: 0.5px #fff;
}
.groupElement {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 15px;
}
.check-prev {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-grid_item {
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--colorBorder-3);
  border-radius: 18px;
  height: 40vh;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 200ms linear;
  }
}
.gallery-grid_item:hover img {
  transform: scale(1.05);
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.724);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 18px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  user-select: none;
  transition: 0.3s;
}

.prev {
  inset-inline-start: 0;
}

.next {
  inset-inline-end: 0;
}

.prev:hover,
.next:hover {
  background-color: rgba(1, 44, 5, 0.8);
}

.contacr-listHJ {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contacr-listHJ li {
  flex-grow: 1;
  flex-basis: 250px;
  text-align: center;
  border-radius: 18px;
}
.contacr-listHJ li a {
  word-wrap: break-word;
}
.contacr-listHJ li a:hover {
  color: #ffd700;
}

.pink {
  --paper-color: var(--pink-3);
  --paper-dark: var(--pink-dark-3);
  --shadow-size: 1px;
  --transparent: var(--transparent-pink-3);
}

.paper {
  position: relative;
  background: linear-gradient(
      to bottom right,
      var(--paper-dark) 20%,
      var(--transparent)
    ),
    var(--paper-color);

  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Caveat", cursive;
  font-size: 1.03rem;
  box-shadow: var(--shadow-size) var(--shadow-size) 2px var(--paper-dark);
  padding: 40px;
}

.paper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      var(--transparent),
      50%,
      var(--paper-dark),
      51%,
      var(--transparent)
    ),
    linear-gradient(
      to right,
      var(--transparent),
      50%,
      var(--paper-dark),
      51%,
      var(--transparent)
    );
  z-index: 1;
  pointer-events: none;
}

.contacr-listHJ .paper::after {
  background: transparent;
}

@media (max-width: 575px) {
  .flex-boxTop {
    justify-content: center;
  }
  .nav-menuMobil {
    padding: 48px 20px;
  }
  .footer-element {
    justify-content: center;
  }
  .about-image {
    height: auto;
  }
  .about-text {
    padding: 20px 10px;
  }
  .step-content {
    width: 100%;
    font-size: 1rem;
  }
  .slide {
    padding: 48px 15px;
  }
  .slider-toggle {
    bottom: 0;
    right: -24px;
    width: 48px;
    height: 48px;
    svg {
      width: 30px;
      height: 30px;
    }
  }
  .step-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .page-img img {
    height: auto;
  }
  .page-text {
    padding: 24px 15px;
  }
  .contact-form-wrapper {
    padding: 48px 15px;
  }
  .hero-title h1 {
    text-align: center;
  }
  .about-title {
    text-align: center;
    text-shadow: 1px 1px var(--shadow-color);
  }
  .footer-listWk li:not(:first-child) a::before {
    inset-inline-start: -8px;
  }
  .game-itemWM_context {
    font-size: 16px;
  }
}
@media (min-width: 575px) and (max-width: 992px) {
  .about-image {
    height: 350px;
  }
  .step-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 575px) and (max-width: 768px) {
  .step-content {
    width: 85%;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
  }
  .navbar,
  .hero-section,
  .section-vidio,
  .section-games,
  .about-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .disclaimer-section-bold {
    padding: 40px 10px;
  }

  .disclaimer-title-bold {
    font-size: 28px;
  }

  .disclaimer-text-bold {
    font-size: 16px;
  }
  .slide {
    background-image: linear-gradient(90deg, var(--colorDark), #ffffff00 100%),
      url(creativecove/back/bg-light-168d3f919b14a3.jpg);
  }
  .slide2 {
    background-image: linear-gradient(90deg, var(--colorDark), #ffffff00 100%),
      url(creativecove/back/bg-light-268d3f919b14bf.jpg);
  }
  .slide3 {
    background-image: linear-gradient(90deg, var(--colorDark), #ffffff00 100%),
      url(creativecove/back/bg-light-368d3f919b14d9.jpg);
  }
  .slide4 {
    background-image: linear-gradient(90deg, var(--colorDark), #ffffff00 100%),
      url(creativecove/back/bg-light-468d3f919b14f3.jpg);
  }
  .page-content .letter::before {
    transform: rotate(0deg);
    border: solid rgba(111, 99, 61, 0.4);
    border-width: 0px 0px 0px 1px;
    left: -6px;
    top: -6px;
  }
  .page-content .letter::after {
    transform: rotate(0deg);
    border: solid rgba(111, 99, 61, 0.4);
    border-width: 0px 0px 0px 1px;
    right: 3px;
    top: -3px;
  }
  .prev {
    inset-inline-end: 50%;
    inset-inline-start: auto;
  }
  .next {
    inset-inline-start: 50%;
    inset-inline-end: auto;
  }
  .prev,
  .next {
    bottom: 0;
    top: auto;
    font-size: 22px;
  }
  .game-itemWM {
    box-shadow: -1px 3px 8px rgba(112, 54, 0, 0.1),
      -3px 14px 14px rgba(112, 54, 0, 0.09),
      -7px 31px 19px rgba(112, 54, 0, 0.05),
      -13px 56px 23px rgba(112, 54, 0, 0.01),
      -20px 87px 25px rgba(112, 54, 0, 0);
  }
}

@media (max-width: 992px) {
  .hero-img {
    display: block;
  }
  .hero-section {
    background-color: #f1e6da;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    justify-content: flex-start;
    height: auto;
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .hero-title,
  .hero-text {
    max-width: 100%;
    text-align: left;
  }
  .content-wrapper {
    align-items: center;
  }
  .image-section {
    top: -90px;
  }
  .game-itemWM,
  .game-itemWM:nth-child(even) {
    align-items: normal;
    flex-direction: column;
  }
  .game-itemWM_link img {
    height: 40vh;
  }
  .game-itemWM_title {
    text-align: center;
  }
  .about-content {
    flex-direction: column;
  }
  .places-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .image-1,
  .image-2 {
    display: none;
  }
  .contact-form-wrapper {
    width: 100%;
  }
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.footer-logos a img {
  height: 50px;
  width: 100%;
  object-fit: contain;
  display: block;
}

/* Free Games Banner Styles */
.free-games-banner {
  background: linear-gradient(135deg, #246226, #13aac5);
  color: white;
  text-align: center;
  padding: 12px 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.free-games-banner .banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.free-games-banner p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .free-games-banner p {
    font-size: 14px;
  }
}
