/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --container-width: 1440px;
  --container-padding: 100px;
  --container-padding-tablet: 16px;
  
  /* Морская цветовая палитра (обновлённая) */
  --primary-bg: #071B2E;        /* глубокий океанический синий */
  --secondary-bg: #0F2E3D;      /* тёмный тёмно-бирюзовый */
  --accent-1: #14B8C4;          /* яркий морской циан */
  --accent-2: #7DE3F4;          /* светлая аква */
  --sand-accent: #F0C27B;       /* тёплый песочный */
  --text-primary: #EAF8FF;      /* светлый для контраста */
  --text-secondary: #A8D3DE;    /* приглушённый голубовато-серый */
  
  --background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
  --font-color: var(--text-primary);
  --font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1rem);
  --font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-heading: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --laptop-size: 1199px;
  --tablet-size: 959px;
  --mobile-size: 599px;
}

h1,
h2,
h2,
h3,
.site__h3 {
  font-weight: normal;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 50%, var(--accent-1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(95, 179, 193, 0.3);
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2,
.site__h2 {
  font-size: clamp(1.2rem, 0.8rem + 2vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h3,
.site__h3 {
  font-size: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  background: var(--background);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Морские волны анимация */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(45, 127, 142, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(95, 179, 193, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

html,
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.site__no-scroll {
  overflow: hidden;
}

.site__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.site__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.site__items .site__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.site__terms .site__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.site__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 80px;
  margin: 40px 0;
}

.site__btn,
.site__btn:focus {
  white-space: nowrap;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding: 16px 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 50%, var(--accent-1) 100%);
  border: 2px solid var(--accent-1);
  box-shadow: 
    0 4px 15px rgba(45, 127, 142, 0.3),
    inset 0 1px 0 rgba(95, 179, 193, 0.2);
  color: var(--text-primary) !important;
  font-size: clamp(0.75rem, 0.6634615385rem + 0.3846153846vw, 1rem);
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.site__btn-active,
.site__btn:hover,
.site__btn:active {
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(45, 127, 142, 0.4),
    inset 0 1px 0 rgba(95, 179, 193, 0.3);
  filter: brightness(1.1);
}

.site__wrapper {
  border-radius: 20px;
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
  border: 2px solid var(--accent-1);
  box-shadow: 
    0 8px 32px rgba(10, 30, 47, 0.3),
    inset 0 1px 0 rgba(95, 179, 193, 0.2),
    inset 0 -1px 0 rgba(45, 127, 142, 0.1);
  padding: 60px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Морские волны в карточках */
.site__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(45, 127, 142, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(95, 179, 193, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.site__wrapper img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 360px;
}

.site__wrap {
  border-radius: 20px;
  background: #1B1D21;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  max-width: 800px;
  font-size: clamp(0.875rem, 0.7884615385rem + 0.3846153846vw, 1.125rem);
}

.site__center {
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
}

/* Blocks */

.site__banner .site__btn {
  position: relative;
  overflow: hidden;
}

.site__banner .site__btn::after {
  content: "";
  opacity: 0.6;
  position: absolute;
  top: -100px;
  left: -100px;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(70%, rgba(255, 255, 255, 0.7)));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7) 70%);
  width: 40px;
  height: 320px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: slide;
  animation-name: slide;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0) rotate(45deg);
    transform: translateX(0) rotate(45deg);
  }

  30%, 100% {
    -webkit-transform: translateX(500px) rotate(45deg);
    transform: translateX(500px) rotate(45deg);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(0) rotate(45deg);
    transform: translateX(0) rotate(45deg);
  }

  30%, 100% {
    -webkit-transform: translateX(500px) rotate(45deg);
    transform: translateX(500px) rotate(45deg);
  }
}

.site__contact .site__btn {
  width: 100%;
  max-width: 434px;
  margin-inline: auto;
}

.site__contact form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 800px;
  position: relative;
}

.site__contact form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.site__contact input,
.site__contact textarea {
  background: transparent;
  border-radius: 20px;
  background: #206867;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3) inset;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3) inset;
  padding: 16px 20px;
  color: #fff;
  font-weight: 400;
}

.site__contact ::-webkit-input-placeholder {
  font-weight: 400;
  color: #F0F0F0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.site__contact ::-moz-placeholder {
  font-weight: 400;
  color: #F0F0F0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.site__contact :-ms-input-placeholder {
  font-weight: 400;
  color: #F0F0F0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.site__contact ::-ms-input-placeholder {
  font-weight: 400;
  color: #F0F0F0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.site__contact ::placeholder {
  font-weight: 400;
  color: #F0F0F0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.site__contact textarea {
  resize: none;
}

.site__contact label {
  font-family: var(--font-family);
}

.site__contact .site__img {
  width: 100%;
  max-width: 800px;
  height: 300px;
  background-image: url("../images/fishermans-text.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}				.site__avif .site__contact .site__img {					background-image: url("../images/site__mount-m-logo.avif")				}			

.site__contact .site__warning {
  display: none;
  width: 100%;
  color: green;
  padding: 10px;
  border: 1px solid green;
  border-radius: 10px;
  background: #e0e0e0;
  position: absolute;
  bottom: 0;
  left: 0;
}

.site__footer {
  margin-top: auto;
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
  position: relative;
  padding: 60px 0 40px;
  border-top: 2px solid var(--accent-1);
  overflow: hidden;
}

.site__footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site__footer__main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.site__footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site__footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.site__footer__logo img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: rgba(45, 127, 142, 0.1);
  padding: 8px;
}

.site__footer__brand {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 50%, var(--accent-1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(95, 179, 193, 0.3);
}

.site__footer__description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
  max-width: 300px;
}

.site__footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.site__footer__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site__footer__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.site__footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site__footer__list li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.site__footer__list li a:hover,
.site__footer__list li a.site__active {
  color: var(--accent-2);
  transform: translateX(5px);
}

.site__footer__gambling-logos {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(45, 127, 142, 0.2);
  border-bottom: 1px solid rgba(45, 127, 142, 0.2);
}

.site__footer__gambling-logos a {
  display: block;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 8px;
  background: rgba(45, 127, 142, 0.1);
  backdrop-filter: blur(10px);
}

.site__footer__gambling-logos a:hover {
  transform: scale(1.05);
  background: rgba(95, 179, 193, 0.2);
  box-shadow: 0 4px 15px rgba(45, 127, 142, 0.3);
}

.site__footer__gambling-logos img {
  height: 100px;
  width: 200px;
  object-fit: cover;
}

.site__footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  gap: 30px;
}

.site__footer__age-warning {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.site__footer__age-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(45, 127, 142, 0.3);
  flex-shrink: 0;
}

.site__footer__age-warning p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.site__footer__copyright {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0;
  text-align: right;
}

/* Морские волны в footer */
.site__footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(45, 127, 142, 0.1) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(95, 179, 193, 0.05) 50%, transparent 70%);
  animation: wave 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.site__footer a {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.site__footer a:hover {
  transform: translateY(-2px);
  filter: brightness(1.3);
  text-shadow: 0 0 10px rgba(95, 179, 193, 0.5);
}

.site__footer p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.site__footer img {
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 8px;
  background: rgba(45, 127, 142, 0.1);
  backdrop-filter: blur(10px);
}

.site__footer img:hover {
  transform: scale(1.05);
  background: rgba(95, 179, 193, 0.2);
  box-shadow: 0 4px 15px rgba(45, 127, 142, 0.3);
}

.site__footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.site__footer .site__age {
  position: relative;
  text-align: center;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 50px;
}

.site__footer .site__age span {
  position: absolute;
  right: 0;
  top: -5px;
  width: 40px;
  aspect-ratio: 1/1;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.site__game {
  padding: 20px 0;
}

.site__game iframe {
  width: 100%;
  max-width: 900px;
  height: 560px;
  margin-inline: auto;
  border-radius: 20px;
  background: #1B1D21;
  -webkit-box-shadow: 0px 0px 20px 0px #0196A0 inset;
  box-shadow: 0px 0px 20px 0px #0196A0 inset;
  background-image: url("../images/site__loading.gif");
  background-position: center center;
  background-size: 60px 60px;
  background-repeat: no-repeat;
}

.site__header {
  padding: 20px 0;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--accent-1);
  box-shadow: 
    0 8px 32px rgba(10, 30, 47, 0.3),
    inset 0 1px 0 rgba(95, 179, 193, 0.2);
}

/* Морские волны в header */
.site__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(45, 127, 142, 0.1) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(95, 179, 193, 0.05) 50%, transparent 70%);
  animation: wave 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wave {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(10px) translateY(-5px); }
  50% { transform: translateX(-5px) translateY(5px); }
  75% { transform: translateX(5px) translateY(-3px); }
}

