:root {
  --color-primary-start: #f27121;
  --color-primary-end: #e94057;
  --color-primary-hover-start: #e0651a;
  --color-primary-hover-end: #d63650;

  --color-header-bg: rgba(34, 37, 50, 1);
  --color-header-border: rgba(68, 74, 95, 1);
  --color-header-promo: rgba(228, 88, 9, 1);
  --color-header-promo-hover: rgba(210, 80, 8, 1);
  --color-header-lang-bg: rgba(42, 42, 64, 1);

  --color-dark: #1a1c2e;
  --color-dark-light: #252840;
  --color-dark-lighter: #2f3250;

  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f8fa;
  --color-border: #e8eaed;

  --color-text: #1a1a2e;
  --color-text-secondary: #5a5f73;
  --color-text-muted: #8b90a0;

  --color-star: #f5a623;
  --color-star-empty: #ddd;

  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-width: 1110px;
  --container-padding: 0;
  --header-max-width: 1920px;
  --header-padding-x: 25px;

  --header-height: 64px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 1000px;

  --shadow-header: 0 4px 8px rgba(0, 0, 0, 0.24), 0 0 1px rgba(0, 0, 0, 0.32);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

  --transition: 0.2s ease;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.857;
  color: var(--color-text);
  background-color: var(--color-bg);
}
body *{
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
  text-align: left;
  margin-bottom: 20px;
}

.section-title-light {
  color: var(--color-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  background: linear-gradient(to right, var(--color-primary-start), var(--color-primary-end));
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:hover {
  background: linear-gradient(to right, var(--color-primary-hover-start), var(--color-primary-hover-end));
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.stars {
  display: inline-flex;
  gap: 2px;
  font-size: 18px;
  line-height: 1;
}

.stars-sm {
  font-size: 14px;
}

.stars::before {
  content: '★★★★★';
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--color-star) var(--fill, 100%), var(--color-star-empty) var(--fill, 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stars-4::before { --fill: 80%; }
.stars-4-5::before { --fill: 90%; }
.stars-5::before { --fill: 100%; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background-color: var(--color-header-bg);
  box-shadow: var(--shadow-header);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--header-max-width);
  margin: 0 auto;
  padding: 0 var(--header-padding-x);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-shrink: 0;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo-img {
  width: 147px;
  height: 42px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.header-nav-link {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
  white-space: nowrap;
  transition: opacity var(--transition);
}

.header-nav-link:hover {
  opacity: 0.85;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  border: 1px solid var(--color-header-border);
  border-radius: var(--radius-pill);
  transition: border-color var(--transition), background-color var(--transition);
}

.header-login:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

.header-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-header-promo);
  border: 1px solid var(--color-header-promo);
  border-radius: var(--radius-pill);
  transition: background-color var(--transition);
}

.header-promo:hover {
  background-color: var(--color-header-promo-hover);
  border-color: var(--color-header-promo-hover);
}

.header-promo-short {
  display: none;
}

.header-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(242, 242, 242, 1);
  background-color: var(--color-header-lang-bg);
  border-radius: 10px;
  transition: background-color var(--transition);
}

.header-lang:hover {
  background-color: rgba(52, 52, 78, 1);
}

.header-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  margin-left: 12px;
}

.header-burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header-burger-active .header-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-burger-active .header-burger-line:nth-child(2) {
  opacity: 0;
}

.header-burger-active .header-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-menu {
  display: none;
}

.hero {
  padding: 40px 0 32px;
  background-color: var(--color-bg);
}

.hero-inner {
  display: flex;
  flex-direction: column;
}

.hero-title {
  max-width: 100%;
  margin: 0 auto 20px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}

.hero-author-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 180px;
  padding: 7px 20px 14px;
  background-color: #f6f6f6;
  border-radius: 20px;
  margin: 30px 0 7px;
}

.hero-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-author-avatar {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero-author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-author-name {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-author-name-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  color: rgba(35, 37, 39, 1);
  text-transform: uppercase;
}

.hero-author-verified {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}

.hero-author-social-icon {
  flex-shrink: 0;
  width: 15.25px;
  height: 17px;
}

.hero-author-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  color: #979797;
}

.hero-author-link {
  font-size: 10px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  color: rgba(228, 88, 9, 1);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition);
}

.hero-author-link:hover {
  opacity: 0.8;
}

