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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f9;
  color: #333;
  line-height: 1.6;
}

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

/* Header Styles */
.qwx-header-wrapper {
  background: #0b0d10;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qwx-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.qwx-logo-img {
  height: 50px;
  width: auto;
}

.qwx-header-info {
  color: #fff;
}

.qwx-reviews-count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qwx-count-label {
  font-size: 12px;
  color: #aaa;
}

.qwx-count-number {
  font-size: 24px;
  font-weight: bold;
  color: #adff00;
}

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

.qwx-btn-group {
  display: flex;
  gap: 10px;
}

.qwx-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.qwx-btn-login {
  background: #ffffff;
  color: #0b0d10;
}

.qwx-btn-login:hover {
  background: #e0e0e0;
}

.qwx-btn-register {
  background: #adff00;
  color: #0b0d10;
}

.qwx-btn-register:hover {
  background: #9ae600;
  transform: translateY(-2px);
}

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

.qwx-burger-menu span {
  width: 25px;
  height: 3px;
  background: #adff00;
  transition: all 0.3s ease;
}

.qwx-mobile-menu {
  display: none;
  background: #1a1c20;
  padding: 20px;
  margin-top: 15px;
}

.qwx-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qwx-nav-link {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.qwx-nav-link:hover {
  background: #2a2c30;
}

/* Breadcrumbs */
.qwx-breadcrumbs-wrapper {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.qwx-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.qwx-breadcrumb-item {
  color: #666;
  text-decoration: none;
}

.qwx-breadcrumb-item:hover {
  color: #adff00;
}

.qwx-breadcrumb-current {
  color: #333;
  font-weight: bold;
}

.qwx-breadcrumb-separator {
  color: #999;
}

/* Hero Section */
.qwx-hero-section {
  position: relative;
  margin-bottom: 40px;
}

.qwx-hero-background {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.qwx-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.qwx-casino-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qwx-card-logo {
  width: 150px;
  margin-bottom: 20px;
  background-color: #0a0a0a;
}

.qwx-card-rating {
  text-align: center;
  margin-bottom: 20px;
}

.qwx-rating-value {
  font-size: 48px;
  font-weight: bold;
  color: #adff00;
}

.qwx-rating-bar {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
}

.qwx-rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff4444 0%, #ffaa00 50%, #adff00 100%);
  transition: width 0.5s ease;
}

.qwx-rating-label {
  font-size: 14px;
  color: #666;
}

.qwx-card-bonus {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f0f0f0;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.qwx-bonus-icon {
  font-size: 40px;
}

.qwx-bonus-title {
  font-size: 12px;
  color: #666;
}

.qwx-bonus-amount {
  font-size: 24px;
  font-weight: bold;
  color: #adff00;
}

.qwx-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qwx-btn-large {
  padding: 15px 30px;
  font-size: 16px;
  text-align: center;
}

.qwx-btn-primary {
  background: #adff00;
  color: #0b0d10;
}

.qwx-btn-primary:hover {
  background: #9ae600;
  transform: translateY(-2px);
}

.qwx-btn-secondary {
  background: #fff;
  color: #0b0d10;
  border: 2px solid #adff00;
}

.qwx-btn-secondary:hover {
  background: #adff00;
}

.qwx-ratings-breakdown {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qwx-breakdown-title {
  margin-bottom: 20px;
  color: #0b0d10;
}

.qwx-rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.qwx-rating-name {
  font-size: 14px;
  color: #666;
}

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

.qwx-star {
  font-size: 20px;
  color: #ddd;
}

.qwx-star-filled {
  color: #ffc107;
}

/* Comparison Table */
.qwx-comparison-wrapper {
  margin: 40px 0;
}

.qwx-section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0b0d10;
  text-align: center;
}

.qwx-comparison-table-wrapper {
  overflow-x: auto;
}

.qwx-comparison-table {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
}

.qwx-comparison-table thead {
  background: #0b0d10;
  color: #fff;
}

.qwx-comparison-table th,
.qwx-comparison-table td {
  padding: 20px;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.qwx-casino-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qwx-casino-logo {
  width: 40px;
  height: 40px;
}

.qwx-highlight-row {
  background: #f0fff0;
}

.qwx-table-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qwx-rating-number {
  font-size: 20px;
  font-weight: bold;
  color: #adff00;
}

.qwx-rating-bar-small {
  width: 80px;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 5px;
}

.qwx-rating-fill-small {
  height: 100%;
  background: linear-gradient(90deg, #ff4444 0%, #ffaa00 50%, #adff00 100%);
}

.qwx-btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* Reviews Section */
.qwx-reviews-section {
  margin: 40px 0;
}

.qwx-reviews-container {
  display: grid;
  gap: 20px;
}

.qwx-review-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.qwx-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.qwx-review-author-info {
  display: flex;
  gap: 15px;
}

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

.qwx-review-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.qwx-review-author {
  font-size: 16px;
  color: #0b0d10;
}

.qwx-review-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #666;
}

.qwx-flag-icon {
  width: 20px;
  height: 15px;
}

.qwx-review-date {
  font-size: 12px;
  color: #999;
}

.qwx-review-rating {
  text-align: right;
}

.qwx-rating-display {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.qwx-review-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b0d10;
}

.qwx-review-source {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}

.qwx-review-source a {
  color: #adff00;
  text-decoration: none;
}

.qwx-review-body {
  margin-bottom: 15px;
}

.qwx-review-text {
  line-height: 1.8;
  color: #333;
}

.qwx-review-collapsed {
  max-height: 100px;
  overflow: hidden;
  position: relative;
}

.qwx-review-collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, #fff);
}

.qwx-review-expand {
  background: none;
  border: none;
  color: #adff00;
  cursor: pointer;
  font-weight: bold;
  padding: 5px 0;
}

.qwx-review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

.qwx-review-pros h5,
.qwx-review-cons h5 {
  margin-bottom: 10px;
}

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

.qwx-pro-item {
  color: #28a745;
  margin-bottom: 5px;
}

.qwx-con-item {
  color: #dc3545;
  margin-bottom: 5px;
}

.qwx-review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.qwx-review-votes {
  display: flex;
  gap: 10px;
}

.qwx-vote-btn {
  background: #f0f0f0;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.qwx-vote-btn:hover {
  background: #e0e0e0;
}

.qwx-reply-btn {
  background: none;
  border: none;
  color: #adff00;
  cursor: pointer;
  font-weight: bold;
}

.qwx-reply-form {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.qwx-reply-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.qwx-reply-actions {
  display: flex;
  gap: 10px;
}

/* FAQ Section */
.qwx-faq-wrapper {
  margin: 40px 0;
}

.qwx-faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qwx-faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.qwx-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: #0b0d10;
  transition: background 0.3s ease;
}

.qwx-faq-question:hover {
  background: #f0f0f0;
}

.qwx-faq-icon {
  font-size: 24px;
  color: #adff00;
}

.qwx-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.qwx-faq-open .qwx-faq-answer {
  padding: 20px;
  max-height: 500px;
}

.qwx-faq-answer p {
  line-height: 1.8;
  color: #666;
}

/* Leave Review Section */
.qwx-leave-review-wrapper {
  margin: 40px 0;
}

.qwx-bonus-banner {
  background: linear-gradient(135deg, #adff00 0%, #7acc00 100%);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(173, 255, 0, 0.3);
}

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

.qwx-bonus-icon-large {
  font-size: 60px;
}

.qwx-bonus-text-large h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0b0d10;
}

.qwx-bonus-text-large p {
  font-size: 16px;
  color: #333;
}

.qwx-btn-bonus {
  background: #0b0d10;
  color: #adff00;
}

.qwx-btn-bonus:hover {
  background: #1a1c20;
  transform: scale(1.05);
}

.qwx-review-form-wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qwx-review-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qwx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.qwx-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qwx-form-group label {
  font-weight: bold;
  color: #0b0d10;
}

.qwx-form-input,
.qwx-form-textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: Arial, Helvetica, sans-serif;
  transition: border-color 0.3s ease;
}

.qwx-form-input:focus,
.qwx-form-textarea:focus {
  outline: none;
  border-color: #adff00;
}

.qwx-rating-inputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qwx-rating-input-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qwx-star-rating {
  display: flex;
  gap: 5px;
}

.qwx-star-input {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

.qwx-star-input:hover,
.qwx-star-input.active {
  color: #ffc107;
}

.qwx-success-message {
  text-align: center;
  padding: 40px;
}

.qwx-success-icon {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.qwx-success-message h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0b0d10;
}

.qwx-success-message p {
  color: #666;
  line-height: 1.8;
}

/* Content Section */
.qwx-content-section {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.qwx-main-heading {
  font-size: 36px;
  margin-bottom: 30px;
  color: #0b0d10;
}

.xrt-supplementary-content-block h2 {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0b0d10;
}

.xrt-supplementary-content-block h3 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #333;
}

.xrt-supplementary-content-block p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #666;
}

.xrt-supplementary-content-block ul,
.xrt-supplementary-content-block ol {
  margin-left: 30px;
  margin-bottom: 15px;
}

.xrt-supplementary-content-block li {
  line-height: 1.8;
  margin-bottom: 8px;
}

.xrt-supplementary-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

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

.xrt-supplementary-content-block table th {
  background: #f0f0f0;
  font-weight: bold;
}

/* Author Section */
.qwx-author-wrapper {
  margin: 40px 0;
}

.qwx-author-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0b0d10;
}

.qwx-author-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  gap: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.qwx-author-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.qwx-author-info {
  flex: 1;
}

.qwx-author-name {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0b0d10;
}

.qwx-author-bio {
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

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

.qwx-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: #f0f0f0;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: background 0.3s ease;
}

.qwx-social-link:hover {
  background: #adff00;
}

.qwx-social-link img {
  width: 20px;
  height: 20px;
}

/* Footer */
.qwx-footer-wrapper {
  background: #0b0d10;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.qwx-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.qwx-footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.qwx-footer-description {
  color: #aaa;
  line-height: 1.6;
}

.qwx-footer-menu h4,
.qwx-footer-trust h4 {
  margin-bottom: 15px;
  color: #adff00;
}

.qwx-footer-menu ul {
  list-style: none;
}

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

.qwx-footer-menu a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.qwx-footer-menu a:hover {
  color: #adff00;
}

.qwx-trust-logos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.qwx-trust-logos img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.qwx-footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.qwx-payment-methods {
  display: flex;
  gap: 15px;
}

.qwx-payment-methods img {
  height: 30px;
  width: auto;
}

.qwx-copyright {
  text-align: right;
}

.qwx-copyright p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 5px;
}

