@charset "UTF-8";

textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  /* Убирает подчеркивание */
  color: inherit;
  /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal;
  /* Устанавливает обычный вес шрифта */
  background: none;
  /* Убирает фоновый цвет */
  border: none;
  /* Убирает границу */
  outline: none;
  /* Убирает обводку */
}

@font-face {
  font-family: "AnonymousPro";
  src: url("/AnonymousPro-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prompt";
  src: url("/Prompt-Medium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

body {
  box-sizing: border-box;
  font-family: "Prompt";
}

/* ===== BETCASINOS-UK: Header + Hero (SCSS) ===== */
:root {
  --brand-start: #d22b2b;
  --brand-end: #a51f1f;
  --surface: rgba(255, 255, 255, 0.5);
  --overlay: rgba(0, 0, 0, 0.45);
  --radius-xl: 24px;
  --container-w: 1160px;
  --bg: #0b0b0c;
  --card: #101013;
  --card-2: #0e0e11;
  --red-1: #b32424;
  --red-2: #df4b3f;
  --glow: rgba(255, 52, 52, 0.32);
  --radius-xl: 20px;
  --container-w: 1160px;
  --text: #f5f5f7;
  --muted: #b7b7bf;
  --container-w: 1160px;
  --bg: #0b0b0c;
  --card: #0f0f13;
  --stroke: rgba(255, 255, 255, 0.35);
  --stroke-2: rgba(255, 255, 255, 0.12);
  --text: #f5f5f7;
  --muted: #cfd0d4;
  --radius: 10px;
  --container-w: 1160px;
  --footer-start: #c83a33;
  --footer-end: #8f1f1f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.88);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.logo-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Header */
.betcasinos-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--brand-start), var(--brand-end));
}

.betcasinos-header__bar {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.betcasinos-header__icon {
  width: 24px;
  height: 24px;
}

/* Hero */
.betcasinos-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0 72px;
  color: #111;
}

/* Фон-флаг как отдельная картинка */
.betcasinos-hero__bgimg {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

/* Затемняющая маска поверх фона */
.betcasinos-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--overlay) 0%, rgba(0, 0, 0, 0) 60%);
}

/* Карточка слева */
.betcasinos-hero__card {
  max-width: 841px;
  background: var(--surface);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-xl);
  padding: 73px 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.betcasinos-hero__title {
  margin: 0 0 30px 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
}

@media (max-width: 720px) {
  .betcasinos-hero__title {
    font-size: 32px;
  }
}

.betcasinos-hero__lead {
  margin: 0 0 16px 0;
  font-size: 20px;
  color: #333;
  font-family: "AnonymousPro";
}

/* Бейджи с иконками */
.betcasinos-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: "AnonymousPro";
}

.betcasinos-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 20px;
}

.betcasinos-badge__icon {
  width: 22px;
  height: 22px;
}

/* Рулетка справа */
.betcasinos-hero__roulette {
  width: 389px;
  max-width: 38vw;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.35));
}

@media (max-width: 560px) {
  .betcasinos-hero__roulette {
    display: none;
  }
}

/* ===== BETCASINOS-UK: TOPLIST ===== */
:root {
  --bg: #0b0b0c;
  --card: #101013;
  --card-2: #0e0e11;
  --red-1: #b32424;
  --red-2: #df4b3f;
  --glow: rgba(255, 52, 52, 0.32);
  --radius-xl: 20px;
  --container-w: 1160px;
  --text: #f5f5f7;
  --muted: #b7b7bf;
}

.betcasinos-toplist {
  background: var(--bg);
  color: var(--text);
  padding: 20px 0 40px;
}