.hero-author-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 455px;
}

.hero-author-feature {
  display: flex;
  align-items: center;
  gap: 13.03px;
}

.hero-author-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 13.74px;
  height: 19px;
  padding: 4px 0;
  box-sizing: border-box;
}

.hero-author-feature-icon img {
  width: 13.74px;
  height: 11px;
  object-fit: contain;
}

.hero-author-feature-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 0;
  color: rgba(90, 82, 71, 1);
  text-align: left;
}

.hero-intro {
  text-align: left;
}

.hero-intro p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.857;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 20px;
}

.hero-intro p:last-child {
  margin-bottom: 0;
}

.hero-intro a {
  color: rgba(228, 88, 9, 1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.casino-list {
  padding: 0 0 20px;
  background-color: var(--color-bg);
}

.casino-list .section-title {
  margin-bottom: 30px;
}

.casino-list-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.casino-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 142px;
  padding: 0 25px;
  background-color: rgba(246, 246, 246, 1);
  border: none;
  border-radius: 16px;
}

.casino-card-1 {
  border: 2px solid rgba(228, 88, 9, 1);
}

.casino-card-2 {
  border: 2px solid rgba(178, 71, 10, 0.73);
}

.casino-card-3 {
  border: 2px solid rgba(121, 44, 0, 0.4);
}

.casino-card-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  width: 370px;
}

.casino-card-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  padding: 0 10px;
}

.casino-card-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.casino-card-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.casino-card-rank-1 {
  background-color: rgba(228, 88, 9, 1);
}

.casino-card-rank-2 {
  background-color: rgba(197, 119, 75, 1);
}

.casino-card-rank-3 {
  background-color: rgba(196, 165, 148, 1);
}

.casino-card-rank-4 {
  background-color: rgba(34, 37, 50, 1);
}

.casino-card-rank-5 {
  background-color: rgba(34, 37, 50, 1);
}

.casino-card-rank-6 {
  background-color: rgba(34, 37, 50, 1);
}

.casino-card-rank-7 {
  background-color: rgba(34, 37, 50, 1);
}

.casino-card-rank-8 {
  background-color: rgba(34, 37, 50, 1);
}

.casino-card-logo {
  flex-shrink: 0;
  width: 166px;
  height: 98px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000000;
}

.casino-card-logo img {
  width: 166px;
  height: 98px;
  object-fit: contain;
}

.casino-card-brand {
  flex: 1;
  min-width: 0;
}

.casino-card-name {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
}

.casino-card-rating {
  font-size: 16px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0;
  color: rgba(107, 114, 128, 1);
}

.casino-card-bonus {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  color: rgba(228, 88, 9, 1);
}

.casino-card-license {
  font-size: 16px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0;
  color: rgba(107, 114, 128, 1);
}

.casino-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px 36px;
  font-size: 24px;
  font-weight: 700;
  line-height: 38.4px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  background-color: rgba(228, 88, 9, 1);
  border-radius: 1000px;
  transition: background-color var(--transition);
}

.casino-card-btn:hover {
  background-color: rgba(210, 80, 8, 1);
}

.content {
  padding: 50px 0;
}

.content-inner .section-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.content-inner .section-title:first-child {
  margin-top: 0;
}

.content-block {
  margin-bottom: 32px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-inner .content-block .section-title:first-child {
  margin-top: 0;
}

.content-inner p {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.857;
  letter-spacing: 0;
  color: rgba(51, 51, 51, 1);
}

.content-inner p:last-child {
  margin-bottom: 0;
}

.legal-page {
  padding: 40px 0 60px;
}

.legal-page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.legal-page-breadcrumbs a {
  color: rgba(228, 88, 9, 1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page-breadcrumbs a:hover {
  opacity: 0.8;
}

.legal-page .content-inner a {
  color: rgba(228, 88, 9, 1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page-author {
  margin: 0 0 24px;
}

.legal-page-sitemap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.legal-page-sitemap a {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.content-subtitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
  color: rgba(0, 0, 0, 1);
}

.content-list {
  margin-bottom: 20px;
  padding-left: 0;
}

.content-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(51, 51, 51, 1);
  line-height: 1.857;
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--color-primary-start), var(--color-primary-end));
  border-radius: 50%;
}

.table-wrap {
  margin: 70px 0;
  border: 1px solid rgba(228, 88, 9, 1);
  border-radius: 35px;
  overflow: hidden;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: var(--color-white);
}

.comparison-table thead {
  background: linear-gradient(180deg, rgba(255, 125, 52, 1) 0%, rgba(188, 68, 0, 1) 100%);
}

.comparison-table th {
  position: relative;
  height: 100px;
  padding: 0 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-white);
  background: linear-gradient(180deg, rgba(255, 125, 52, 1) 0%, rgba(188, 68, 0, 1) 100%);
  border: none;
  border-bottom: 1px solid rgba(228, 88, 9, 1);
  vertical-align: middle;
}

.comparison-table th:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 70px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateY(-50%);
  pointer-events: none;
}