.site__header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.site__header .site__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site__header .site__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.site__header .site__nav__list a {
  padding: 12px 20px;
  border-bottom: 2px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.5rem, 0.3269230769rem + 0.7692307692vw, 1rem);
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: rgba(45, 127, 142, 0.1);
  backdrop-filter: blur(10px);
}

.site__header .site__nav__list a:hover {
  border-color: var(--accent-2);
  background: rgba(95, 179, 193, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 127, 142, 0.3);
}

.site__header .site__active {
  border-color: var(--sand-accent) !important;
  background: rgba(212, 165, 116, 0.2);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.site__header a {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site__header .site__logo {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 50%, var(--accent-1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: clamp(0.4375rem, 0.1995192308rem + 1.0576923077vw, 1.125rem);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 0 20px rgba(95, 179, 193, 0.3);
}

.site__logo__text {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 1px;
}

.site__header .site__logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.site__header .site__logo img {
  width: 60px;
  aspect-ratio: 1/1;
}

.site__header .site__dropdown {
  position: relative;
  font-family: var(--font-family);
  font-size: clamp(0.625rem, 0.4951923077rem + 0.5769230769vw, 1rem);
}

.site__header .site__dropdown button {
  text-transform: uppercase;
}

.site__dropdown__text {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site__dropdown__icon {
  transition: all 0.3s ease;
  fill: currentColor;
}

.site__header .site__dropdown button::after {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background-image: url("../images/site__arrow.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.site__game-wrapper {
  display: flex;
  justify-content: center;
}

.site__header .site__dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site__header .site__dropdown-menu {
  width: 90px;
  position: absolute;
  left: -20px;
  display: none;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 0;
  padding: 10px 20px;
  border-radius: 20px;
  background: #1B1D21;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(1, 150, 160, 0.25) inset;
  box-shadow: 0px 0px 20px 0px rgba(1, 150, 160, 0.25) inset;
}

.site__header .site__dropdown.site__active .site__dropdown-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site__header .site__dropdown.site__active button::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.site__icons-wrapper {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.site__icon {
  fill: transparent;
  stroke: transparent;
  width: 62px;
  height: 62px;
}

.site__mobile-nav {
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #000;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.site__mobile-nav--open {
  top: 0;
}

.site__mobile-nav a {
  color: #fff;
}

.site__mobile-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 20px;
  font-size: 28px;
}

.site__mobile-nav__list .site__active {
  opacity: 0.5;
}

/* Nav Icon */

.site__mobile-nav-btn {
  --time: 0.1s;
  --width: 26px;
  --height: 30px;
  --line-height: 3px;
  --spacing: 5px;
  --color: #ffffff;
  --radius: 4px;
  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */
  /* Dynamic height and width */
  height: calc(var(--line-height) * 2 + var(--spacing) * 4);
  width: var(--width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site__nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.site__nav-icon::before,
.site__nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  border-radius: var(--radius);
  background-color: var(--color);
  -webkit-transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
}

.site__nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.site__nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.site__nav-icon.site__nav-icon--active {
  background-color: transparent;
}

.site__nav-icon.site__nav-icon--active::before,
.site__nav-icon.site__nav-icon--active::after {
  top: 0;
  -webkit-transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time), -webkit-transform var(--time) ease-in var(--time);
  background-color: #fff;
}

.site__nav-icon.site__nav-icon--active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.site__nav-icon.site__nav-icon--active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Layout */

.site__mobile-nav-btn {
  z-index: 999;
  display: none;
}

.site__top img {
  height: 433px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.site__top .site__btn {
  width: 100%;
  max-width: 434px;
  margin-inline: auto;
}

@media (max-width: 1220px) {
  .site__items {
    gap: 10px;
  }

  .site__container {
    padding: 0 var(--container-padding-tablet);
    gap: 20px;
  }

  .site__mobile-nav-btn {
    display: block;
  }
}

@media (max-width: 930px) {
  .site__footer .site__age span {
    position: static;
  }
}

@media (max-width: 820px) {
  .site__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .site__main {
    margin: 20px 0;
    gap: 40px;
  }

  .site__wrapper {
    padding: 40px 16px;
    gap: 16px;
  }

  .site__wrapper img {
    height: 200px;
  }

  .site__banner .site__btn {
    width: 100%;
    max-width: 434px;
  }

  .site__contact input,
  .site__contact textarea {
    padding: 14px 20px;
  }

  .site__contact .site__img {
    height: 65px;
  }

  .site__footer {
    padding: 30px 0;
  }

  .site__footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .site__footer .site__age {
    padding-right: 0;
  }

  .site__game iframe {
    height: auto;
    aspect-ratio: 1/1;
  }

  .site__header {
    padding: 8px 0;
  }

  .site__header .site__nav {
    gap: 0px;
  }

  .site__header .site__nav__list {
    gap: 16px;
  }

  .site__header .site__nav__list li:first-child {
    display: none;
  }

  .site__header .site__logo {
    gap: 4px;
  }

  .site__header .site__dropdown-menu {
    left: -10px;
    padding: 10px;
    width: 60px;
  }

  .site__top img {
    height: 260px;
  }
}

/* Modal Styles */
.site__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 30, 47, 0.9) 0%, rgba(27, 58, 75, 0.9) 100%);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.site__modal-content {
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 2px solid var(--accent-1);
  box-shadow: 
    0 20px 60px rgba(10, 30, 47, 0.5),
    inset 0 1px 0 rgba(95, 179, 193, 0.2);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { 
    transform: translateY(50px);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}

/* Морские волны в модальном окне */
.site__modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(45, 127, 142, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(95, 179, 193, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.site__modal-content h2 {
  color: var(--accent-2);
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(95, 179, 193, 0.3);
  position: relative;
  z-index: 1;
}

.site__modal-content p {
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.site__modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.site__btn--secondary {
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%) !important;
  color: var(--text-primary) !important;
  border: 2px solid var(--accent-1) !important;
  box-shadow: 
    0 4px 15px rgba(45, 127, 142, 0.3),
    inset 0 1px 0 rgba(95, 179, 193, 0.2) !important;
}

.site__btn--secondary:hover {
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(45, 127, 142, 0.4) !important;
}

.site__modal--cookie {
  align-items: flex-end;
  padding-bottom: 20px;
}

.site__modal-content--cookie {
  max-width: 400px;
  padding: 20px;
}

/* Gambling Logos */
.site__gambling-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.site__gambling-logos img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.site__gambling-logos img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .site__gambling-logos {
    gap: 10px;
  }
  
  .site__gambling-logos img {
    width: 60px;
    height: 30px;
  }
  
  .site__modal-content {
    padding: 20px;
    margin: 20px;
  }
  
  .site__modal-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .site__footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .site__footer__links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .site__footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .site__footer__age-warning {
    flex-direction: column;
    text-align: center;
  }
  
  .site__footer__copyright {
    text-align: center;
  }
}

/* ========================================
   NEW STRUCTURE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(45, 127, 142, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(95, 179, 193, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 50%, var(--accent-1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(95, 179, 193, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
}

/* New: hero badges and checklist */
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(95, 179, 193, 0.12);
  border: 1px solid rgba(95, 179, 193, 0.35);
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: .3px;
}

.hero-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 18px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.hero-checklist svg { color: var(--accent-2); }

.hero-trust {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  opacity: .85;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.game-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-preview:hover .game-overlay {
  opacity: 1;
}

.play-button {
  color: var(--accent-2);
  transition: transform 0.3s ease;
}

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

/* Clickable preview card link wrapper */
.game-preview-link {
  display: block;
  border-radius: 20px;
}

.game-preview-link:focus-visible .game-preview {
  outline: 3px solid var(--accent-2);
  outline-offset: 4px;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--primary-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: linear-gradient(145deg, rgba(27, 58, 75, 0.75), rgba(10, 30, 47, 0.9));
  border: 0;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.35),
    -12px -12px 24px rgba(255, 255, 255, 0.03),
    inset 0 0 0 rgba(0,0,0,0);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(95, 179, 193, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    18px 18px 36px rgba(0, 0, 0, 0.45),
    -18px -18px 36px rgba(255, 255, 255, 0.04);
}

.feature-icon {
  color: var(--accent-2);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Game Preview Section */
.game-preview-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.game-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .game-preview-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.game-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.game-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin: 0;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.game-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* New: cards variant for game stats */
.game-stats--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.game-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-visual {
  position: relative;
}

.game-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin: 40px;
}

.game-frame:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

.game-frame:focus-within {
  outline: 3px solid var(--accent-2);
  outline-offset: 4px;
}

.game-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.game-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: sparkle 2s infinite;
}

.sparkle-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 60%;
  right: 20%;
  animation-delay: 0.7s;
}

.sparkle-3 {
  bottom: 30%;
  left: 60%;
  animation-delay: 1.4s;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--primary-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin: 0;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(27, 58, 75, 0.75), rgba(10, 30, 47, 0.9));
  border: 0;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.35),
    -10px -10px 20px rgba(255, 255, 255, 0.03);
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow:
    16px 16px 28px rgba(0, 0, 0, 0.45),
    -16px -16px 28px rgba(255, 255, 255, 0.04);
}

.contact-icon {
  color: var(--accent-2);
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.contact-details a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--sand-accent);
}

.contact-form-wrapper {
  background: linear-gradient(145deg, rgba(27, 58, 75, 0.75), rgba(10, 30, 47, 0.9));
  border: 0;
  border-radius: 20px;
  padding: 40px;
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.35),
    -12px -12px 24px rgba(255, 255, 255, 0.03);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* New: two-column row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: .95rem;
}

