@charset "UTF-8";

/***
  The new CSS reset - version 1.8.5
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/

@import url("https://fonts.googleapis.com/css?family=Poppins:300,regular,500,600,700,800,900&display=swap");

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

a,
button {
  cursor: pointer;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: none;
  height: auto;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* ================================
   Variables
================================ */

:root {
  --dm-black: #111111;
  --dm-dark: #1a1a1a;
  --dm-gray: #5f5f5f;
  --dm-light-gray: #f6f6f6;
  --dm-border: #e5e5e5;
  --dm-gold: #ffb400;
  --dm-gold-light: #ffd66b;
  --dm-gold-dark: #d89400;
  --dm-white: #ffffff;

  --dm-radius-sm: 10px;
  --dm-radius-md: 18px;
  --dm-radius-lg: 28px;

  --dm-shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.08);
  --dm-shadow-md: 0 16px 40px rgba(0, 0, 0, 0.14);
  --dm-shadow-gold: 0 16px 40px rgba(255, 180, 0, 0.25);
}

/* ================================
   Base
================================ */

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  color: var(--dm-black);
  background: var(--dm-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 15px 0;
  color: #222222;
  line-height: 1.7;
}

strong {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   Typography
================================ */

h1,
h2,
h3 {
  color: var(--dm-black);
  letter-spacing: -0.02em;
}

h1 {
  margin: 25px 0;
  font-size: clamp(26px, 2vw, 33px);
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
}

h2 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 44px auto 24px;
  padding-bottom: 10px;
  border-bottom: none;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  font-weight: 800;
  text-align: center;
}

h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--dm-gold), var(--dm-gold-light));
  transform: translateX(-50%);
}

h3 {
  margin: 28px 0 14px;
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.25;
  font-weight: 700;
}

/* ================================
   Lists
================================ */

ol,
ul {
  margin: 18px 0;
  padding: 20px 24px 20px 42px;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

li {
  margin: 8px 0;
  color: #222222;
  line-height: 1.65;
}

ol li::marker,
ul li::marker {
  color: var(--dm-gold-dark);
  font-weight: 800;
}

/* ================================
   Tables
================================ */

table {
  width: 100%;
  margin: 26px 0 34px;
  overflow: hidden;
  display: table;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--dm-border);
  border-radius: var(--dm-radius-md);
  background: var(--dm-white);
  box-shadow: var(--dm-shadow-sm);
}

table tr th,
table tr td {
  border: none;
  border-bottom: 1px solid var(--dm-border);
  padding: 16px 18px;
  vertical-align: top;
}

table tr:last-child td {
  border-bottom: none;
}

table tr th {
  color: var(--dm-black);
  background: linear-gradient(135deg, var(--dm-gold-light), var(--dm-gold));
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}

table tr td {
  background: rgba(255, 255, 255, 0.94);
}

table tr:nth-child(even) td {
  background: #fffaf0;
}

table tr td:hover {
  background: #fff3cf;
}

/* ================================
   Header
================================ */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 14px 0;
      background: rgb(0 0 0 / 94%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.header .container .logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dm-gold);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.header .container .logo a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.header .container .logo img {
  display: block;
  width: auto;
  max-width: 120px;
  max-height: 58px;
  object-fit: contain;
}

.header .container .auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .container .auth .btn-1 {
  color: var(--dm-black);
  background: linear-gradient(135deg, var(--dm-gold-light), var(--dm-gold));
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(255, 180, 0, 0.28);
  animation: glowing 1500ms infinite;
}

.header .container .auth .btn-1:hover {
  color: var(--dm-gold);
  background: var(--dm-black);
  animation: none;
}

.header .container .auth .btn-2 {
  color: var(--dm-black);
  background: var(--dm-white);
  border-color: var(--dm-gold);
}

.header .container .auth .btn-2:hover {
  color: var(--dm-black);
  background: var(--dm-gold);
}

/* ================================
   Buttons
================================ */

.btn {
  min-height: 46px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 24px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--dm-shadow-sm);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(255, 180, 0, 0.65);
  outline-offset: 3px;
}

/* ================================
   Main
================================ */

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 60px 0 0;
}

/* ================================
   Hero / Banner
================================ */

