*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #151028;
  color: #e8e0f7;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: #c4a4ff;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #8a46f6;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-content {
  flex: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: #8a46f6;
  color: #fff;
  border-color: #8a46f6;
}
.btn--primary:hover {
  background: #7232e0;
  border-color: #7232e0;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.4);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
  border-color: #8a46f6;
  color: #c4a4ff;
  background: rgba(138, 70, 246, 0.08);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #c4a4ff;
  border-color: rgba(255, 255, 255, 0.1);
}
.btn--ghost:hover {
  background: rgba(138, 70, 246, 0.15);
  border-color: #8a46f6;
  color: #fff;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}
.btn--md {
  padding: 11px 24px;
  font-size: 15px;
}
.btn--lg {
  padding: 14px 30px;
  font-size: 16px;
}

.hdr {
  background: #231d47;
  border-bottom: 1px solid rgba(138, 70, 246, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hdr-logo img {
  height: 40px;
  width: auto;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}
.hdr-nav__link:hover {
  background: rgba(138, 70, 246, 0.15);
  color: #c4a4ff;
}
.hdr-right-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.hdr-online__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.hdr-online__count {
  color: #22c55e;
  font-weight: 600;
}
.hdr-lang {
  position: relative;
}
.hdr-lang__current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hdr-lang__current:hover {
  background: rgba(138, 70, 246, 0.15);
  border-color: #8a46f6;
}
.hdr-lang__flag {
  font-size: 18px;
}
.hdr-lang__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #231d47;
  border: 1px solid rgba(138, 70, 246, 0.3);
  border-radius: 10px;
  padding: 6px;
  min-width: 160px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
.hdr-lang__dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hdr-lang__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}
.hdr-lang__item:hover,
.hdr-lang__item--active {
  background: rgba(138, 70, 246, 0.2);
  color: #c4a4ff;
}
.hdr-btns {
  display: flex;
  gap: 8px;
}
.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  cursor: pointer;
  z-index: 1001;
}
.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8e0f7;
  transition: all 0.3s;
  border-radius: 2px;
}
.hdr-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-burger.active span:nth-child(2) {
  opacity: 0;
}
.hdr-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hdr-mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #1a1330;
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(138, 70, 246, 0.2);
}
.hdr-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.hdr-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hdr-mobile-nav li {
  margin-bottom: 0;
}
.hdr-mobile-nav a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 15px;
}
.hdr-mobile-nav a:hover,
.hdr-mobile-nav a:focus {
  background: rgba(138, 70, 246, 0.2);
  color: #c4a4ff;
  transform: translateX(4px);
}
.menu-open {
  overflow: hidden;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.hero-slider {
  position: relative;
  height: 480px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(21, 16, 40, 0.85) 0%,
    rgba(21, 16, 40, 0.4) 100%
  );
}
.hero-slide.active {
  opacity: 1;
  position: relative;
}
.hero-slide__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 40px 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(138, 70, 246, 0.3);
  border: 1px solid rgba(138, 70, 246, 0.5);
  color: #c4a4ff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-dot.active {
  background: #8a46f6;
  width: 28px;
  border-radius: 5px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(35, 29, 71, 0.7);
  border: 1px solid rgba(138, 70, 246, 0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s;
}
.hero-arrow:hover {
  background: #8a46f6;
  border-color: #8a46f6;
}
.hero-arrow--prev {
  left: 16px;
}
.hero-arrow--next {
  right: 16px;
}

.content-wrap {
  padding: 20px 0;
}
.content-block {
  margin: 40px 0;
  padding: 32px;
  background: #1e1838;
  border-radius: 16px;
  border: 1px solid rgba(138, 70, 246, 0.15);
}
.section-head {
  margin-bottom: 28px;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.section-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.gm-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
  padding: 16px;
  background: rgba(138, 70, 246, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(138, 70, 246, 0.2);
}
.gm-info-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 10px;
  background: rgba(138, 70, 246, 0.12);
  border-radius: 6px;
}

