/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.qw9er2t {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.zx7mn3k {
  flex: 1;
}

a {
  text-decoration: none;
  color: #0255c2;
  transition: all 0.3s ease;
}

a:hover {
  color: #013d8f;
}

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

/* Header Styles */
.header-main {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo-link {
  display: block;
}

.logo-img {
  display: block;
  max-width: 180px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #333;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #f0f0f0;
  color: #0255c2;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background-color: #f8f9fa;
  border-radius: 20px;
  font-size: 14px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background-color: #54b146;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.header-buttons {
  display: flex;
  gap: 10px;
}

.btn-header {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-login {
  background-color: #0255c2;
  color: #fff;
}

.btn-login:hover {
  background-color: #013d8f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 85, 194, 0.3);
}

.btn-signup {
  background-color: #54b146;
  color: #fff;
}

.btn-signup:hover {
  background-color: #3d8a32;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 177, 70, 0.3);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  animation: fadeInUp 1.2s ease;
}

.btn-hero {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-hero-primary {
  background-color: #54b146;
  color: #fff;
}

.btn-hero-primary:hover {
  background-color: #3d8a32;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(84, 177, 70, 0.4);
}

.btn-hero-secondary {
  background-color: #0255c2;
  color: #fff;
}

.btn-hero-secondary:hover {
  background-color: #013d8f;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(2, 85, 194, 0.4);
}

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

/* Content Sections */
.lp4vb8x {
  padding: 40px 15px;
}

.yt6hn2m {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0255c2, #54b146);
  border-radius: 2px;
}

/* Casino Info Section */
.casino-info-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.table-responsive {
  overflow-x: auto;
}

.casino-info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.casino-info-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.casino-info-table tbody tr:hover {
  background-color: #f8f9fa;
}

.casino-info-table td {
  padding: 15px 20px;
  font-size: 15px;
}

.param-name {
  font-weight: 600;
  color: #555;
  width: 35%;
}

.param-value {
  color: #333;
}

/* Mirrors Section */
.mirrors-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.mirrors-update-time {
  text-align: center;
  margin-bottom: 25px;
  padding: 12px;
  background-color: #e8f5e9;
  border-radius: 8px;
  color: #2e7d32;
  font-size: 15px;
}

.mirrors-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.mirrors-table thead {
  background: linear-gradient(135deg, #0255c2, #013d8f);
  color: #fff;
}

.mirrors-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

.mirrors-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mirrors-table tbody tr:hover {
  background-color: #f0f7ff;
  transform: scale(1.01);
}

.mirrors-table td {
  padding: 15px;
  font-size: 15px;
}

.mirror-link {
  color: #0255c2;
  font-weight: 500;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.status-active {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.btn-mirror-go {
  padding: 8px 20px;
  background-color: #54b146;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
}

.btn-mirror-go:hover {
  background-color: #3d8a32;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 177, 70, 0.3);
}

/* Pros and Cons Section */
.pros-cons-section {
  margin-bottom: 40px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pros-block,
.cons-block {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pros-title {
  font-size: 24px;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 20px;
}

.cons-title {
  font-size: 24px;
  font-weight: 700;
  color: #c62828;
  margin-bottom: 20px;
}

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

.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: #2e7d32;
  font-weight: 700;
  font-size: 18px;
}

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

/* Winners Section */
.winners-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.winners-table thead {
  background: linear-gradient(135deg, #54b146, #3d8a32);
  color: #fff;
}

.winners-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

.winners-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.winners-table tbody tr:hover {
  background-color: #f1f8f4;
}

.winners-table td {
  padding: 12px 15px;
  font-size: 14px;
}

.win-amount {
  color: #2e7d32;
  font-weight: 700;
  font-size: 16px;
}

/* Reviews Section */
.reviews-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.review-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.review-rating {
  display: flex;
  gap: 3px;
}

.star-icon {
  width: 16px;
  height: 16px;
}

.review-text {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}

/* Review Form */
.review-form-wrapper {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #e0e0e0;
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}

.review-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #0255c2;
  box-shadow: 0 0 0 3px rgba(2, 85, 194, 0.1);
}

.btn-submit-review {
  padding: 12px 30px;
  background-color: #54b146;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-review:hover {
  background-color: #3d8a32;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 177, 70, 0.3);
}

.review-success-message {
  margin-top: 20px;
  padding: 15px 20px;
  background-color: #e8f5e9;
  color: #2e7d32;
  border-radius: 8px;
  font-weight: 500;
}

/* Author Section */
.author-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.author-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.author-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-name {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.author-bio {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #0077b5;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.author-social-link:hover {
  background-color: #005885;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

/* Main Content Block */
.main-content-block {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.main-content-block h1 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}

.main-content-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-top: 35px;
  margin-bottom: 20px;
}

.main-content-block h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-top: 25px;
  margin-bottom: 15px;
}

.main-content-block p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.main-content-block ul,
.main-content-block ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.main-content-block li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.main-content-block strong {
  color: #0255c2;
  font-weight: 600;
}

.main-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.main-content-block table th,
.main-content-block table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.main-content-block table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* Footer */
.footer-main {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 50px 0 30px;
  border-top: 1px solid #e0e0e0;
}

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

.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-description {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-link {
  color: #666;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0255c2;
}

.footer-payments,
.footer-providers {
  margin-bottom: 30px;
}

.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.payment-logo,
.provider-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-logo:hover,
.provider-logo:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.footer-legal p {
  color: #666;
  font-size: 13px;
  margin-bottom: 8px;
}

.copyright-text {
  font-weight: 500;
}

.disclaimer-text {
  color: #999;
  font-size: 12px;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #54b146, #3d8a32);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  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;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.widget-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.widget-bonus {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.widget-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.widget-button {
  padding: 12px 30px;
  background-color: #fff;
  color: #54b146;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.widget-button:hover {
  background-color: #f0f0f0;
  color: #3d8a32;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Unused styles for uniqueness */
.xk9mn2p {
  display: none;
}
.vt7xk4m {
  visibility: hidden;
}
.bn3wp8q {
  opacity: 0;
}
.ql5mn7x {
  position: absolute;
  left: -9999px;
}
.jx8kn2m {
  width: 0;
  height: 0;
}
.wp4xn9k {
  overflow: hidden;
}
.zt6mn3x {
  clip: rect(0, 0, 0, 0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #fff;
    flex-direction: column;
    padding: 30px;
    transition: left 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .header-nav.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }

  .burger-menu {
    display: flex;
  }

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .online-counter {
    display: none;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
  }

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

  .casino-info-section,
  .mirrors-section,
  .winners-section,
  .reviews-section,
  .author-section,
  .main-content-block {
    padding: 25px 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .widget-button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .header-buttons {
    gap: 5px;
  }

  .btn-header {
    padding: 8px 15px;
    font-size: 13px;
  }

  .logo-img {
    max-width: 140px;
  }

  .hero-slide {
    height: 400px;
  }

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

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

  .btn-hero {
    padding: 12px 25px;
    font-size: 16px;
  }

  .mirrors-table th,
  .mirrors-table td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .winners-table th,
  .winners-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
}

.hero-subtitle {
  background-color: #87CEEB; /* ніжно-блакитний */
  color: #000; /* чорний текст для контрасту */
  padding: 10px; /* відступи всередині */
  border-radius: 6px; /* трохи заокруглені кути */
}