:root {
  --bg: #080b11;
  --bg-2: #12161d;
  --bg-3: #1b1e24;
  --bg-4: #242830;
  --line: #3a3f47;
  --accent: #26e176;
  --accent-line: #31ea77;
  --gold: #ffcb3a;
  --text: #f5f5f5;
  --text-2: #ededed;
  --muted: #a8b0bc;
  --field-bg: #101f16;
  --field-line: #2b4e38;
  --radius: 8px;
  --radius-lg: 12px;
  --head: 61px;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  padding-top: var(--head);
}

.wrap {
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 12px;
}

.main {
  padding-bottom: 8px;
}

.page-home .main {
  padding-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  border: 1px solid var(--accent-line);
  color: #080b11;
}

.btn-ghost {
  background: var(--bg-4);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-sm {
  height: 32px;
  padding: 0 10px;
  font-size: 13px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.head {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  height: var(--head);
  background: linear-gradient(90deg, #110808, #080b11);
}

.head::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #04f660, rgba(4, 246, 96, 0));
}

.head-in {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 12px;
}

.head-side {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.head-side-end {
  justify-content: flex-end;
}

.head-logo {
  flex: 0 0 auto;
}

.head-logo-img {
  width: 88px;
  height: auto;
}

.head-side-end .btn-ghost {
  display: none;
}

.hnav {
  display: none;
  gap: 2px;
}

.hnav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-2);
}

.hnav-link:hover {
  background: var(--bg-4);
}

.page-home .hnav-lobby,
.page-tournaments .hnav-tournaments,
.page-promotions .hnav-promotions {
  background: var(--bg-4);
  color: var(--accent);
}

.hnav-icon {
  width: 20px;
  height: 20px;
}

.burger {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--bg-4);
}

.burger-bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.lang {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 32px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-4);
  color: var(--text);
}

.lang-code {
  font-size: 13px;
  font-weight: 700;
}

.lang-caret {
  width: 0;
  height: 0;
  border-top: 5px solid var(--muted);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 5;
  min-width: 150px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-3);
  list-style: none;
}

.lang-item {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-2);
}

.lang-item:hover {
  background: var(--bg-4);
}

.lang-item.is-current {
  color: var(--accent);
}

.drawer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 19;
  max-height: calc(100vh - var(--head));
  overflow-y: auto;
  background: rgba(8, 11, 17, 0.97);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.55);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.drawer::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.drawer-in {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1224px;
  margin: 0 auto;
  padding: 16px 12px 32px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drawer-nav-sub {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.drawer-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 11px 34px 11px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-2);
}

.drawer-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 3px;
  height: 0;
  border-radius: 2px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height 0.16s ease;
}

.drawer-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--text-3, #7c8798);
  border-right: 1.5px solid var(--text-3, #7c8798);
  transform: translateY(-50%) rotate(45deg);
}

.drawer-link-sub {
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 13px;
  opacity: 0.78;
}

.drawer-link:hover {
  background: var(--bg-4);
  color: var(--text);
}

.drawer-link:hover::before {
  height: 18px;
}

.drawer-link:hover::after {
  border-color: var(--accent);
}

.page-home .drawer-home,
.page-promotions .drawer-promotions,
.page-referral .drawer-referral,
.page-tournaments .drawer-tournaments,
.page-providers .drawer-providers,
.page-jackpot .drawer-jackpot,
.page-pwa .drawer-pwa,
.page-login .drawer-login,
.page-support .drawer-support,
.page-license .drawer-license,
.page-rules .drawer-rules,
.page-privacy .drawer-privacy,
.page-refund .drawer-refund,
.page-responsible .drawer-responsible,
.page-aml .drawer-aml,
.page-uaaml .drawer-uaaml {
  background: var(--bg-4);
  color: var(--accent);
  opacity: 1;
}

.page-home .drawer-home::before,
.page-promotions .drawer-promotions::before,
.page-referral .drawer-referral::before,
.page-tournaments .drawer-tournaments::before,
.page-providers .drawer-providers::before,
.page-jackpot .drawer-jackpot::before,
.page-pwa .drawer-pwa::before,
.page-login .drawer-login::before,
.page-support .drawer-support::before,
.page-license .drawer-license::before,
.page-rules .drawer-rules::before,
.page-privacy .drawer-privacy::before,
.page-refund .drawer-refund::before,
.page-responsible .drawer-responsible::before,
.page-aml .drawer-aml::before,
.page-uaaml .drawer-uaaml::before {
  height: 20px;
}

@media (min-width: 1280px) {
  .drawer {
    top: var(--head);
    right: auto;
    width: 320px;
    max-height: none;
    border-radius: 0;
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.55);
  }
  .drawer-in {
    padding: 16px 12px 24px;
  }
}

.hero {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.hero-rail {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-rail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 24px;
}

.hero-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
}

.hero-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.hero-dot.is-active::before {
  background: var(--accent);
}

@media (max-width: 768px) {
  .hero-dots {
    display: none;
  }
}