.form-consent input { accent-color: var(--accent-2); }

@media (max-width: 767px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; }
}

.contact-form .btn {
  align-self: flex-start;
}

.contact-form .btn:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  background: rgba(10, 30, 47, 0.8);
  border: 1px solid rgba(95, 179, 193, 0.3);
  border-radius: 8px;
  padding: 16px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(95, 179, 193, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

.form-success {
  background: rgba(95, 179, 193, 0.1);
  border: 1px solid var(--accent-2);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  display: none;
}

.form-success p {
  color: var(--accent-2);
  margin: 0;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-1) 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(95, 179, 193, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(95, 179, 193, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-2);
}

.btn-secondary:hover {
  background: var(--accent-2);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

/* Game Hero Section */
.game-hero-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
  text-align: center;
}

.game-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.game-hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.game-hero-description {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.game-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.game-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 500;
}

.game-feature svg {
  color: var(--accent-2);
}

/* Game Section */
.game-section {
  padding: 60px 0;
  background: var(--primary-bg);
}

.game-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.game-container {
  background: linear-gradient(145deg, rgba(27, 58, 75, 0.75), rgba(10, 30, 47, 0.9));
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    14px 14px 28px rgba(0, 0, 0, 0.35),
    -14px -14px 28px rgba(255, 255, 255, 0.03);
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: rgba(10, 30, 47, 0.8);
  border-bottom: 1px solid rgba(95, 179, 193, 0.2);
}

.game-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 0;
}

