@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --c-bg: #2c1753;
  --c-bg-alt: #231342;
  --c-header: #463195;
  --c-primary: #ffdc41;
  --c-primary-text: #1a0a32;
  --c-secondary: #4172c1;
  --c-text: #f0ebff;
  --c-text-muted: #b8a8d9;
  --c-card: #3a1e6b;
  --c-card-alt: #341869;
  --c-card-light: #4a2880;
  --c-border: rgba(255, 255, 255, 0.1);
  --c-shadow: rgba(0, 0, 0, 0.4);
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --transition: 0.25s ease;
  --container-max: 1200px;
  --font-main: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-text);
  margin-bottom: 0.75em;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
h2 {
  font-size: clamp(1.35rem, 3vw, 1.875rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.375rem);
}
p {
  margin-bottom: 1em;
}
ul,
ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.4em;
}
table {
  border-collapse: collapse;
  width: 100%;
}

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

.site-header {
  background-color: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--c-shadow);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.header-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--c-primary);
  background: rgba(255, 220, 65, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.online-count {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.online-count .online-num {
  color: #4ade80;
  font-weight: 600;
}

.online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--border-radius-sm);
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--c-header);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: block;
}
.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--c-text);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-links a {
  display: block;
  color: var(--c-text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--c-border);
  font-weight: 500;
  font-size: 0.95rem;
}
.mobile-nav-links a:hover {
  color: var(--c-primary);
}
.mobile-nav-btns {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-primary);
  color: var(--c-primary-text);
}
.btn-primary:hover {
  background: #f5d23c;
  color: var(--c-primary-text);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 220, 65, 0.35);
}

.btn-secondary {
  background: var(--c-secondary);
  color: #fff;
}
.btn-secondary:hover {
  background: #3860a8;
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary);
  color: var(--c-primary-text);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
}
.btn-sm {
  padding: 0.4rem 0.875rem;
  font-size: 0.8rem;
}
.btn-full {
  width: 100%;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-bg-alt), var(--c-header));
}

.hero-slide {
  display: none;
  min-height: 420px;
  padding: 3rem 1.25rem;
  position: relative;
  align-items: center;
}
.hero-slide.active {
  display: flex;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/banla.png");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}
.hero-content h1,
.hero-content h2 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--c-text-muted);
}

.hero-badge {
  display: inline-block;
  background: var(--c-primary);
  color: var(--c-primary-text);
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.slider-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--c-primary);
  width: 24px;
  border-radius: 4px;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition);
}
.slider-prev {
  left: 1rem;
}
.slider-next {
  right: 1rem;
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--c-primary);
  color: var(--c-primary-text);
  border-color: var(--c-primary);
}

.section {
  padding: 3rem 0;
}
.section-sm {
  padding: 1.5rem 0;
}
.section-lg {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 {
  margin-bottom: 0.5rem;
}
.section-title p {
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.block {
  background: var(--c-card);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  border: 1px solid var(--c-border);
  margin-bottom: 1.5rem;
}
.block-alt {
  background: var(--c-card-alt);
}
.block-highlight {
  background: linear-gradient(135deg, var(--c-header), #5a3db8);
  border: 2px solid var(--c-primary);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.advantage-card {
  background: var(--c-card);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--c-border);
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary);
}
.advantage-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}
.advantage-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.advantage-card p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin: 0;
}