.sec {
  margin-top: 20px;
}

.sec-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.sec-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
}

.sec-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.sec-all {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 136px;
  grid-template-rows: 190px;
  gap: 8px;
  padding: 4px 8px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.rail-box {
  position: relative;
}

.rail-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  max-height: 100%;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 11, 17, 0.92);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(-50%);
}

.rail-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--text-2);
  border-right: 1.5px solid var(--text-2);
}

.rail-arrow-prev::before {
  margin-left: 3px;
  transform: rotate(-135deg);
}

.rail-arrow-next::before {
  margin-right: 3px;
  transform: rotate(45deg);
}

.rail-arrow:hover {
  border-color: var(--accent);
}

.rail-arrow:hover::before {
  border-color: var(--accent);
}

.rail-arrow.is-on {
  display: flex;
}

.rail-arrow-prev {
  left: 4px;
}

.rail-arrow-next {
  right: 4px;
}

.rail-2 {
  grid-template-rows: repeat(2, 190px);
}

.rail-3 {
  grid-template-rows: repeat(3, 190px);
}

.rail-providers,
.rail-pills,
.rail-winners,
.rail-promo,
.rail-jack {
  display: flex;
  padding: 0 0 4px;
}

.tile {
  position: relative;
  min-width: 0;
  aspect-ratio: 100 / 140;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
}

.rail .tile {
  aspect-ratio: auto;
}

.tile-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-name {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 8px 6px;
  background: linear-gradient(180deg, rgba(8, 11, 17, 0), rgba(8, 11, 17, 0.88));
  font-size: 12px;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rail-providers .provider {
  display: flex;
  flex: 0 0 104px;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-3);
}

.provider-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.rail-pills .pill {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-3);
  font-size: 12px;
  white-space: nowrap;
}

.pill-icon {
  width: 16px;
  height: 16px;
}

.rail-winners .winner {
  display: flex;
  flex: 0 0 96px;
  flex-direction: column;
  gap: 3px;
}

.winner-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.winner-name {
  font-size: 12px;
  color: var(--muted);
}

.winner-sum {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.gslider {
  position: relative;
  padding: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-3);
}

.gslider-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.gslider-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gslider-hero {
  width: 96px;
  height: auto;
}

.gslider-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 18px;
  font-weight: 800;
}

.gslider-logo {
  width: 150px;
  height: auto;
}

.rail-slider {
  position: relative;
  z-index: 1;
}

.rail-promo .promo-link {
  flex: 0 0 264px;
}

.promo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-3);
}

.promo-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.promo-title {
  font-size: 15px;
  font-weight: 700;
}

.promo-text {
  flex: 1 1 auto;
  font-size: 13px;
  color: var(--muted);
}

.wide {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.wide-img {
  width: 100%;
  height: auto;
}

.wide-text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(8, 11, 17, 0), rgba(8, 11, 17, 0.88));
}

.wide-title {
  font-size: 16px;
  font-weight: 700;
}






.rail-jack .jack {
  display: flex;
  flex: 0 0 200px;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(38, 225, 118, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(38, 225, 118, 0.18), rgba(38, 225, 118, 0.03));
}

.jack-name {
  font-size: 13px;
  color: var(--muted);
}

.jack-sum {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}

.info {
  margin-top: 24px;
  padding: 24px 0;
  background: var(--bg-2);
}

.article {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 12px;
}

.article h1 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--accent);
}

.article h2 {
  margin: 22px 0 8px;
  font-size: 19px;
  line-height: 1.25;
  color: var(--accent);
}

.article h3 {
  margin: 16px 0 6px;
  font-size: 16px;
  line-height: 1.3;
}

.article p {
  margin-bottom: 10px;
  color: var(--text-2);
}

.article ul,
.article ol {
  margin-bottom: 14px;
  padding-left: 20px;
}

.article li {
  margin-bottom: 6px;
  color: var(--text-2);
}

.paper {
  max-width: 1140px;
  margin: 16px auto 0;
  padding: 20px 16px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
}

.paper h1 {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--accent);
}

.paper h2 {
  margin: 22px 0 8px;
  font-size: 17px;
  line-height: 1.3;
  color: var(--accent);
}

.paper p {
  margin-bottom: 10px;
  color: var(--text-2);
}

.paper ul {
  margin-bottom: 14px;
  padding-left: 20px;
}

.paper li {
  margin-bottom: 6px;
  color: var(--text-2);
}

.paper a:not(.btn) {
  color: var(--accent);
  text-decoration: underline;
}

.paper-cta {
  margin-top: 20px;
}

.crumbs {
  margin: 20px 0 4px;
}

.crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 13px;
}

.crumbs-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.crumbs-item + .crumbs-item::before {
  content: "›";
  color: var(--muted);
}

.crumbs-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.crumbs-icon {
  width: 16px;
  height: 16px;
}

.crumbs-cur {
  color: var(--text-2);
}

.auth {
  max-width: 420px;
  margin: 24px auto 0;
}

