* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #2c5da8;
  --color-secondary: #ffcc01;
  --color-white: #ffffff;
  --color-bg: #f8f9fa;
  --color-text: #1a1a1a;
  --color-text-light: #666666;
  --color-border: #e0e0e0;
  --font-main: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

.kx9m2p4a {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.zr7n3q1w {
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.b4w8k5px {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-image {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.logo-image:hover {
  transform: scale(1.05);
}

.m3v7x2qn {
  display: flex;
  gap: 25px;
  align-items: center;
  list-style: none;
}

.m3v7x2qn a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.m3v7x2qn a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.m3v7x2qn a:hover {
  color: var(--color-primary);
}

.m3v7x2qn a:hover::after {
  width: 100%;
}

.f8h2k9mn {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-7x3m {
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
}

.btn-login {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-login:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 93, 168, 0.3);
}

.btn-signup {
  background: var(--color-secondary);
  color: var(--color-text);
  border: 2px solid var(--color-secondary);
}

.btn-signup:hover {
  background: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 204, 1, 0.4);
}

.p9k4l2wx {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.p9k4l2wx span {
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.p9k4l2wx.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.p9k4l2wx.active span:nth-child(2) {
  opacity: 0;
}

.p9k4l2wx.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-light);
}

.online-dot {
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-section {
  background:
          linear-gradient(135deg, rgba(44, 93, 168, 0.75) 0%, rgba(30, 65, 128, 0.75) 100%),
          url('/hero-banner.jpg') center center / cover no-repeat;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  color: var(--color-white);
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

.hero-btn {
  background: var(--color-secondary);
  color: var(--color-text);
  padding: 18px 45px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  animation: fadeInUp 1.2s ease;
}

.hero-btn:hover {
  background: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 204, 1, 0.4);
}

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

.breadcrumb-wrapper {
  padding: 15px 0;
  margin-bottom: 20px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--color-text-light);
}

.content-block {
  background: var(--color-white);
  border-radius: 12px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.content-block:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 32px;
  color: var(--color-text);
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
}

.info-table table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 15px 20px;
  text-align: left;
  border: 2px solid var(--color-border);
}

.info-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 16px;
}

.info-table tr:nth-child(even) {
  background: #f8f9fa;
}

.info-table tr:hover {
  background: #e8f4ff;
}

.pros-cons-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 20px 0;
}

.pros-box,
.cons-box {
  padding: 25px;
  border-radius: 10px;
  border: 2px solid;
}

.pros-box {
  background: #e8f5e9;
  border-color: #4caf50;
}

.cons-box {
  background: #ffebee;
  border-color: #f44336;
}

.pros-title,
.cons-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros-title {
  color: #2e7d32;
}

.cons-title {
  color: #c62828;
}

.pros-list,
.cons-list {
  list-style: none;
}

.pros-list li,
.cons-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  line-height: 1.6;
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: 700;
  font-size: 18px;
}

.cons-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #f44336;
  font-weight: 700;
  font-size: 18px;
}

.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.jackpot-card {
  background: linear-gradient(135deg, var(--color-primary), #1e4180);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: var(--color-white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.jackpot-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.jackpot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 93, 168, 0.4);
}

.jackpot-label {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.jackpot-amount {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin: 20px 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.review-content h1,
.review-content h2,
.review-content h3,
.review-content h4,
.review-content h5,
.review-content h6 {
  color: var(--color-text);
  margin: 25px 0 15px;
  font-weight: 700;
  line-height: 1.4;
}

.review-content h1 {
  font-size: 36px;
}

.review-content h2 {
  font-size: 30px;
}

.review-content h3 {
  font-size: 24px;
}

.review-content p {
  margin: 15px 0;
  line-height: 1.8;
  color: var(--color-text);
}

.review-content ul,
.review-content ol {
  margin: 15px 0;
  padding-left: 30px;
  line-height: 1.8;
}

.review-content li {
  margin: 8px 0;
}

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
}

.review-content table th,
.review-content table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid var(--color-border);
}

.review-content table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

.review-content table tr:nth-child(even) {
  background: #f8f9fa;
}

.review-content a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: var(--transition);
}

.review-content a:hover {
  color: #1e4180;
}

.review-content blockquote {
  border-left: 4px solid var(--color-secondary);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--color-text-light);
}

.review-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 15px 0;
}

.author-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 30px 0;
  border-left: 5px solid var(--color-primary);
}

.author-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.author-bio {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 15px;
}

.social-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.social-link:hover {
  color: #1e4180;
  text-decoration: underline;
}

.footer-section {
  background: var(--color-white);
  padding: 40px 0 20px;
  margin-top: 50px;
  border-top: 3px solid var(--color-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.payment-logo,
.provider-logo {
  height: 30px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition);
  filter: grayscale(100%);
}

.payment-logo:hover,
.provider-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-light);
  font-size: 14px;
}

.footer-legal {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-light);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e4180 100%);
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.widget-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.widget-text {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
}

.widget-bonus {
  color: var(--color-secondary);
  font-size: 24px;
  font-weight: 700;
}

.widget-btn {
  background: var(--color-secondary);
  color: var(--color-text);
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  display: inline-block;
}

.widget-btn:hover {
  background: #e6b800;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 204, 1, 0.4);
}

@media (max-width: 768px) {
  .p9k4l2wx {
    display: flex;
  }

  .m3v7x2qn {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--color-white);
    flex-direction: column;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .m3v7x2qn.active {
    left: 0;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

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

  .info-table {
    font-size: 14px;
  }

  .pros-cons-wrapper {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .widget-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .widget-text {
    font-size: 16px;
  }

  .widget-bonus {
    font-size: 20px;
  }

  .b4w8k5px {
    position: relative;
  }

  .f8h2k9mn {
    order: -1;
    width: 100%;
    justify-content: flex-end;
  }
}

.wp-block-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.wp-element-caption {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 8px;
}

.elementor-section {
  margin: 20px 0;
}

.yoast-schema-graph {
  display: none;
}

.wp-site-blocks {
  padding: 0;
}

.entry-content {
  margin: 0;
}

.site-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .b4w8k5px {
    flex-wrap: nowrap;
    align-items: center;
  }

  .logo-image {
    height: 36px;
  }

  .f8h2k9mn {
    order: 0;
    width: auto;
    flex-shrink: 0;
  }

  .btn-7x3m {
    padding: 9px 16px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .content-block {
    padding: 20px 15px;
  }

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

  .review-content h1 { font-size: 24px; }
  .review-content h2 { font-size: 20px; }
  .review-content h3 { font-size: 18px; }

  .review-content table {
    font-size: 13px;
  }

  .review-content table th,
  .review-content table td {
    padding: 8px 10px;
  }

  .jackpot-amount {
    font-size: 26px;
  }

  .hero-section {
    padding: 50px 15px;
  }

  .hero-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}