.winners-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 560px;
}
.winners-table th {
  background: var(--c-header);
  color: var(--c-primary);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.winners-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--c-border);
}
.winners-table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.1);
}
.winners-table tr:hover td {
  background: rgba(70, 49, 149, 0.3);
}
.winner-rank {
  font-weight: 700;
  color: var(--c-primary);
}
.winner-amount {
  font-weight: 700;
  color: #4ade80;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.info-table th,
.info-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--c-border);
  font-size: 0.9rem;
}
.info-table th {
  background: var(--c-header);
  color: var(--c-text);
  font-weight: 600;
  white-space: nowrap;
  width: 38%;
}
.info-table td {
  background: var(--c-card);
}
.info-table tr:nth-child(even) td {
  background: var(--c-card-alt);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.bonus-card {
  background: var(--c-card);
  border-radius: var(--border-radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: transform var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
}
.bonus-card-header {
  background: linear-gradient(135deg, var(--c-header), var(--c-secondary));
  padding: 1.25rem;
  text-align: center;
}
.bonus-card-header h3 {
  color: var(--c-primary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.bonus-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-text);
}
.bonus-amount-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.bonus-card-body {
  padding: 1.25rem;
}
.bonus-card-body ul {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}
.bonus-cta {
  padding: 0 1.25rem 1.25rem;
}

.promo-block {
  background: linear-gradient(135deg, var(--c-header), #5a3db8);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  border: 2px solid var(--c-primary);
  margin-bottom: 2rem;
}
.promo-block h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.promo-block p {
  color: var(--c-text-muted);
  margin-bottom: 1.25rem;
}

.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 2px dashed var(--c-primary);
  border-radius: var(--border-radius-sm);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  justify-content: center;
}
.promo-code-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: 4px;
}

.copy-btn {
  background: var(--c-primary);
  color: var(--c-primary-text);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
  font-size: 0.875rem;
}
.copy-btn:hover {
  background: #f5d23c;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.slot-card {
  background: var(--c-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform var(--transition);
  text-align: center;
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary);
}
.slot-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.slot-card-body {
  padding: 0.75rem;
}
.slot-card-body h4 {
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}
.slot-provider {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-bottom: 0.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-align: center;
}
.feature-item {
  background: var(--c-card);
  border-radius: var(--border-radius);
  padding: 1.25rem 1rem;
  border: 1px solid var(--c-border);
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: var(--c-primary);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.feature-item p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--c-text-muted);
  font-weight: 500;
}

.demo-game-block {
  background: var(--c-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.demo-game-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #1a0a3a, #3a1e6b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.demo-game-block iframe {
  width: 100%;
  height: 500px;
  display: block;
  border: none;
}

.video-block {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--c-card);
}
.video-block iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.faq-list {
  list-style: none;
  padding: 0;
}
.faq-item {
  background: var(--c-card);
  border-radius: var(--border-radius-sm);
  margin-bottom: 0.75rem;
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.faq-question {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition);
  list-style: none;
  user-select: none;
}
.faq-question:hover {
  background: rgba(70, 49, 149, 0.3);
}
.faq-question.open {
  color: var(--c-primary);
  background: rgba(70, 49, 149, 0.2);
}
.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: transform var(--transition);
  color: var(--c-text-muted);
  font-style: normal;
}
.faq-question.open .faq-icon {
  transform: rotate(45deg);
  color: var(--c-primary);
}
.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.faq-answer.open {
  max-height: 600px;
  padding: 0 1.25rem 1.25rem;
}
.faq-answer p {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}
.compare-table th {
  background: var(--c-header);
  color: var(--c-text);
  padding: 0.875rem 1rem;
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.compare-table th:first-child {
  text-align: left;
}
.compare-table th.hl {
  background: var(--c-secondary);
  color: var(--c-primary);
}
.compare-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-border);
  background: var(--c-card);
  text-align: center;
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
}
.compare-table tr:nth-child(even) td {
  background: var(--c-card-alt);
}
.check {
  color: #4ade80;
  font-weight: 700;
}
.cross {
  color: #f87171;
  font-weight: 700;
}

.app-download-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0;
}
.app-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
  padding: 0.875rem 1.5rem;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--c-text);
  min-width: 180px;
}
.app-btn:hover {
  border-color: var(--c-primary);
  background: var(--c-card-light);
  color: var(--c-text);
}
.app-btn-icon {
  font-size: 2rem;
}
.app-btn-text {
  display: flex;
  flex-direction: column;
}
.app-btn-label {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.app-btn-store {
  font-weight: 700;
  font-size: 1rem;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-muted);
}
.form-control {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius-sm);
  color: var(--c-text);
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--c-primary);
}
.form-control::placeholder {
  color: var(--c-text-muted);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
select.form-control {
  cursor: pointer;
}

.star-rating-wrap {
  display: flex;
  gap: 0.35rem;
}
.star-btn {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.2);
  transition: color var(--transition);
  padding: 0;
}
.star-btn:hover,
.star-btn.active {
  color: var(--c-primary);
}

