/* RESET & BASE */

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

* {
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
}
html {
  overflow-x: hidden; 
}
body {
  background-color: #7927B9;
  transition: background-color 0.8s ease;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  text-align: center;
}

body.index {
  overflow: hidden;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.07) 2px, rgba(0,0,0,0.07) 4px);
    pointer-events: none;
    z-index: 999;
  }

/* TYPOGRAPHY */

@font-face {
  font-family: 'Hetilica';
  src: url('assets/hetilica.ttf') format('truetype');
}

h1 {
  color: #000000;
  margin-top: 40px;
  font-family: 'Hetilica', sans-serif;
  font-size: clamp(4rem, 14vw, 7.5rem);
  letter-spacing: 0;
  line-height: 0.9;
  position: relative;
  display: inline-block;
}

a {
  text-decoration: none;
  color: #e8b840;
  font-family:'Hetilica',sans-serif;
  font-size: clamp(4rem, 14vw, 7.5rem);
  letter-spacing:0em;line-height:0.88;
  text-shadow:0px 0px 10px rgba(232, 184, 64, 0.63),5px 5px 0 rgba(100, 70, 0, 0.642);}


h2 {
    font-size: 25px;
    padding: 2px 2px;
    text-align: center;
    margin-left: 50px;
}

h4 {
  font-family: 'hetilica', sans-serif;
  color: #fff;
  font-size: clamp(5px, 3vw, 20px);
  letter-spacing: 4px;
  margin-bottom: 0;
}

.shop-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.shopimg img {
max-width: 100%;
height: auto;
filter: 
    drop-shadow(0 0 30px rgba(232, 184, 64, 0.6))
    drop-shadow(0 0 30px rgba(232, 184, 64, 0.3));
}

.shop::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.07) 2px,
    rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

.text-block {
  flex: 1; 
  font-size: clamp(18px, 1.2vw, 25px);
  line-height: 1.6;
  word-wrap: break-word;
  text-align: left;
  margin: auto;
}

@media (max-width: 600px) {
  .shop-layout {
    flex-direction: column;
    padding: 20px;
  }

  .shopimg img {
    width: 100%;
  }
}

/* SWIPER */

.swiper {
  width: 100%;
  padding: 20px 0;
  overflow: visible;
  border-top: 4px;
  right: 2.5%;
}

.swiper-slide {
  width: clamp(200px, 35vw, 450px);
  height: clamp(133px, 23vw 366px);
}

.swiper-slide img {
  display: block;
  width: 120%;
  height: 120%;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 4mm 8mm rgba(0, 0, 0, 0.496));

}


/* BUTTONS */


button {
  background-color: transparent;
  border: none;
  color: #000000;
  padding: 20px 20px;
  margin: 0 clamp(4px, 1vw, 10px) clamp(4px, 1vw, 10px);
  cursor: pointer;
  font-size: clamp(25px, 2.5vw, 80px);
  letter-spacing: 3px;
  transition: all 0.1s ease;
}

button:active {
  transform: scale(0.97);
  opacity: 0.8;
}

.buttons {
display: flex;
align-items: center;
justify-content: center;
background-color: transparent;
size: 100px;
margin-top: 20px;
}


.buttonshop {
  color: #fff;
  display: flex;
  gap: 2px;
  margin-top: 20px;
  flex-wrap: wrap;
  filter: drop-shadow(0 4mm 4mm rgba(0, 0, 0, 0.2));

}

.buttonshop button {
    color: #fff;

  background-color: transparent;
  border: 2px solid rgb(255, 255, 255);
  font-family: 'Bebas Neue', sans-serif;
  padding: 8px 8px;
  border-radius: 5px;
  cursor: pointer;
  font-size: clamp(22px, 1vw, 22px);
  letter-spacing: 3px;
  transition: background-color 0.2s, color 0.2s;
}

#buy {
  color:#000000;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #e8b840;
  padding: 8px 148px;
  border: transparent
}

.buttonshop button.selected {
  background-color: white;
  color: black;
  box-shadow: #000000;
  border-color: white;
}

#awale {
   color:#000000;
    box-sizing: auto;
    background-color: #c07aff;
    border-color: #c07aff;
      padding: 8px 162px;
}


#gameicon {
  width: clamp(42px, 4vw, 90px);
  height: auto;
}