.qwx-legal {
  font-size: 12px;
  color: #666;
}

/* Widget */
.qwx-widget-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  animation: slideInUp 0.5s ease;
}

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

.qwx-widget-content {
  background: #adff00;
  border-radius: 50px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.qwx-widget-bonus {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qwx-widget-bonus-icon {
  font-size: 24px;
}

.qwx-widget-bonus-text {
  font-weight: bold;
  color: #0b0d10;
}

.qwx-widget-btn {
  background: #0b0d10;
  color: #adff00;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.qwx-widget-btn:hover {
  background: #1a1c20;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .qwx-hero-content {
    grid-template-columns: 1fr;
  }

  .qwx-footer-content {
    grid-template-columns: 1fr;
  }

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

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

  .qwx-btn-group {
    display: flex !important;
  }

  .qwx-header-content {
    justify-content: space-between;
  }

  .qwx-form-row {
    grid-template-columns: 1fr;
  }

  .qwx-bonus-banner-content {
    flex-direction: column;
    text-align: center;
  }

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

  .qwx-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .qwx-copyright {
    text-align: center;
  }

  .qwx-widget-fixed {
    bottom: 10px;
    right: 10px;
  }

  .qwx-widget-content {
    padding: 12px 20px;
  }
}

/* Unused styles for uniqueness */
.zxp-deprecated-wrapper {
  display: none;
  visibility: hidden;
}

.mko-old-container {
  opacity: 0;
  pointer-events: none;
}

.tyu-legacy-element {
  position: absolute;
  left: -9999px;
}

.vbn-unused-class {
  color: transparent;
}

.hjk-obsolete-style {
  transform: scale(0);
}