.auth-h1 {
  margin-bottom: 16px;
  font-size: 22px;
  text-align: center;
}

.auth-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 13px;
  color: var(--muted);
}

.field-input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--field-line);
  border-radius: var(--radius);
  background: var(--field-bg);
  color: var(--text);
}

.field-input:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.auth-alt {
  font-size: 13px;
  text-align: center;
  color: var(--accent);
}

.pwa {
  margin-top: 16px;
}

.pwa-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #26e176, #1ca758);
  color: #080b11;
}

.pwa-ht {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pwa-h1 {
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.pwa-badge {
  width: 92px;
  height: 92px;
  border-radius: 20px;
}

.pwa-hero > picture {
  width: 100%;
  max-width: 320px;
}

.pwa-phone {
  width: 100%;
  height: auto;
}

.pwa-cards {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.pwa-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  text-align: center;
}

.pwa-card-img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
}

.pwa-card-title {
  font-size: 16px;
  text-transform: uppercase;
}

.pwa-card-text {
  font-size: 13px;
  color: var(--muted);
}

.tabbed {
  margin-top: 16px;
}

.tabbed-h1 {
  margin-bottom: 12px;
  font-size: 22px;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.tab {
  padding: 10px 14px;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  color: var(--muted);
}

.tab.is-active {
  border-bottom-color: var(--accent);
  color: var(--text);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tours {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tour {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}

.tour-img {
  width: 100%;
  height: auto;
}

.tour-done .tour-img {
  filter: grayscale(1);
  opacity: 0.7;
}

.tour-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.tour-title {
  font-size: 18px;
  line-height: 1.25;
}

.tour-text {
  font-size: 13px;
  color: var(--muted);
}

.tour-pool {
  font-size: 14px;
  color: var(--text-2);
}

.cup {
  width: 22px;
  height: auto;
  margin-right: 6px;
}

table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

table::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

thead,
tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 420px;
}

tr {
  display: flex;
  width: 100%;
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

th,
td {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  text-align: center;
  word-break: break-word;
}

th:first-child,
td:first-child {
  justify-content: flex-start;
  text-align: left;
}

thead th {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
}

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

.foot {
  margin-top: 24px;
  padding: 24px 0 16px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.foot-in {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 12px;
}

.foot-logo-img {
  width: 150px;
  height: auto;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-link {
  font-size: 13px;
  color: var(--muted);
}

.foot-link:hover {
  color: var(--text);
}

.foot-bot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(38, 225, 118, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(38, 225, 118, 0.18), rgba(38, 225, 118, 0.04));
}

.foot-bot-img {
  width: 56px;
  height: auto;
}

.foot-bot-text {
  display: flex;
  flex-direction: column;
}

.foot-bot-title {
  font-size: 12px;
  color: var(--muted);
}

.foot-bot-sub {
  font-size: 14px;
}

.foot-rights {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  max-width: 1224px;
  margin: 16px auto 0;
  padding: 12px 12px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

@media (min-width: 560px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .head-logo-img {
    width: 118px;
  }

  .head-side {
    flex: 1 1 0;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .wrap,
  .head-in,
  .article,
  .foot-in,
  .foot-rights {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    aspect-ratio: auto;
    height: 390px;
  }

  .head-logo-img {
    width: 150px;
  }

  .head-side-end .btn-ghost {
    display: inline-flex;
  }

  .rail-providers .provider {
    flex-basis: 132px;
    height: 52px;
  }

  .rail-winners .winner {
    flex-basis: 120px;
  }

  .gslider {
    padding: 16px;
  }

  .gslider-hero {
    width: 140px;
  }

  .gslider-title {
    font-size: 24px;
  }

  .gslider-logo {
    width: 220px;
  }

  .rail-promo .promo-link {
    flex-basis: 320px;
  }

  .paper {
    padding: 28px 32px 36px;
  }

  .pwa-hero {
    flex-direction: row;
    justify-content: space-between;
    padding: 28px 32px;
  }

  .pwa-ht {
    align-items: flex-start;
  }

  .pwa-h1 {
    font-size: 32px;
    text-align: left;
  }

  .foot-in {
    grid-template-columns: 180px 1fr 1fr 280px;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .hnav {
    display: flex;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .article h1 {
    font-size: 28px;
  }

  .article h2 {
    font-size: 22px;
  }

  .paper h1 {
    font-size: 26px;
  }

  .sec-title {
    font-size: 18px;
  }
}

.page-category .wrap {
  max-width: none;
  padding: 0 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding-top: 16px;
}

.provs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 8px;
}

.prov {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 104px;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-3);
}

.prov-img {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.prov-name {
  font-size: 13px;
  color: var(--text-2);
}

.prov-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
}

.page-providers .sec-title,
.page-jackpot .paper h1,
.page-referral .paper h1 {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(186px, 1fr));
    gap: 8px;
  }

  .provs {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (min-width: 1440px) {
  .page-category .wrap {
    max-width: 1232px;
  }
}