.comparison-table td {
  height: 88px;
  padding: 0 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
  border: none;
  border-right: 1px solid rgba(228, 88, 9, 1);
  border-bottom: 1px solid rgba(228, 88, 9, 1);
  vertical-align: middle;
  background-color: var(--color-white);
}

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

.comparison-table td:last-child,
.comparison-table th:last-child {
  border-right: none;
}

.comparison-table-col-num {
  width: 72px;
  min-width: 72px;
  max-width: 72px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.comparison-table thead .comparison-table-col-num {
  font-size: 20px;
}

.comparison-table td.comparison-table-col-num {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.content-inner .promo-block {
  margin-top: 70px;
}

.promo-block-banner {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.promo-block-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.content-inner .promo-block .section-title {
  margin-top: 0;
  margin-bottom: 40px;
}

.faq {
  padding: 20px 0 100px;
  background-color: var(--color-bg);
}

.faq .section-title {
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding: 30px 30px 16px;
  background-color: rgba(34, 37, 50, 1);
  border-radius: 20px;
}

.faq-question {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
}

.faq-answer {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
}

.footer {
  background-color: rgba(31, 34, 46, 1);
  color: rgba(146, 150, 162, 1);
}

.footer .container {
  max-width: 1520px;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-top.container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 48px;
}

.footer-brand {
  flex: 0 1 851px;
  max-width: 851px;
  width: 100%;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 37px;
}

.footer-logo-img {
  display: block;
  width: 351px;
  max-width: 100%;
  height: 100px;
  object-fit: contain;
  object-position: left center;
}

.footer-about {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  color: rgba(146, 150, 162, 1);
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  flex: 0 0 669px;
  width: 669px;
  max-width: 100%;
  gap: 40px;
  padding-top: 0;
}

.footer-col {
  flex: 1 1 auto;
}

.footer-col-title {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.footer-col-list li {
  margin: 0;
}

.footer-link,
.footer-col-list a {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  color: rgba(146, 150, 162, 1);
  white-space: nowrap;
  transition: color var(--transition);
}

.footer-link:hover,
.footer-col-list a:hover {
  color: var(--color-white);
}

.footer-col-tools {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  gap: 30px;
}

.footer-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 88px;
  height: 32px;
  padding: 8px 4px 8px 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  background-color: rgba(68, 74, 95, 1);
  border: none;
  border-radius: 22px;
  cursor: pointer;
  transition: background-color var(--transition);
}

.footer-lang:hover {
  background-color: rgba(78, 84, 105, 1);
}

.footer-lang-arrow {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.footer-sitemap {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  color: rgba(146, 150, 162, 1);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.footer-sitemap:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: none;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  max-width: 851px;
}

.footer-warning,
.footer-copyright {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  color: rgba(146, 150, 162, 1);
}

.footer-copyright {
  margin-top: 0;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.footer-badge {
  display: block;
  height: 30px;
  width: auto;
  object-fit: contain;
}

.footer-badge-18 {
  width: 30px;
  height: 30px;
}

.footer-badge-hand {
  width: 38px;
  height: 30px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  color: var(--color-white);
  background: linear-gradient(180deg, #FF8947 0%, #B84504 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  box-shadow: 0px 0px 20px 0px rgba(255, 137, 71, 1);
}

.scroll-top:hover {
  background: linear-gradient(180deg, #ffa05f 0%, #a03c03 100%);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-icon {
  display: block;
  width: 18px;
  height: 11px;
}

@media (max-width: 1520px) {
  .footer .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1200px) {
  .header-left {
    gap: 24px;
  }

  .header-promo {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .casino-card {
    gap: 12px;
    padding: 16px 20px;
  }

  .casino-card-left {
    width: auto;
    flex: 1 1 280px;
    min-width: 0;
  }

  .casino-card-center {
    flex: 1 1 200px;
  }

  .comparison-table th {
    font-size: 14px;
    padding: 0 8px;
  }

  .comparison-table td {
    font-size: 14px;
    padding: 0 8px;
  }

  .comparison-table-col-num {
    width: 56px;
    min-width: 56px;
    max-width: 56px;
    font-size: 24px;
  }

  .comparison-table thead .comparison-table-col-num,
  .comparison-table td.comparison-table-col-num {
    font-size: 24px;
  }

  .comparison-table thead .comparison-table-col-num {
    font-size: 16px;
  }

  .footer-brand {
    max-width: 520px;
    flex-basis: 520px;
  }

  .footer-nav {
    flex: 0 1 520px;
    width: auto;
  }
}

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

  .hero-title {
    font-size: 42px;
    line-height: 1.3;
    max-width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .table-wrap {
    border-radius: 24px;
  }
}

@media (max-width: 992px) {
  body.menu-open {
    overflow: hidden;
  }

  .header-left {
    gap: 0;
  }

  .header-logo-img {
    width: 80px;
    height: 23px;
  }

  .header-nav,
  .header-lang {
    display: none;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
    gap: 8px;
  }

  .header-buttons {
    gap: 6px;
  }

  .header-login {
    padding: 8px 12px;
    font-size: 11px;
  }

  .header-promo {
    padding: 8px 10px;
    font-size: 11px;
    max-width: none;
  }

  .header-promo-full {
    display: none;
  }

  .header-promo-short {
    display: inline;
  }

  .header-burger {
    display: flex;
    margin-left: 8px;
  }

  .header-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 130;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-menu[hidden] {
    display: none;
  }

  .header-menu-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    padding: 16px 20px 32px;
    background-color: var(--color-header-bg);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .header-menu.is-open .header-menu-panel {
    transform: translateX(0);
  }

  .header-menu-close {
    position: relative;
    align-self: flex-end;
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    flex-shrink: 0;
  }

  .header-menu-close::before,
  .header-menu-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
  }

  .header-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .header-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .header-menu-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
  }

  .header-menu-actions .header-lang {
    display: inline-flex;
    width: 44px;
    height: 40px;
    font-size: 13px;
    font-weight: 600;
    background-color: rgba(42, 46, 60, 1);
    border-radius: var(--radius-pill);
  }

  .header-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .header-menu-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-white);
    text-align: left;
    transition: opacity var(--transition);
  }

  .header-menu-link:hover {
    opacity: 0.85;
  }

  .hero {
    padding: 28px 0 24px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.3;
  }

  .hero-author-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 24px 0 16px;
  }

  .hero-author-features {
    max-width: none;
    width: 100%;
  }

  .hero-intro p {
    font-size: 15px;
    line-height: 26px;
  }

  .casino-list .section-title {
    margin-bottom: 20px;
  }

  .casino-card {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    min-height: auto;
  }

  .casino-card-left {
    width: 100%;
    flex: none;
    flex-wrap: wrap;
    gap: 16px;
  }

  .casino-card-center {
    flex: none;
    padding: 0;
  }

  .casino-card-right {
    justify-content: stretch;
  }

  .casino-card-btn {
    width: 100%;
    text-align: center;
  }

  .content {
    padding: 32px 0;
  }

  .table-wrap {
    margin: 40px 0;
    border-radius: 20px;
  }

  .comparison-table {
    min-width: 720px;
  }

  .comparison-table th {
    height: 72px;
    font-size: 14px;
  }

  .comparison-table th:not(:last-child)::after {
    height: 48px;
  }

  .comparison-table td {
    height: 64px;
    font-size: 14px;
  }

  .faq {
    padding: 48px 0 64px;
  }

  .faq-question {
    font-size: 20px;
  }

  .faq-answer {
    font-size: 15px;
    line-height: 24px;
  }

  .footer-top.container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 36px;
  }

  .footer-brand {
    max-width: none;
    flex: none;
    width: 100%;
  }

  .footer-logo-img {
    width: 260px;
    height: auto;
    aspect-ratio: 351 / 100;
  }

  .footer-logo {
    margin-bottom: 24px;
  }

  .footer-nav {
    width: 100%;
    flex: none;
    flex-wrap: wrap;
    gap: 28px 40px;
  }

  .footer-legal {
    max-width: none;
  }

  .footer-bottom-inner {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-padding-x: 32px;
  }

  .container {
    padding: 0 32px;
  }

  .footer .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-author-card {
    padding: 16px;
    border-radius: 16px;
  }

  .hero-author {
    width: 100%;
    gap: 14px;
  }

  .hero-author-avatar {
    width: 64px;
    height: 64px;
  }

  .hero-author-features {
    gap: 14px;
  }

  .section-title {
    font-size: 28px;
  }

  .content-inner .section-title {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .content-inner p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .casino-card {
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
  }

  .casino-card-logo {
    width: 120px;
    height: 71px;
  }

  .casino-card-logo img {
    width: 120px;
    height: 71px;
  }

  .casino-card-name {
    font-size: 18px;
    line-height: 22px;
  }

  .casino-card-rating,
  .casino-card-license {
    font-size: 14px;
  }

  .casino-card-bonus {
    font-size: 18px;
    line-height: 22px;
  }

  .casino-card-btn {
    font-size: 18px;
    line-height: 28px;
    padding: 10px 24px;
  }

  .content-inner .promo-block {
    margin-top: 40px;
  }

  .promo-block-banner {
    border-radius: 14px;
    margin-bottom: 20px;
  }

  .content-inner .promo-block .section-title {
    margin-bottom: 20px;
  }

  .faq {
    padding: 40px 0 48px;
  }

  .faq .section-title {
    margin-bottom: 24px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    padding: 18px 16px 20px;
    border-radius: 14px;
  }

  .faq-question {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .faq-answer {
    font-size: 15px;
    line-height: 22px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footer-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col-content {
    padding-bottom: 32px;
  }

  .footer-col-legal {
    padding-top: 32px;
    padding-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
  }

  .footer-col-tools {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    align-items: center;
    gap: 24px;
  }

  .footer-col-title {
    margin-bottom: 24px;
    text-align: center;
  }

  .footer-col-list {
    gap: 18px;
    align-items: center;
  }

  .footer-link,
  .footer-col-list a {
    white-space: normal;
    font-size: 15px;
    line-height: 24px;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-about {
    text-align: left;
  }

  .footer-about,
  .footer-warning,
  .footer-copyright {
    font-size: 13px;
    line-height: 22px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .footer-legal {
    width: 100%;
    padding-top: 20px;
  }

  .footer-badges {
    flex-wrap: wrap;
    gap: 12px;
  }

  .comparison-table th {
    height: auto;
    min-height: 56px;
    padding: 10px 6px;
    font-size: 12px;
  }

  .comparison-table td {
    height: auto;
    min-height: 52px;
    padding: 10px 6px;
    font-size: 12px;
  }

  .comparison-table-col-num {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 18px;
  }

  .comparison-table thead .comparison-table-col-num {
    font-size: 12px;
  }

  .comparison-table td.comparison-table-col-num {
    font-size: 18px;
  }

  .table-wrap {
    margin: 32px 0;
    border-radius: 16px;
  }

  .comparison-table {
    min-width: 640px;
  }
}

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

  .footer .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .header-inner {
    padding: 0 12px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-buttons {
    gap: 4px;
  }

  .header-login {
    padding: 7px 10px;
    font-size: 10px;
  }

  .header-promo {
    padding: 7px 8px;
    font-size: 10px;
  }

  .header-burger {
    margin-left: 4px;
  }

  .hero-title {
    font-size: 28px;
  }

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

  .hero-author-name-text {
    font-size: 13px;
  }

  .casino-card-rank {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .casino-card-logo {
    width: 100px;
    height: 59px;
  }

  .casino-card-logo img {
    width: 100px;
    height: 59px;
  }

  .casino-card-bonus {
    font-size: 16px;
    line-height: 20px;
  }

  .casino-card-btn {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 16px;
  }

  .footer-logo-img {
    width: 200px;
  }

  .footer-badge {
    height: 24px;
  }

  .footer-badge-18 {
    width: 24px;
    height: 24px;
  }

  .footer-badge-hand {
    width: 30px;
    height: 24px;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 14px;
  }
}