.casino-list,
.casino-more-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.casino-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #27204a;
  border-radius: 14px;
  border: 1px solid rgba(138, 70, 246, 0.2);
  transition: all 0.25s;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
.casino-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.casino-card:hover {
  border-color: rgba(138, 70, 246, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(138, 70, 246, 0.15);
}
.casino-card--top1 {
  border-color: rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #2a2048 0%, #1e1838 100%);
}
.casino-card--top1::before {
  content: "⭐ ТОП ВЫБОР";
  position: absolute;
  top: -1px;
  right: 16px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}
.casino-card--top2 {
  border-color: rgba(192, 192, 192, 0.3);
}
.casino-card--top3 {
  border-color: rgba(205, 127, 50, 0.3);
}
.casino-rank {
  font-size: 20px;
  font-weight: 800;
  color: #8a46f6;
  min-width: 34px;
}
.casino-logo-wrap {
  position: relative;
  flex-shrink: 0;
}
.casino-logo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.casino-country {
  position: absolute;
  bottom: -4px;
  right: -4px;
  font-size: 16px;
  background: #231d47;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.casino-info {
  flex: 1;
}
.casino-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.casino-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #f5c518;
}
.casino-bonus {
  font-size: 14px;
  color: #c4a4ff;
  margin-bottom: 8px;
}
.casino-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 10px;
}
.casino-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.casino-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.casino-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.casino-pagination {
  text-align: center;
  margin-top: 24px;
}

.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proscons-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid;
}
.proscons-card--pros {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.2);
}
.proscons-card--cons {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.2);
}
.proscons-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.proscons-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.proscons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proscons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.proscons-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.winners-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(138, 70, 246, 0.2);
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.winners-table th {
  background: #231d47;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(138, 70, 246, 0.3);
}
.winners-table td {
  padding: 11px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(138, 70, 246, 0.08);
  transition: background 0.15s;
}
.winners-table tr:hover td {
  background: rgba(138, 70, 246, 0.06);
}
.winners-table tr:last-child td {
  border-bottom: none;
}
.winners-table td:nth-child(1) {
  font-weight: 700;
  color: #8a46f6;
}
.winners-table td:nth-child(3) {
  font-weight: 700;
  color: #22c55e;
}
.winners-table td:nth-child(5) {
  font-weight: 700;
  color: #f5c518;
}

