@charset "UTF-8";

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2"), url("../fonts/Rubik-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2"), url("../fonts/Rubik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"), url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2"), url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Bold.woff2') format('woff2'),
        url('Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Regular.woff2') format('woff2'),
        url('Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

:root {
  --main-bg-color: #151516;
  --font-family: "Inter", sans-serif;
  --second-family: "Rubik", sans-serif;
  --dark-tan-50: #fff1f1;
	--dark-tan-100: #ffdfdf;
	--dark-tan-200: #ffc5c5;
	--dark-tan-300: #ff9d9d;
	--dark-tan-400: #ff6565;
	--dark-tan-500: #fe3535;
	--dark-tan-600: #ec1616;
	--dark-tan-700: #c70e0e;
	--dark-tan-800: #a41010;
	--dark-tan-900-base: #6c1010;
	--dark-tan-950: #4a0505;
	--golden-grass-50: #fbf8eb;
	--golden-grass-100: #f5f0cc;
	--golden-grass-200: #ede09b;
	--golden-grass-300: #e2c862;
	--golden-grass-400: #d8b137;
	--golden-grass-500-base: #d2a32c;
	--golden-grass-600: #ac7a22;
	--golden-grass-700: #8a5a1e;
	--golden-grass-800: #734920;
	--golden-grass-900: #633d20;
	--golden-grass-950: #391f0f;
	--accents-white: #fff;
	--accents-black: #0e0e0e;
	--shark-50: #f6f6f6;
	--shark-100: #e7e7e7;
	--shark-200: #d1d1d1;
	--shark-300: #b0b0b0;
	--shark-400: #888;
	--shark-500: #6d6d6d;
	--shark-600: #5d5d5d;
	--shark-700: #4f4f4f;
	--shark-800: #454545;
	--shark-900: #3d3d3d;
	--shark-950-base: #1e1e1e;
	--accents-gold: #eab308;
	--accents-red-warning: #b13;
	--accents-green: #2dac57;
	--accents-website-gold: #f1d46a;
  --accents-website-gold-idle: #f1d46a;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/*--------------------*/
/* ---------------- */
::selection {
  background: #F2D669;
  /* Цвет фона */
  color: #fff;
  /* Цвет текста */
}

body {

  font-family: "Rubik", sans-serif;
  overflow-x: hidden;
  background: #060606;
}

body::-webkit-scrollbar {
  width: 8px;
  /* ширина всей полосы прокрутки */
}

body::-webkit-scrollbar-track {
  background: #202020;
  /* цвет зоны отслеживания */
}

body::-webkit-scrollbar-thumb {
  background-color: #F2D669;
  /* цвет бегунка */
  border-radius: 20px;
  /* округлось бегунка */
  border: 3px solid #202020;
  /* отступ вокруг бегунка */
}

.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  background: rgb(255, 255, 255);
}
.container {
  position: relative;
  margin: 0 auto;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
  padding: 16px 160px;
  margin: auto;
}
.header__logo {
  width: auto;
  max-height: 40px;
}

.header__btns {
  display: flex;
  gap: 19px;
  justify-content: center;
  align-items: center;
}

.btn-yellow {
  border-radius: 4px;
  border: 1px solid var(--button-border-main, #E1AE36);
  background: var(--accents-website-gold);;
  color: var(--button-dark-text, #262626);
  font-family: var(--second-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 13px 16px;
  position: relative;
  transition: 0.3s all;
}

.btn-yellow:hover {
  background-color: #efc255;
  border-color: #efc255;
}

.btn-red {
  border-radius: 4px;
  border: 1px solid var(--button-border-accent, #751010);
  background: #d93731;
  color: #fff;
  font-family: var(--second-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 13px 16px;
  position: relative;
  transition: 0.3s all;
}

.btn-red:hover {
  background-color: #861717;
  border-color: #861717;
}

:root{
  --hero-card-bg: rgba(255,255,255,.72);
  --hero-card-border: rgba(255,255,255,.55);
  --hero-text: #141414;
  --hero-muted: rgba(20,20,20,.78);
  --shadow: 0 18px 50px rgba(0,0,0,.18);
  --radius-xl: 28px;
  --radius-lg: 18px;
}

.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: block;
}

.hero__bg{
  position:absolute;
  inset:0;
  background-image: url("../img/main-bg.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
}

.hero__container{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 16px 44px;
}

.hero__top{
  display:flex;
  justify-content: flex-end;
  gap: 14px;
  padding: 10px 0 18px;
}

.hero__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 52px;
  min-width: 180px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-decoration:none;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .12s ease, filter .2s ease;
}
.hero__btn:hover{ filter: brightness(1.03); }
.hero__btn:active{ transform: translateY(1px); }

.hero__btn--primary{
  background: #f2d26a;
  color: #151515;
}
.hero__btn--danger{
  background: #d63a35;
  color: #fff;
}

.hero__layout{
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
}

/* девушка */
.hero__girl{
  position: absolute;
  transform: scaleX(-1);
  left: 130px;
  bottom: -50px;
  width: min(570px, 46vw);
  pointer-events: none;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.22));
}
.hero__girl img{
  width: 100%;
  height: auto;
  display:block;
}

/* карточка */
/* ===== GLASS CARD (реально стеклянная) ===== */
.hero__card{
  width: min(550px, 100%);
  margin-left: auto;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 34px;
  padding: 26px 26px 20px;
  box-shadow:
    0 28px 70px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.40);
  position: relative;
  overflow: hidden;
}

/* блик сверху-слева */
.hero__card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 360px at 15% 10%, rgba(255,255,255,.55), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0) 55%);
  pointer-events:none;
  opacity: .9;
}