.rating-overview {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: center;
}
.rating-big {
  text-align: center;
}
.rating-score {
  font-size: 4rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
}
.rating-stars {
  color: var(--c-primary);
  font-size: 1.25rem;
  margin: 0.25rem 0;
}
.rating-count {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}
.rating-bar-row {
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}
.rating-bar-bg {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--c-primary);
  border-radius: 4px;
}
.rating-bar-pct {
  color: var(--c-text-muted);
  font-size: 0.8rem;
  text-align: right;
}

.comparison-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.score-block {
  text-align: center;
  padding: 1.5rem;
  background: var(--c-card-alt);
  border-radius: var(--border-radius);
  border: 1px solid var(--c-border);
}
.score-block.editorial {
  border-color: var(--c-primary);
}
.score-label {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 0.5rem;
}
.score-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-primary);
}
.score-out {
  font-size: 1rem;
  color: var(--c-text-muted);
}
.score-stars {
  color: var(--c-primary);
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

.author-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--c-card);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid var(--c-border);
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--c-primary);
  background: linear-gradient(135deg, var(--c-secondary), var(--c-header));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text);
}
.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.author-title {
  font-size: 0.8rem;
  color: var(--c-secondary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.author-bio {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin: 0 0 0.75rem;
}
.author-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.author-link {
  font-size: 0.8rem;
  color: var(--c-secondary);
}
.author-link:hover {
  color: var(--c-primary);
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.payment-logo {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

.support-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.support-icon {
  font-size: 2.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.support-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.support-content p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin: 0;
}
.support-methods {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.support-badge {
  background: var(--c-secondary);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}

.restriction-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.restriction-num {
  background: var(--c-secondary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.restriction-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.restriction-text p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin: 0;
}

.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--c-text-muted);
}
.breadcrumb a:hover {
  color: var(--c-primary);
}
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}
.breadcrumb-current {
  color: var(--c-text);
}

.bonus-register-block {
  background: linear-gradient(135deg, var(--c-header), #5a3db8);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--c-primary);
}
.bonus-register-block .bonus-big {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--c-primary);
  margin: 0.5rem 0;
}

.content-text h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 0.5rem;
}
.content-text h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  color: var(--c-primary);
}
.content-text p {
  color: var(--c-text-muted);
  line-height: 1.8;
}
.content-text ul,
.content-text ol {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}
.content-text li {
  margin-bottom: 0.5rem;
}
.content-text a {
  color: var(--c-secondary);
}
.content-text a:hover {
  color: var(--c-primary);
}
.content-text strong {
  color: var(--c-text);
}
.content-text table {
  overflow-x: auto;
  display: block;
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius-sm);
  margin: 1rem 0;
}
.content-text th {
  background: var(--c-header);
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--c-border);
}
.content-text td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-muted);
}

.site-footer {
  background: var(--c-header);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}
.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-nav-group h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 0.75rem;
}
.footer-nav-group a {
  display: block;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  padding: 0.2rem 0;
}
.footer-nav-group a:hover {
  color: var(--c-primary);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 1.5rem 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.footer-legal-links a {
  color: var(--c-text-muted);
  font-size: 0.8rem;
}
.footer-legal-links a:hover {
  color: var(--c-primary);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--c-header) 0%, #5a3db8 100%);
  border-top: 2px solid var(--c-primary);
  padding: 0.75rem 1.25rem;
}
.sticky-widget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
.widget-text strong {
  font-size: 0.9rem;
  color: var(--c-text);
  display: block;
}
.widget-text span {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}
.widget-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.tech-page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.tech-page-content h1 {
  margin-bottom: 1.5rem;
}
.tech-page-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}
.tech-page-content h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}
.tech-page-content p,
.tech-page-content li {
  color: var(--c-text-muted);
}

.alt-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.alt-brand-card {
  background: var(--c-card);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  border: 1px solid var(--c-border);
  text-align: center;
  transition: all var(--transition);
}
.alt-brand-card:hover {
  border-color: var(--c-primary);
}
.alt-brand-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.alt-brand-bonus {
  font-size: 0.875rem;
  color: var(--c-primary);
  font-weight: 600;
}