.demo-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.demo-iframe-wrap {
  border-radius: 14px;
  border: 2px solid rgba(138, 70, 246, 0.3);
  background: #0d0b1e;
  min-height: 500px;
}
.demo-iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}
.demo-cta {
  text-align: center;
  padding: 24px;
  background: rgba(138, 70, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(138, 70, 246, 0.2);
}
.demo-cta-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.demo-cta-note {
  margin-top: 12px;
  color: #c4a4ff;
  font-size: 14px;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.strategy-card {
  background: #231d47;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(138, 70, 246, 0.2);
  transition: all 0.25s;
}
.strategy-card:hover {
  border-color: #8a46f6;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(138, 70, 246, 0.2);
}
.strategy-img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.strategy-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.strategy-card:hover .strategy-img-wrap img {
  transform: scale(1.05);
}
.strategy-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(138, 70, 246, 0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.strategy-badge--high {
  background: rgba(239, 68, 68, 0.85);
}
.strategy-badge--mid {
  background: rgba(245, 158, 11, 0.85);
}
.strategy-body {
  padding: 20px;
}
.strategy-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.strategy-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}
.strategy-btn {
  width: 100%;
  justify-content: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.review-card {
  background: #231d47;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(138, 70, 246, 0.15);
  transition: border-color 0.2s;
}
.review-card:hover {
  border-color: rgba(138, 70, 246, 0.4);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a46f6, #6422c8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.review-name {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 10px;
}
.review-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.review-form-wrap {
  background: #231d47;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(138, 70, 246, 0.2);
}
.review-form-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.review-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.form-label span {
  color: #8a46f6;
}
.form-input,
.form-textarea {
  background: #1a1535;
  border: 1px solid rgba(138, 70, 246, 0.25);
  border-radius: 9px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #8a46f6;
  box-shadow: 0 0 0 3px rgba(138, 70, 246, 0.15);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  align-self: flex-start;
}
.review-form-success {
  text-align: center;
  padding: 32px;
}
.review-form-success svg {
  margin: 0 auto 16px;
}
.review-form-success h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.review-form-success p {
  color: rgba(255, 255, 255, 0.65);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #231d47;
  border-radius: 12px;
  border: 1px solid rgba(138, 70, 246, 0.15);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-q::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #8a46f6;
  border-bottom: 2px solid #8a46f6;
  transform: rotate(45deg);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-q {
  background: rgba(138, 70, 246, 0.12);
}
.faq-item.open .faq-q::after {
  transform: rotate(-135deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.2s;
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a div {
  padding: 0 20px 18px;
}
.faq-a p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.faq-q:hover {
  background: rgba(138, 70, 246, 0.07);
}

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #231d47;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(138, 70, 246, 0.2);
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a46f6, #6422c8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  flex-shrink: 0;
}
.author-label {
  font-size: 12px;
  color: #8a46f6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.author-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.author-role {
  font-size: 14px;
  color: #c4a4ff;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 14px;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8a46f6;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(138, 70, 246, 0.3);
  padding-bottom: 1px;
}
.author-link:hover {
  color: #c4a4ff;
  border-color: #c4a4ff;
}

.ftr-wrap {
  background: #231d47;
  border-top: 1px solid rgba(138, 70, 246, 0.2);
  margin-top: 48px;
}
.ftr-inner {
  padding: 48px 0 24px;
}
.ftr-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.ftr-logo img {
  height: 36px;
  margin-bottom: 14px;
}
.ftr-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.ftr-nav-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.ftr-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s;
}
.ftr-nav a:hover {
  color: #c4a4ff;
}
.ftr-provider-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(138, 70, 246, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(138, 70, 246, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.ftr-provider-badge:hover {
  background: rgba(138, 70, 246, 0.2);
  border-color: #8a46f6;
}
.ftr-payments,
.ftr-licenses {
  margin-bottom: 28px;
}
.ftr-payments-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.ftr-payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ftr-payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ftr-payment-item span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}
.ftr-license-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.ftr-license-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ftr-license-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.ftr-bottom {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}
.ftr-age {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.ftr-age-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ftr-age p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 200px;
}
.ftr-copyright {
  flex: 1;
}
.ftr-copyright p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}
.ftr-legal {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.25) !important;
  line-height: 1.6;
}

.widget-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 16px 12px;
  pointer-events: none;
}
.widget-sticky__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #231d47;
  border: 1px solid rgba(138, 70, 246, 0.4);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 -4px 32px rgba(138, 70, 246, 0.25);
  pointer-events: all;
  max-width: 900px;
  margin: 0 auto;
}
.widget-sticky__text {
  flex: 1;
}
.widget-sticky__bonus {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.widget-sticky__sub {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.widget-sticky__close {
  padding: 6px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.15s;
  flex-shrink: 0;
}
.widget-sticky__close:hover {
  color: #fff;
}
.widget-sticky.hidden {
  display: none;
}

.tech-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
}
.tech-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}
.tech-breadcrumb a:hover {
  color: #c4a4ff;
}
.tech-content {
  padding: 32px;
  background: #1e1838;
  border-radius: 16px;
  border: 1px solid rgba(138, 70, 246, 0.15);
  margin-bottom: 32px;
}
.tech-h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(138, 70, 246, 0.15);
}
.tech-text h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
}
.tech-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c4a4ff;
  margin: 18px 0 10px;
}
.tech-text p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 14px;
}
.tech-text ul,
.tech-text ol {
  padding-left: 20px;
  margin-bottom: 14px;
  list-style: disc;
}
.tech-text li {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 6px;
}
.tech-text a {
  color: #8a46f6;
  text-decoration: underline;
}
.tech-text a:hover {
  color: #c4a4ff;
}
.tech-text strong {
  color: #fff;
  font-weight: 600;
}
.main-content--tech {
  padding: 0 0 32px;
}