/* лёгкая “стеклянная” фактура/шум (очень тонко) */
.hero__card::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .10;
  pointer-events:none;
}

/* чтобы контент был поверх бликов */
.hero__card > *{
  position: relative;
  z-index: 1;
}


.hero__title{
  margin: 0 0 10px;
  font-size: clamp(34px, 3.3vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--hero-text);
  font-weight: 900;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero__subtitle{
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--hero-muted);
  max-width: 52ch;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* сетка слотов */
.hero__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.game{
  display:flex;
  flex-direction: column;
  gap: 8px;
  text-decoration:none;
  color: inherit;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.game:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.7);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

.game__img{
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(0,0,0,.06);
}
.game__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.game__text{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(10,10,10,.9);
}
.game__text strong{
  display:block;
  font-weight: 900;
}
.game__text span{
  display:block;
  opacity: .86;
}

/* ===== responsive ===== */

/* tablet */
@media (max-width: 980px){
  .hero__top{ justify-content: center; }
  .hero__btn{ min-width: 160px; height: 50px; }

  .hero__girl{
    width: min(440px, 55vw);
    left: -18px;
    opacity: .98;
  }
  .hero__card{
    margin: 0 auto;
  }
}

/* mobile — карточка сверху, девушка снизу, слоты 2 в ряд */
@media (max-width: 560px){
  .hero{ min-height: auto; }
  .hero__layout{
    min-height: auto;
    padding-bottom: 420px; /* место под девушку */
  }

  .hero__container {
    padding-top: 135px;
  }

  .hero__top{
    gap: 10px;
    padding-bottom: 12px;
  }
  .hero__btn{
    min-width: 0;
    width: 50%;
    height: 48px;
    border-radius: 12px;
  }

  .hero__card{
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  .hero__subtitle{
    font-size: 15px;
  }

  .hero__grid{
    gap: 12px;
    grid-template-columns: repeat(2, 1fr); /* 2 карточки в ряд */
  }

  .game{
    padding: 10px;
    border-radius: 14px;
  }
  .game__text{ font-size: 13px; }

  .hero__girl{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(340px, 92vw);
    opacity: 1;
    z-index: 2;
  }
}

.second__section {
  background: #f9fbff;
  padding: 48px 160px;
  font-family: var(--font-family);
  text-align: left;
  color: var(--grey-950-base);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.second__section h2 {
  color: var(--grey-950-base);
  font-weight: 600;
  font-size: 39px;
  line-height: 1.2em;
}

.second__section h3 {
  font-weight: 600;
  font-size: 27px;
  padding-top: 24px;
}

.second__section p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  padding-top: 16px;
}

@media screen and (max-width: 991px) {

  .btn-red {
    font-size: 14px;
  }

  .btn-yellow {
    font-size: 14px;
  }

  .btn-yellow-big {
    font-size: 15px;
  }

  .header__logo img {
    width: 124px;
  }

  .header {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background: var(--main-bg-color);
  }

  .btn-yellow-big {
    font-size: 15px;
    margin-top: -12px;
    /* padding: 19px 53px; */
    text-align: center;
    margin-left: 0;
    justify-content: center;
  }

  .header__btns {
    width: 100%;
  }

  .btn-red {
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .btn-yellow {
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .header {
    z-index: 4;
  }

  .header .container {
    padding: 14px 15px;
    gap: 10px;
    display: flex;
    flex-direction: column-reverse;
  }

  .header__logo img {
    width: 128px;
  }

  .second__section {
    padding: 32px 16px;
    gap: 32px;
  }

  .second__section h1 {
    font-size: 37px;
  }

  .second__section h2 {
    font-size: 32px;
  }

  .second__section h3 {
    font-size: 24px;
    padding-top: 16px;
  }

  .second__section p {
    padding-top: 12px;
  }
}


@media screen and (min-width: 1024px) {
  .body {
    max-width: 62.25rem;
    margin: 0 auto;
    width: 100%;
  }
}

.container_flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.footer-providers {
  padding: 1rem 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-providers {
    padding: 1.875rem 0.75rem 2.5rem;
  }
}

.footer-providers a {
  width: 5.625rem;
  height: 2.25rem;
  margin: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer-providers a {
    margin: 0.625rem;
    height: 2rem;
    width: 5rem;
  }
}

.footer-providers a svg,
.footer-providers a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    padding: 0 0.75rem;
  }
}

.footer-bottom-license {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #BDBDBD;
  text-align: center;
  margin: 0 auto;
  max-width: 43.75rem;
}

.footer-bottom-license a {
  color: #BDBDBD;
}

.footer-bottom-row {
  padding: 1.875rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

@media screen and (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
  }

  .footer-bottom-row:first-child {
    padding: 1.875rem 0;
  }
}

.footer-bottom-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0.0625rem;
  background: #BDBDBD;
  max-width: 45.25rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .footer-bottom-row::after {
    left: 2.375rem;
    right: 2.375rem;
    width: initial;
    max-width: initial;
    text-align: center;
  }
}

.footer-bottom-col p {
  margin: 0;
  color: #E0E0E0;
  font-size: 0.75rem;
  line-height: 1rem;
}

@media screen and (max-width: 768px) {
  .footer-bottom-col p {
    text-align: center;
  }
}

.footer-bottom-col_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.footer-bottom-col_text {
  margin-bottom: 0.75rem;
}

footer,
.footer-menu {
  background: #262626;
}

@media screen and (min-width: 768px) {
  .footer-bottom-col_text {
    padding-right: 3rem;
    margin-bottom: 0;
  }
}

.footer-menu {
  padding: 24px 0;

}

.footer-menu.red {
  background: #440907;
}

.footer-menu__link {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1rem;
  text-decoration: underline;
  margin: 0 0.3125rem;
}

@media screen and (max-width: 768px) {
  .footer-menu__link {
    padding: 0.625rem 0.9375rem;
  }
}

.footer-menu__link:hover {
  color: #ffffff;
}

.footer-age {
  margin: 0 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer-age {
    order: 0;
  }
}

.footer-age img {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-license {
  text-align: center;
  margin: 0 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer-license {
    order: 1;
  }
}

.joc-icon {
  width: 6.25rem;
  height: 2.5rem;
  display: block;
}

.joc-icon img {
  width: 100%;
  height: 100%;
}

.footer-license__icon {
  position: relative;
  width: 2.5rem;
  display: block;
  margin: 0 auto;
}

/*# sourceMappingURL=style.css.map */