@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Poppins:100,200,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;
}

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

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
  height: auto;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
: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;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #090900;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #46cb44;
  font-weight: 600;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #fff;
  padding: 15px;
}
table tr th {
  background-color: #46cb44;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: rgba(76, 57, 57, 0.6352941176);
}

.header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #1d1d1d;
  padding: 20px 0;
  box-shadow: 0 0 5px #46cb44;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo {
  width: 150px;
  font-size: 40px;
  font-weight: 600;
}
.header .container .logo img {
  width: 100%;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .container .auth .btn-1 {
  background: #1f9be8;
}
.header .container .auth .btn-1:hover {
  background: #1f9be8;
}
.header .container .auth .btn-2 {
  background: linear-gradient(253.67deg, #46cb44 2.27%, #46cb44 94.48%);
  color: #000;
  font-weight: 600;
}
.header .container .auth .btn-2:hover {
  background: linear-gradient(253.67deg, #cdff63 2.27%, #e5ff55 94.48%);
}

.btn {
  border-radius: 6px;
  padding: 12px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 20px 0 50px;
}
/*.main nav ul {*/
/*  list-style: none;*/
/*  padding: 0;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  flex-wrap: wrap;*/
/*  gap: 20px;*/
/*}*/
/*.main nav ul li:hover {*/
/*  text-decoration: underline;*/
/*}*/
.main__col {
  text-align: center;
  padding: 50px 16px;
  border-bottom: 2px solid #46cb44;
}
.main__col .wrapper {
  max-width: 50vw;
  margin: 0 auto;
}
.main__col p {
  margin: 20px 0;
  font-size: 20px;
}
.main__btn {
  background: #46cb44;
  width: 250px;
  margin: 40px auto;
  animation: glowing1 1500ms infinite;
  color: black;
  font-weight: 600
}
.main__btn:hover {
  background: #46cb44;
}
.main .content {
  padding: 50px 0 0 0;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 20px 0 30px;
  background-color: #1d1d1d;
  box-shadow: 0 0 5px #46cb44;
}
.footer nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer nav ul li:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .main {
    padding: 30px 0;
  }
  .main nav ul {
    gap: 15px;
    font-size: 14px;
  }
  .main__col {
    padding: 30px 16px;
  }
  .main__col p {
    font-size: 20px;
  }
  .main__col .wrapper {
    max-width: 100%;
  }
  .main .content {
    padding: 30px 0 0 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .footer .container nav ul {
    font-size: 14px;
  }
}
@keyframes glowing1 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #1f9be8;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
.anchors-block {
  border-radius: 6px;
  padding: 15px;
  background: #1d1d1d;
}
.anchors-block span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.anchors-block ul {
  margin: 0;
  padding: 0 0 0 25px;
  list-style: none;
}
.anchors-block ul li {
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.anchors-block ul li * {
  line-height: 1;
}
.anchors-block ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}
.anchors-block ul li a:hover {
  color: #1d1d1d;
}

          .casino-list { list-style:none; padding:20px; margin:0 auto; max-width:1000px; display:flex; flex-direction:column; gap:12px; }
          .casino-list li { background:#111; border:1px solid #222; border-radius:10px; display:flex; align-items:center; gap:16px; padding:16px 20px; }
          .casino-list .c-name { flex:1; font-size:18px; font-weight:700; color:#fff; background:#1a1a1a; border-radius:8px; padding:12px 18px; border-left:4px solid #00ff88; }
          .casino-list .c-payments { flex:2; }
          .casino-list .c-payments span { display:block; font-size:11px; color:#888; text-transform:uppercase; letter-spacing:.05em; margin-bottom:6px; }
          .casino-list .c-payments .badges { display:flex; flex-wrap:wrap; gap:6px; }
          .casino-list .badge { background:#1a1a1a; border:1px solid #333; color:#ccc; font-size:12px; font-weight:600; padding:4px 10px; border-radius:6px; }
          .casino-list .c-btn { flex-shrink:0; background:#00ff88; color:#000; font-weight:700; font-size:15px; padding:12px 24px; border-radius:8px; text-decoration:none; transition:background .3s; white-space:nowrap; }
          .casino-list .c-btn:hover { background:#00cc70; color:#fff; }
          @media(max-width:600px) { .casino-list li { flex-wrap:wrap; } .casino-list .c-name { width:100%; } }
          section { padding: 30px 20px; border-bottom: 1px solid #222; background-color: #0e0e0e; color: #f2f2f2; }
          /* Контейнер-обёртка для таблиц */
          .responsive-table {
              overflow-x: auto;
              -webkit-overflow-scrolling: touch;
          }

          /* Стилизация таблиц */
          .responsive-table table {
              width: 100%;
              border-collapse: collapse;
              min-width: 600px;
              background-color: #111;
              color: #fff;
          }

          .responsive-table th,
          .responsive-table td {
              padding: 10px;
              border: 1px solid #333;
              text-align: left;
          }

          .responsive-table th {
              background-color: #1c1c1c;
              color: #00ff88;
          }

          /* Доп. стиль на мобилках */
          @media screen and (max-width: 768px) {
              .responsive-table {
                  margin-bottom: 20px;
              }

              .responsive-table table {
                  font-size: 14px;
              }
          }

          .top-nav {
              display: flex;
              flex-wrap: wrap;
              justify-content: center;
              gap: 15px;
              background-color: #0e0e0e;
              padding: 10px 10px;
              border-bottom: 2px solid #00ff66;
          }

          .top-nav a {
              color: #00ccff;
              text-decoration: none;
              font-weight: 600;
              font-size: 14px;
              padding: 6px 10px;
              border-radius: 5px;
              background: #111;
              transition: all 0.3s ease;
          }

          .top-nav a:hover {
              background: #00ff88;
              color: #000;
          }

          @media screen and (max-width: 600px) {
              .top-nav {
                  flex-direction: column;
                  align-items: center;
                  gap: 10px;
              }

              .top-nav a {
                  width: 90%;
                  text-align: center;
                  font-size: 15px;
              }
          }

          .slot-cards {
              display: flex;
              flex-wrap: wrap;
              justify-content: center;
              gap: 20px;
              max-width: 1200px;
              margin: auto;
          }

          .slot-card {
              background: #151515;
              border: 1px solid #1f1f1f;
              border-radius: 12px;
              width: 260px;
              padding: 1rem;
              text-align: center;
              box-shadow: 0 0 12px rgba(0,255,128,0.15);
          }

          .slot-card img {
              width: 100%;
              border-radius: 8px;
          }

          .slot-card h3 {
              color: #fff;
              margin: 1rem 0 0.5rem;
          }

          .slot-card p {
              color: #999;
              font-size: 0.9rem;
          }

          @media screen and (max-width: 600px) {
              .slot-cards {
                  flex-direction: column;
                  align-items: center;
              }

              .slot-card {
                  width: 100%;
                  max-width: 340px;
              }

              .casino-list li {
                  gap: 10px;
                  padding: 12px;
              }

              .casino-list .c-name {
                  font-size: 15px;
                  padding: 10px 12px;
              }

              .casino-list .c-btn {
                  width: 100%;
                  text-align: center;
                  padding: 10px;
              }

              section {
                  padding: 20px 12px;
              }
          }
          .download-button {
              display: inline-block;
              margin-top: 20px;
              padding: 12px 24px;
              background-color: #00ff88;
              color: #000;
              font-weight: bold;
              border-radius: 8px;
              text-decoration: none;
              box-shadow: 0 0 10px #00ff88;
              transition: background 0.3s;
          }
          .download-button:hover {
              background-color: #00cc70;
              color: #fff;
          }