.game-controls {
  display: flex;
  gap: 12px;
}

.game-control-btn {
  background: rgba(95, 179, 193, 0.1);
  border: 1px solid rgba(95, 179, 193, 0.3);
  border-radius: 8px;
  padding: 12px;
  color: var(--accent-2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-control-btn:hover {
  background: rgba(95, 179, 193, 0.2);
  border-color: var(--accent-2);
}

.game-frame {
  position: relative;
  background: #000;
}

.game-frame iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.game-info {
  padding: 30px;
  background: rgba(10, 30, 47, 0.4);
}

.game-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: linear-gradient(145deg, rgba(27, 58, 75, 0.75), rgba(10, 30, 47, 0.9));
  border: 0;
  border-radius: 18px;
  transition: all 0.3s ease;
  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.35),
    -10px -10px 20px rgba(255, 255, 255, 0.03);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow:
    16px 16px 28px rgba(0, 0, 0, 0.45),
    -16px -16px 28px rgba(255, 255, 255, 0.04);
}

.stat-icon {
  color: var(--accent-2);
  flex-shrink: 0;
}

.stat-icon img,
.stat-icon svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0; /* allow wrapping */
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.stat-value {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 991px) {
  .game-stats--cards {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .game-stats--cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-icon img,
  .stat-icon svg { width: 24px; height: 24px; }
  .stat-value { font-size: 1rem; }
}

/* Game Features Section */
.game-features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

/* Legal Pages */
.legal-hero-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
  text-align: center;
}

