@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=Montserrat: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%;
}

/* 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: "Montserrat", sans-serif;
  color: #333;
}

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

p {
  line-height: 150%;
}

h1 {
  font-size: 42px;
  font-weight: 800;
  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: #233d50;
}

table {
  
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
  
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
table tr th {
  
  background-color: #e4e4fd;
  color: #333;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}

.header {
  background: #00dbff;
  padding: 5px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo {
  flex: 0 0 150px;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .container .auth .btn {
  border-radius: 6px;
  padding: 12px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
.header .container .auth .btn-1 {
  border: 1px solid #fff;
  color: #fff;
}
.header .container .auth .btn-1:hover {
  background: rgba(255, 255, 255, 0.1254901961);
}
.header .container .auth .btn-2 {
  background: #ffc41e;
  color: #fff;
  font-weight: 600;
}
.header .container .auth .btn-2:hover {
  background: #967007;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 50px 0;
}
.main .subtitle {
  text-align: center;
  font-size: 18px;
}
.main .cards {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.main .cards .cards__wrapper {
  padding: 0.1rem;
  background: linear-gradient(90deg, rgb(0, 128, 255) 0%, #3002b2 100%);
}
.main .cards .card {
  background: #f8f8ff;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 0.5fr 1fr 1fr 0.5fr;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  position: relative;
}
.main .cards .card::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: -1.2rem;
  width: 100px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  border-radius: 10px;
  border-top-left-radius: 10px;
  background-color: #ccc;
  color: #000;
}
.main .cards .card__img {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
.main .cards .card__img .img {
  background-color: #050322;
  border-radius: 20px;
  padding: 1rem;
  height: 120px;
  display: flex;
  justify-content: center;
}
.main .cards .card__img .img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.main .cards .card__img .icon {
  width: 30px;
}
.main .cards .card__name {
  font-size: 18px;
  font-weight: 600;
  color: #ffc41e;
}
.main .cards .card__rate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.main .cards .card__rate img {
  width: 25px;
  height: 25px;
}
.main .cards .card__rate span {
  font-size: 18px;
  font-weight: 600;
}
.main .cards .card__bonus {
  background-color: #e4e4fd;
  font-size: 24px;
  font-weight: 700;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 2px #3002b2;
}
.main .cards .card__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 24px;
}
.main .cards .card__text strong {
  font-weight: 800;
}
.main .cards .card__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}
.main .cards .card__btn a {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #3002b2;
  color: #fff;
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 700;
  animation: pulse 1.5s infinite;
}
.main .cards .card__btn p {
  color: #868593;
  font-size: 14px;
}
.main .cards .card__btn .lic {
  background-color: #61606e;
  padding: 0.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main .cards .cards__wrapper:nth-child(1) .card::before {
  content: "TOP 1";
  background: linear-gradient(90deg, rgb(0, 128, 255) 0%, #3002b2 100%);
  color: #fff;
}
.main .cards .cards__wrapper:nth-child(2) .card::before {
  content: "TOP 2";
  background: linear-gradient(90deg, rgb(0, 128, 255) 0%, #3002b2 100%);
  color: #fff;
}
.main .cards .cards__wrapper:nth-child(3) .card::before {
  content: "TOP 3";
  background: linear-gradient(90deg, rgb(0, 128, 255) 0%, #3002b2 100%);
  color: #fff;
}
.main .cards .card:nth-child(4) {
  border: 1.5px solid #ccc;
}
.main .cards .card:nth-child(4)::before {
  content: "#4";
}
.main .cards .card:nth-child(5) {
  border: 1.5px solid #ccc;
}
.main .cards .card:nth-child(5)::before {
  content: "#5";
}
.main .cards .card:nth-child(6) {
  border: 1.5px solid #ccc;
}
.main .cards .card:nth-child(6)::before {
  content: "#6";
}
.main .cards .card:nth-child(7) {
  border: 1.5px solid #ccc;
}
.main .cards .card:nth-child(7)::before {
  content: "#7";
}
.main .cards .card:nth-child(8) {
  border: 1.5px solid #ccc;
}
.main .cards .card:nth-child(8)::before {
  content: "#8";
}
.main .cards .card:nth-child(9) {
  border: 1.5px solid #ccc;
}
.main .cards .card:nth-child(9)::before {
  content: "#9";
}
.main .cards .card:nth-child(10) {
  border: 1.5px solid #ccc;
}
.main .cards .card:nth-child(10)::before {
  content: "#10";
}
.main .content {
  border-radius: 6px;
}
.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: 30px 0;
  background-color: #967007;
  color: #fff;
}
.footer .container {
  display: flex;
  justify-content: center;
  text-align: center;
}
.footer .container p {
  font-size: 13px;
}
.footer .container .flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .container .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.footer .container .icons img {
  height: 40px;
}

@media (max-width: 768px) {
  table{
    display: block;
  }
  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;
    gap: 15px;
  }
  .header .container .logo {
    flex: auto;
  }
  .header .container .logo img {
    max-width: 100px;
  }
  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;
    gap: 15px;
  }
  .main {
    padding: 5px 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .cards .card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .main .cards .card__bonus {
    font-size: 20px;
    padding: 1.5rem;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1); /* Исходный размер */
    box-shadow: 0 0 5px rgba(49, 2, 178, 0.5647058824);
  }
  50% {
    transform: scale(1.1); /* Увеличение */
    box-shadow: 0 0 20px rgba(49, 2, 178, 0.8392156863);
  }
  100% {
    transform: scale(1); /* Возврат к исходному размеру */
    box-shadow: 0 0 5px rgba(49, 2, 178, 0.5647058824);
  }
}