.lj-main-content .content-block .text h1,
.lj-main-content .content-block .text h2,
.lj-main-content .content-block .text h3,
.lj-main-content .content-block .text h4,
.lj-main-content .content-block .text h5,
.lj-main-content .content-block .text h6 {
  color: #fff;
  font-weight: 700;
  margin: 20px 0 10px;
  line-height: 1.3;
}
.lj-main-content .content-block .text h1 {
  font-size: 2rem;
}
.lj-main-content .content-block .text h2 {
  font-size: 1.5rem;
}
.lj-main-content .content-block .text h3 {
  font-size: 1.2rem;
  color: #c4a4ff;
}
.lj-main-content .content-block .text p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 14px;
}
.lj-main-content .content-block .text ul,
.lj-main-content .content-block .text ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.lj-main-content .content-block .text ul {
  list-style: disc;
}
.lj-main-content .content-block .text ol {
  list-style: decimal;
}
.lj-main-content .content-block .text li {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 6px;
}
.lj-main-content .content-block .text a {
  color: #8a46f6;
  text-decoration: underline;
}
.lj-main-content .content-block .text table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border: 2px solid rgba(138, 70, 246, 0.3);
  border-radius: 8px;
  overflow: hidden;
}
.lj-main-content .content-block .text th {
  background: #231d47;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  border-bottom: 2px solid rgba(138, 70, 246, 0.3);
}
.lj-main-content .content-block .text td {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  border-bottom: 1px solid rgba(138, 70, 246, 0.1);
}
.lj-main-content .content-block .text blockquote {
  border-left: 3px solid #8a46f6;
  padding: 12px 16px;
  margin: 14px 0;
  background: rgba(138, 70, 246, 0.07);
  border-radius: 0 8px 8px 0;
}
.lj-main-content .content-block .text strong {
  color: #fff;
  font-weight: 600;
}

.box {
  border-radius: 12px;
}

@keyframes winnerFly {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.winner-new {
  animation: winnerFly 0.4s ease forwards;
}

.hdr.scrolled {
  background: rgba(21, 16, 40, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.hdr.hidden {
  transform: translateY(-100%);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: #8a46f6;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(138, 70, 246, 0.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #7232e0;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(138, 70, 246, 0.5);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #8a46f6, #c4a4ff);
  width: 0;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

[data-aos] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-aos].aos-animate {
  opacity: 1;
}
[data-aos="fade-up"] {
  transform: translateY(50px);
}
[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}
[data-aos="fade-in"] {
  opacity: 0;
}
[data-aos="fade-in"].aos-animate {
  opacity: 1;
}
[data-aos="zoom-in"] {
  transform: scale(0.9);
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

img[data-src] {
  opacity: 0;
  transition: opacity 0.4s;
}
img.loaded {
  opacity: 1;
}

.wp-content-placeholder {
  display: none;
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.elementor-hidden-widget {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.entry-content-hidden {
  display: none;
}

@media (max-width: 1024px) {
  .ftr-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .strategies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hdr-nav-wrap {
    display: none;
  }
  .hdr-burger {
    display: flex;
  }
  .hdr-online {
    display: none;
  }
  .proscons-grid {
    grid-template-columns: 1fr;
  }
  .strategies-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .ftr-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .casino-card {
    flex-direction: column;
  }
  .casino-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-slider {
    height: 380px;
  }
  .hero-slide .container {
    padding: 0 16px;
  }
  .content-block {
    padding: 20px 16px;
  }
  .widget-sticky__inner {
    flex-wrap: wrap;
  }
  .author-card {
    flex-direction: column;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 320px;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hdr-btns .btn--outline {
    display: none;
  }
  .ftr-payments-list {
    gap: 8px;
  }
}