.legal-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.legal-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.legal-breadcrumb a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-breadcrumb a:hover {
  color: var(--sand-accent);
}

.legal-breadcrumb span {
  color: var(--text-secondary);
}

.legal-content-section {
  padding: 80px 0;
  background: var(--primary-bg);
}

.legal-content {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-intro {
  margin-bottom: 60px;
  text-align: center;
}

.legal-intro h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--sand-accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-section {
  background: linear-gradient(145deg, rgba(27, 58, 75, 0.75), rgba(10, 30, 47, 0.9));
  border: 0;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.35),
    -12px -12px 24px rgba(255, 255, 255, 0.03);
}

.legal-section:hover {
  transform: translateY(-4px);
  box-shadow:
    18px 18px 36px rgba(0, 0, 0, 0.45),
    -18px -18px 36px rgba(255, 255, 255, 0.04);
}

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.legal-icon {
  color: var(--accent-2);
  flex-shrink: 0;
}

.legal-section h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 0;
}

.legal-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-subsection {
  margin-top: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--accent-2);
}

.legal-subsection h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: bold;
}

.legal-footer {
  margin-top: 60px;
  text-align: center;
}

.legal-notice {
  background: rgba(95, 179, 193, 0.1);
  border: 1px solid var(--accent-2);
  border-radius: 12px;
  padding: 30px;
}