.xf9a2 {
  display: none;
}
.k7b3-wrapper {
  position: relative;
}
.m2ql-inner {
  overflow: hidden;
}
.pv8x-el {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.t5r-block {
  display: none !important;
}
.wp-caption {
  display: none !important;
}
.wp-block {
  display: none !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.anim-fade-up {
  animation: fadeInUp 0.5s ease forwards;
}
.anim-fade-up-delay {
  animation: fadeInUp 0.5s ease 0.15s both;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-nav-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hero-slide {
    min-height: 300px;
    padding: 2rem 1.25rem;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .bonus-cards {
    grid-template-columns: 1fr;
  }
  .comparison-scores {
    grid-template-columns: 1fr;
  }
  .rating-overview {
    grid-template-columns: 1fr;
  }
  .footer-nav-cols {
    grid-template-columns: 1fr 1fr;
  }
  .sticky-widget-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-inner {
    grid-template-columns: auto auto;
  }
  .online-count {
    display: none;
  }
  .app-download-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .app-btn {
    min-width: auto;
  }
  .footer-nav-cols {
    grid-template-columns: 1fr;
  }
  .promo-code-value {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-page-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  margin: 0 auto 1.5rem;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 768px) {
  .header-actions > .btn-secondary {
    display: none;
  }
  .header-actions {
    min-width: 0;
    gap: 0.4rem;
  }
  .header-actions > .btn-primary {
    flex: 0 1 auto;
    max-width: 100%;
  }
  .btn,
  .app-btn {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: center;
    line-height: 1.25;
  }
  .btn-lg {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-actions,
  .app-download-btns,
  .widget-actions,
  .mobile-nav-btns {
    min-width: 0;
    max-width: 100%;
  }
  .hero-actions > *,
  .app-download-btns > *,
  .widget-actions > *,
  .mobile-nav-btns > * {
    min-width: 0;
  }
  .sticky-widget-inner {
    min-width: 0;
    max-width: 100%;
  }
  .tech-page-content {
    padding: 1.25rem;
    max-width: 100%;
    overflow: hidden;
  }
  .tech-page-content .content-text,
  .tech-page-content .content-text > * {
    min-width: 0;
    max-width: 100%;
  }
  .tech-page-content img,
  .tech-page-content iframe,
  .tech-page-content video,
  .tech-page-content canvas {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .header-logo {
    min-width: 0;
  }
  .header-logo img {
    max-width: 100%;
  }
  .header-actions {
    max-width: 100%;
  }
  .header-actions > .btn-primary {
    padding: 0.45rem 0.7rem;
    font-size: 0.75rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn,
  .bonus-register-block .btn,
  .promo-block .btn,
  .review-form .btn,
  .sticky-widget .btn {
    width: 100%;
  }
  .widget-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .tech-page-content {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .promo-code-box,
  .bonus-register-block,
  .block,
  .form-group,
  .app-download-btns {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  .promo-code-value,
  .copy-btn,
  .app-btn-text,
  .app-btn-store,
  .app-btn-label {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .copy-btn {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .container,
  .section,
  .section-sm,
  .section-lg,
  .section-title,
  .block,
  .promo-block,
  .bonus-register-block,
  .tech-page-content,
  .content-text {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .advantages-grid,
  .features-grid,
  .bonus-cards,
  .alt-brands-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .comparison-scores,
  .rating-overview {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .slots-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .advantages-grid > *,
  .features-grid > *,
  .bonus-cards > *,
  .alt-brands-grid > *,
  .grid-2 > *,
  .grid-3 > *,
  .grid-4 > *,
  .comparison-scores > *,
  .rating-overview > *,
  .slots-grid > * {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .advantage-card,
  .feature-item,
  .bonus-card,
  .alt-brand-card,
  .slot-card,
  .score-block {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .advantage-card {
    padding: 1.25rem 1rem;
  }

  .advantage-card h3,
  .advantage-card p,
  .feature-item p,
  .bonus-card h3,
  .bonus-card p,
  .alt-brand-card,
  .slot-card,
  .score-block {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .rating-bar-row {
    min-width: 0;
    grid-template-columns: minmax(0, 60px) minmax(0, 1fr) auto;
  }

  .winners-table-wrap,
  .info-table-wrap,
  .compare-table-wrap,
  .content-text table {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .slots-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .author-block,
  .support-block,
  .restriction-item,
  .faq-question,
  .sticky-widget-inner,
  .widget-actions {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .author-block > *,
  .support-block > *,
  .restriction-item > *,
  .faq-question > *,
  .sticky-widget-inner > *,
  .widget-actions > * {
    min-width: 0;
  }

  .support-content,
  .restriction-text,
  .author-info,
  .widget-text {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