.betcasinos-container {
  width: min(var(--container-w), 100% - 32px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

/* Updated strip */
.betcasinos-updated {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 16px 0;
  color: var(--muted);
}

.betcasinos-updated__dot {
  width: 12px;
  height: 12px;
}

/* Cards grid (stacked) */
.betcasinos-cards {
  display: grid;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Card shell with red glow and double border feel */
.betcasinos-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #141418, #0e0e12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 0 2px rgba(179, 36, 36, 0.25), 0 10px 28px var(--glow);
  padding: 16px;
}

/* small inner container for content with darker backdrop */
.betcasinos-card__in {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 140px 220px;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border-radius: calc(var(--radius-xl) - 6px);
  background: linear-gradient(180deg, #121216, #0c0c10);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.04);
}

/* Ribbon (left top) */
.betcasinos-card__ribbon {
  position: absolute;
  left: 16px;
  top: -10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #c83a33, #9a2626);
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.betcasinos-card__ribbon img {
  width: 18px;
  height: 18px;
}

.betcasinos-card__ribbonText {
  font-size: 12px;
  font-weight: 700;
}

/* Left column */
.betcasinos-card__left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.betcasinos-card__logoLink {
  display: inline-flex;
  align-items: center;
}

.betcasinos-card__logo {
  width: 160px;
  height: auto;
}

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

.betcasinos-card__bonusLabel {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #ff6b5e;
  font-weight: 800;
}

.betcasinos-card__bonusText {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

/* Middle column */
.betcasinos-card__middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.betcasinos-card__rating {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.betcasinos-card__stars {
  display: flex;
  gap: 6px;
}

.betcasinos-card__stars img {
  width: 18px;
  height: 18px;
}

/* Right column */
.betcasinos-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.betcasinos-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 18px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 12px;
  background: linear-gradient(180deg, #df5a49, #9d2b26);
  box-shadow: 0 6px 18px rgba(223, 90, 73, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.betcasinos-card__payments {
  display: flex;
  gap: 10px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.betcasinos-card__payments img {
  width: 36px;
  height: 24px;
  object-fit: contain;
  background: #0f0f13;
  border-radius: 6px;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- 742 px и ниже ---------- */
@media (max-width: 742px) {

  /* Карточка: переходим на одну колонку */
  .betcasinos-card__in {
    grid-template-columns: 1fr;
    /* одна колонка */
    gap: 22px;
    text-align: center;
    /* выравниваем контент по центру */
    padding: 22px 18px;
  }

  /* ЛЕВАЯ часть: логотип сверху, бонус под ним */
  .betcasinos-card__left {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }

  .betcasinos-card__logo {
    width: 140px;
    /* чуть меньше на мобильных */
  }

  .betcasinos-card__bonusText {
    font-size: 18px;
  }

  /* СРЕДНЯЯ часть: рейтинг + звёзды в одну строку */
  .betcasinos-card__middle {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .betcasinos-card__rating {
    font-size: 32px;
  }

  .betcasinos-card__stars img {
    width: 16px;
    height: 16px;
  }

  /* ПРАВАЯ часть: кнопка на всю ширину, платежки центром */
  .betcasinos-card__right {
    align-items: center;
  }

  .betcasinos-card__cta {
    min-width: 100%;
    width: 100%;
    padding: 14px 20px;
  }

  .betcasinos-card__payments {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .betcasinos-card__payments img {
    width: 46px;
    height: 30px;
  }

  /* Лента «Popular» — чуть ниже, чтобы не налезала */
  .betcasinos-card__ribbon {
    top: -6px;
    left: 12px;
  }
}

/* ---------- 560 px и ниже (дальнейшая оптимизация) ---------- */
@media (max-width: 560px) {
  .betcasinos-card__logo {
    width: 120px;
  }

  .betcasinos-card__bonusText {
    font-size: 16px;
  }

  .betcasinos-card__cta {
    font-size: 14px;
  }
}

/* ---------- 420 px и ниже (самые узкие экраны) ---------- */
@media (max-width: 420px) {
  .betcasinos-card {
    padding: 12px;
  }

  .betcasinos-card__in {
    padding: 18px 14px;
  }

  .betcasinos-card__rating {
    font-size: 28px;
  }
}

.betcasinos-container {
  width: min(var(--container-w), 100% - 32px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.betcasinos-info {
  background: var(--bg);
  color: var(--text);
  padding: 16px 0 40px;
  position: relative;
  z-index: 1;
}

.betcasinos-infoItem {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 0 0 22px 0;
  /* тонкая белая окантовка с внутренней линией и лёгким свечением */
  box-shadow: 0 0 0 2px var(--stroke) inset, 0 0 0 1px var(--stroke-2), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.betcasinos-infoItem__title {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.betcasinos-infoItem__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-family: "AnonymousPro";
}

.betcasinos-infoItem__list {
  margin: 8px 0 0 0;
  padding-left: 16px;
  /* стандартный маркер, как на макете */
  display: block;
}

.betcasinos-infoItem__list li {
  margin: 2px 0;
}

/* ===== BETCASINOS-UK: Footer (SCSS) ===== */
.betcasinos-container {
  width: min(var(--container-w), 100% - 32px);
  margin-inline: auto;
}

.betcasinos-footer {
  background: linear-gradient(180deg, var(--footer-start) 0%, var(--footer-end) 100%);
  color: var(--text);
  padding: 22px 0 28px;
}

/* Логотипы */
.betcasinos-footer__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 18px;
  flex-wrap: wrap;
}

.betcasinos-footer__logoLink {
  display: inline-flex;
  align-items: center;
}

.betcasinos-footer__logo {
  height: 34px;
  width: auto;
  display: block;
}

/* Две колонки */
.betcasinos-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  padding: 10px 0 18px;
}

.betcasinos-footCol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.betcasinos-footBlock__title {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.betcasinos-footBlock__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.betcasinos-footBlock__list {
  margin: 6px 0 0 0;
  padding-left: 16px;
}

.betcasinos-footBlock__list li {
  margin: 2px 0;
}

/* Нижнее меню */
.betcasinos-footer__bottomNav {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}

.betcasinos-footer__link {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
}

/* Адаптив */
@media (max-width: 960px) {
  .betcasinos-footer__grid {
    grid-template-columns: 1fr;
  }

  .betcasinos-footer__bottomNav {
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 8px;
  }
}

/* ===== BETCASINOS-UK: Responsible Gambling (fully namespaced) ===== */
/* Никаких глобальных селекторов и :root. Все переменные на .bcuk-rg */
.bcuk-rg {
  /* local design tokens */
  --rg-container-w: 1160px;
  --rg-panel-bg: rgba(255, 255, 255, 0.46);
  --rg-panel-radius: 24px;
  --rg-panel-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --rg-overlay: rgba(0, 0, 0, 0.45);
  --rg-text: #1a1a1a;
  --rg-muted: #2a2a2a;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 40px 0 48px;
  color: var(--rg-text);
  background: #000;
  /* подложка пока не загрузится фон */
}

/* локальный контейнер */
.bcuk-rg__container {
  width: min(var(--rg-container-w), 100% - 48px);
  margin-inline: auto;
}

/* фон */
.bcuk-rg__bgimg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

/* затемнение */
.bcuk-rg__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--rg-overlay) 0%, rgba(0, 0, 0, 0) 60%);
}

/* стеклянная панель */
.bcuk-rg__panel {
  background: var(--rg-panel-bg);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: var(--rg-panel-radius);
  box-shadow: var(--rg-panel-shadow);
  padding: 22px 24px 22px;
  width: 100%;
}

/* типографика блока */
.bcuk-rg__title {
  margin: 0 0 12px 0;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #000;
}

.bcuk-rg__p {
  margin: 0 0 12px 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--rg-muted);
  font-family: "AnonymousPro";
}

.bcuk-rg__ul {
  margin: 6px 0 14px 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--rg-muted);
  font-family: "AnonymousPro";
}

.bcuk-rg__ul li {
  margin: 2px 0;
}

.bcuk-rg__note {
  margin: 10px 0 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--rg-muted);
}

/* адаптив */
@media (max-width: 720px) {
  .bcuk-rg__container {
    width: min(var(--rg-container-w), 100% - 28px);
  }

  .bcuk-rg__panel {
    border-radius: 18px;
    padding: 18px;
  }

  .bcuk-rg__title {
    font-size: 28px;
  }

  .bcuk-rg__p,
  .bcuk-rg__ul,
  .bcuk-rg__note {
    font-size: 14px;
  }
}

canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #070707;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/* ---- stats.js ---- */
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

.betcasinos-card__cta {
  transition: 0.5s;
  /*влияет на плавность изменения тени при наведении*/
  background: repeating-linear-gradient(75grad, rgba(0, 0, 0, 0) 25%, rgba(255, 255, 255, 0.6) 26%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%), #b32424;
  /*-----------поменяй на ЗЕЛЕНЫЙ!!!*/
  /*Свойстава ниже можно менять под общий стиль сайта*/
  /*запуск анимации, для повышения скорости надо 5s уменьшить до 4,3,2,1 итд*/
  animation: mymove 5s infinite linear;
}

.betcasinos-card__cta:hover {
  background: repeating-linear-gradient(75grad, rgba(0, 0, 0, 0) 25%, rgba(255, 255, 255, 0.6) 26%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%), lightgray;
  /*-----------поменяй на ЗЕЛЕНЫЙ!!!*/
  color: black;
  box-shadow: -1px 5px 10px rgba(0, 0, 0, 0.35);
}

/*Сама анимация*/
@keyframes mymove {
  0% {
    background-position: 0px 0px;
  }

  100% {
    background-position: 500px 0px;
  }
}

#fag {
  background: black;
}

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