.legal-notice p {
  color: var(--accent-2);
  font-size: 1.1rem;
  margin: 0;
}

/* ========================================
   BURGER MENU & MOBILE RESPONSIVE STYLES
   ======================================== */

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Hide burger menu when mobile menu is open */
body.menu-open .burger-menu {
  opacity: 0;
  visibility: hidden;
}

/* Burger Menu Button */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  margin-left: auto;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.mobile-logo img {
  width: 32px;
  height: 32px;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.mobile-nav__list li {
  margin-bottom: 15px;
}

.mobile-nav__list a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__list a:hover,
.mobile-nav__list a.mobile-active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  transform: translateX(-5px);
}

.mobile-dropdown {
  margin-top: 20px;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown__icon {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active .mobile-dropdown__icon {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.active {
  max-height: 200px;
}

.mobile-dropdown-menu li {
  margin-bottom: 5px;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .site__container {
    max-width: 1200px;
  }
}

/* Medium screens (992px and up) */
@media (max-width: 1199px) {
  .site__container {
    max-width: 960px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    margin-bottom: 40px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .game-preview-content {
    flex-direction: column;
    text-align: center;
  }
  
  .game-info {
    margin-bottom: 40px;
  }
}

/* Small screens (768px and up) */
@media (max-width: 991px) {
  .site__container {
    max-width: 720px;
  }
  
  /* Hide desktop navigation */
  .site__header__nav {
    display: none !important;
  }
  
  /* Show burger menu */
  .burger-menu {
    display: flex !important;
  }
  
  .site__header__row {
    justify-content: space-between;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .site__footer__main {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .site__footer__links {
    flex-direction: column;
    gap: 30px;
  }
}

/* Extra small screens (576px and up) */
@media (max-width: 767px) {
  .site__container {
    max-width: 540px;
    padding: 0 20px;
  }
  
  .site__header {
    padding: 15px 0;
  }
  
  .site__logo__text {
    font-size: 18px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .game-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .site__footer__content {
    padding: 40px 0;
  }
  
  .site__footer__gambling-logos {
    flex-direction: column;
    gap: 15px;
  }
}

/* Mobile screens (up to 575px) */
@media (max-width: 575px) {
  .site__container {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .game-frame iframe {
    height: 400px;
  }
  
  .site__footer__age-warning {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* ========================================
   GAME PAGE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 991px) {
  .game-hero-content {
    text-align: center;
  }
  
  .game-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .game-controls {
    justify-content: center;
    margin-top: 20px;
  }
  
  .game-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .game-hero-title {
    font-size: 2rem;
  }
  
  .game-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .game-frame iframe {
    height: 350px;
  }
  
  .game-controls {
    flex-direction: column;
    gap: 10px;
  }
  
  .game-control-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   LEGAL PAGES RESPONSIVE STYLES
   ======================================== */

@media (max-width: 991px) {
  .legal-hero-content {
    text-align: center;
  }
  
  .legal-content {
    padding: 40px 0;
  }
  
  .legal-section {
    margin-bottom: 30px;
  }
  
  .legal-section-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .legal-hero-title {
    font-size: 2rem;
  }
  
  .legal-hero-subtitle {
    font-size: 1rem;
  }
  
  .legal-section {
    padding: 20px;
  }
  
  .legal-section h3 {
    font-size: 1.3rem;
  }
  
  .legal-section p {
    font-size: 0.9rem;
  }
  
  .legal-list li {
    font-size: 0.9rem;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }
.mb-4 { margin-bottom: 40px !important; }
.mb-5 { margin-bottom: 50px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }
.mt-4 { margin-top: 40px !important; }
.mt-5 { margin-top: 50px !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 10px !important; }
.p-2 { padding: 20px !important; }
.p-3 { padding: 30px !important; }
.p-4 { padding: 40px !important; }
.p-5 { padding: 50px !important; }