.main .banner {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 214, 107, 0.45), transparent 32%),
    linear-gradient(135deg, #ffb400 0%, #ffc94a 45%, #fff0ba 100%);
}

.main .banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
}

.main .banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.main .banner .item {
  flex: 1 1 0;
}

.main .banner__text {
  max-width: 610px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.main .banner__text h1 {
  margin: 0;
  text-align: left;
}

.main .banner__text p {
  max-width: 590px;
  margin: 0;
  color: rgba(0, 0, 0, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.main .banner__btn {
  margin-top: 6px;
}

.main .banner__btn a {
  min-height: 54px;
  padding: 16px 30px;
  color: var(--dm-white);
  background: var(--dm-black);
  border-color: var(--dm-black);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: var(--dm-shadow-md);
}

.main .banner__btn a:hover {
  color: var(--dm-black);
  background: var(--dm-white);
  border-color: var(--dm-white);
}

.main .banner__img {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* IMG-1 */
.main .banner .item img,
.main .banner__img img {
  width: 100%;
  max-width: 560px;
  max-height: none;
  height: auto;
  border-radius: var(--dm-radius-lg);
  object-fit: cover;
  box-shadow: var(--dm-shadow-md);
  animation: none;
}

/* ================================
   Content
================================ */

.main .content {
  padding: 60px 0 70px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf0 48%, #ffffff 100%);
}

.main .content .container {
  max-width: 1060px;
}

.main .content h2 {
  margin-top: 54px;
  margin-bottom: 24px;
}

.main .content h2:first-child {
  margin-top: 0;
}

.main .content h3 {
  margin-top: 32px;
  margin-bottom: 14px;
}

.main .content p {
  margin: 16px 0;
  font-size: 17px;
}

.main .content ul,
.main .content ol {
  margin: 18px 0;
  padding: 20px 24px 20px 42px;
  border: 1px solid rgba(255, 180, 0, 0.24);
  border-radius: var(--dm-radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* IMG-2 / IMG-3 / IMG-4 */
.main .content img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  margin: 28px auto 42px;
  border-radius: var(--dm-radius-md);
  object-fit: cover;
  box-shadow: var(--dm-shadow-md);
}


/* Optional anchors block */
.main .content .anchors {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--dm-radius-md);
  background: var(--dm-gold);
  padding: 18px;
}

/* ================================
   Games block — оставлено для совместимости
================================ */

.main .games-wrap {
  padding: 75px 16px 50px;
  border-bottom: 1.5px solid #000000;
}

.main .games-wrap h2 {
  margin: 0 auto 70px;
}

.main .games-wrap .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.main .games-wrap .game-item {
  display: inline-flex;
  width: 250px;
  height: 250px;
  position: relative;
  margin: 0 5px 50px;
}

.main .games-wrap .game-item_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.main .games-wrap .game-item_play {
  margin-bottom: 103px;
  padding: 13px 24px;
  border: 2px solid #000000;
  border-radius: 4px;
  color: #000000;
  background: var(--dm-gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main .games-wrap .game-item_play:hover {
  color: var(--dm-gold);
  background: #000000;
}

.main .games-wrap .game-item_name {
  margin-top: -25px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
}

/* ================================
   Footer
================================ */

.footer {
  padding: 34px 0;
  border-top: none;
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 180, 0, 0.18), transparent 34%),
    linear-gradient(135deg, #111111, #1f1f1f);
}

.footer .container {
  max-width: 980px;
  text-align: center;
}

.footer p {
  margin: 8px auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.footer p:last-child {
  color: var(--dm-gold);
  font-weight: 700;
}

/* ================================
   Banner helper classes — оставлено для совместимости
================================ */

.block_90 {
  padding: 0 16px;
  display: block;
  max-width: 100%;
  margin-bottom: 20px;
}

.block_100 {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.hero-block {
  margin-bottom: 20px;
}

.link-head-a {
  display: block !important;
  margin: 0 auto;
  text-align: center;
}

.wrapper_link-head {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

/* ================================
   Animations
================================ */

@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #c1c0c0;
  }

  50% {
    box-shadow: 0 0 20px var(--dm-gold);
  }

  100% {
    box-shadow: 0 0 5px #c1c0c0;
  }
}

@keyframes transform {
  0% {
    transform: translate3d(-15px, 0, 0);
  }

  50% {
    transform: translate3d(15px, 0, 0);
  }

  100% {
    transform: translate3d(-15px, 0, 0);
  }
}

/* ================================
   Responsive
================================ */

@media (min-width: 991px) {
  .block_90 {
    display: none;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .main {
    padding-top: 118px;
  }

  .main .banner {
    padding: 52px 0;
  }

  .main .banner .container {
    flex-direction: column;
    gap: 36px;
  }

  .main .banner__text {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .main .banner__text h1 {
    text-align: center;
  }

  .main .banner__text p {
    text-align: center;
  }

  .main .banner__img {
    width: 100%;
    max-width: 680px;
  }

  .main .banner .item {
    flex: 1 1 auto;
  }

  .main .banner .item img,
  .main .banner__img img {
    max-width: 100%;
  }

  .main .content {
    padding: 44px 0 56px;
  }

  .main .content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .block-main-image {
    display: none;
  }

  .block-main {
    min-height: inherit;
    padding: 20px 0;
  }

  .hero-block {
    margin-bottom: 12px;
  }

  .block_100 {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1 {
    margin: 20px 0;
    font-size: 30px;
  }

  h2 {
    margin: 36px auto 18px;
    font-size: 24px;
  }

  h3 {
    margin: 24px 0 12px;
    font-size: 20px;
  }

  .container {
    max-width: 100%;
    padding: 0 16px;
  }

  .btn {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .header {
    padding: 10px 0;
  }

  .header .container {
    justify-content: center;
    gap: 12px;
  }

  .header .container .logo img {
    max-width: 82px;
    max-height: 46px;
  }

  .header .container .auth {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .header .container .auth .btn {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .main {
    padding-top: 132px;
  }

  .main .banner {
    padding: 36px 0;
  }

  .main .banner__text {
    gap: 16px;
  }

  .main .banner__text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .main .banner__btn {
    width: 100%;
  }

  .main .banner__btn a {
    width: 100%;
    min-height: 50px;
    padding: 14px 20px;
    white-space: normal;
    font-size: 16px;
  }

  .main .content {
    padding: 34px 0 48px;
  }

  .main .content p {
    font-size: 16px;
  }

  .main .content h2 {
    margin-top: 42px;
    text-align: center;
  }

  .main .content ul,
  .main .content ol {
    padding: 16px 18px 16px 34px;
    border-radius: 14px;
  }

  .main .content table tr th,
  .main .content table tr td {
    min-width: 180px;
    padding: 13px 14px;
    font-size: 14px;
  }

  .main .content img {
    margin: 22px auto 34px;
    border-radius: 16px;
  }



  .main .games-wrap {
    padding: 45px 16px 30px;
  }

  .main .games-wrap .game-item {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .main .games-wrap .game-item:not(:last-child) {
    margin-bottom: 50px;
  }

  .main .games-wrap .game-item_play {
    margin-bottom: 128px;
  }

  .footer {
    padding: 28px 0;
  }

  .footer p {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 14px;
  }

  .header .container .auth {
    flex-direction: column;
  }

  .header .container .auth .btn {
    width: 100%;
    max-width: 260px;
  }

  .main {
    padding-top: 172px;
  }

  .main .banner__btn a {
    font-size: 15px;
  }

  .main .content table tr th,
  .main .content table tr td {
    min-width: 160px;
  }
}

/* ================================
   Reduced motion
================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 16px;
  line-height: 1.5;
}
.content thead th {
  text-align: left;
  background: #fff5d8;
  padding: 10px 12px;
  border-bottom: 2px solid #f5c542;
  font-weight: 600;
}
.content tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.content tbody tr:nth-child(even) {
  background: #fafafa;
}

/* Мобильный: превращаем таблицу в карточки */
@media (max-width: 600px) {
  .content table,
  .content thead,
  .content tbody,
  .content tr,
  .content td,
  .content th {
    display: block;
  }
  .content thead {
    position: absolute;
    left: -9999px;
  }
  .content tr {
    margin-bottom: 12px;
    padding: 10px 14px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
  }
  .content tbody tr:nth-child(even) {
    background: #fff;
  }
  .content td {
    padding: 4px 0;
    border: none;
  }
  .content td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
  }
  .content td:not(:first-child) {
    color: #555;
  }
}