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

body {
  font-family: Helvetica, sans-serif;
  background-color: #020100;
  color: #e8e8e8;
  line-height: 1.7;
  overflow-x: hidden;
}

.b7kx4-body-wrapper {
  background: linear-gradient(135deg, #020100 0%, #0a0505 100%);
}

.m3vp8-site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.n5kq2-header {
  background-color: #090111;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid #0b80dc;
}

.p9vx7-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.w4mt8-header-content {
  display: grid;
  grid-template-columns: 200px 1fr auto auto auto;
  align-items: center;
  gap: 2rem;
}

.j1bc6-logo-section {
  display: flex;
  align-items: center;
}

.r8dn3-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

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

.s2yp4-logo-img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.k3xm5-nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.a9wp2-nav-link {
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.a9wp2-nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0b80dc;
  transition: width 0.3s ease;
}

.a9wp2-nav-link:hover {
  color: #0b80dc;
}

.a9wp2-nav-link:hover::after {
  width: 100%;
}

.q6zr1-online-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(11, 128, 220, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid #0b80dc;
}

.h8tq3-counter-icon {
  font-size: 1.2rem;
}

.m4vn7-counter-text strong {
  color: #a8c94e;
  font-weight: 700;
}

.x2kp9-header-buttons {
  display: flex;
  gap: 0.75rem;
}

.t5wm8-btn,
.c9nx4-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.t5wm8-btn-login {
  background-color: #0b80dc;
  color: #fff;
}

.t5wm8-btn-login:hover {
  background-color: #0965b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 128, 220, 0.4);
}

.c9nx4-btn-signup {
  background-color: #a8c94e;
  color: #000;
}

.c9nx4-btn-signup:hover {
  background-color: #8fb03c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 201, 78, 0.4);
}

/* Mobile Menu */
.v7hq2-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.v7hq2-burger span {
  width: 28px;
  height: 3px;
  background-color: #e8e8e8;
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

.z9km6-mobile-nav {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.z9km6-mobile-nav.active {
  display: block;
  max-height: 400px;
  margin-top: 1rem;
}

.b3tp8-mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.b3tp8-mobile-list li {
  border-top: 1px solid rgba(232, 232, 232, 0.1);
}

.d6ws1-mobile-link {
  display: block;
  padding: 1rem;
  color: #e8e8e8;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.d6ws1-mobile-link:hover {
  background-color: rgba(11, 128, 220, 0.1);
  color: #0b80dc;
}

/* Hero Section */
.y8kx3-hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 3rem;
}

.f4nq7-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 1, 0, 0.85) 0%, rgba(9, 1, 17, 0.75) 100%);
}

.m2vp5-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

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

.r9ht6-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.k1ws8-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #e8e8e8;
  line-height: 1.6;
}

.j7dp4-hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #a8c94e;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(168, 201, 78, 0.4);
}

.j7dp4-hero-btn:hover {
  background-color: #8fb03c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(168, 201, 78, 0.6);
}

/* Main Content */
.f2np9-main-content {
  flex: 1;
  padding: 2rem 0;
}

.t8wq5-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.y6rx1-content-wrapper {
  background: rgba(9, 1, 17, 0.6);
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  border: 1px solid rgba(11, 128, 220, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.d4hs7-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.3;
}

/* Advantages Section */
.xr8p2-advantages-section {
  margin-bottom: 3rem;
}

.k9mw3-section-title,
.q9mw1-section-title,
.h9mw4-section-title,
.c8mw7-section-title,
.t9mw2-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 1rem;
}

.k9mw3-section-title::after,
.q9mw1-section-title::after,
.h9mw4-section-title::after,
.c8mw7-section-title::after,
.t9mw2-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0b80dc 0%, #a8c94e 100%);
  border-radius: 2px;
}

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

.z2hp5-advantage-card {
  background: rgba(9, 1, 17, 0.7);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid rgba(11, 128, 220, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.z2hp5-advantage-card:hover {
  transform: translateY(-5px);
  border-color: #0b80dc;
  box-shadow: 0 8px 25px rgba(11, 128, 220, 0.3);
}

.q1xt9-icon-wrapper {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.z2hp5-advantage-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #a8c94e;
}

.z2hp5-advantage-card p {
  font-size: 1rem;
  color: #c8c8c8;
  line-height: 1.6;
}

/* Jackpots Section */
.p8kx2-jackpots-section {
  background: rgba(9, 1, 17, 0.6);
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  border: 1px solid rgba(168, 201, 78, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.w4nq6-jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.v2hp8-jackpot-card {
  background: linear-gradient(135deg, rgba(11, 128, 220, 0.2) 0%, rgba(168, 201, 78, 0.2) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid;
  transition: all 0.3s ease;
}

.v2hp8-jackpot-mega {
  border-color: #ffd700;
}

.v2hp8-jackpot-major {
  border-color: #c0c0c0;
}

.v2hp8-jackpot-minor {
  border-color: #cd7f32;
}

.v2hp8-jackpot-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(168, 201, 78, 0.4);
}

.z1xt7-jackpot-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #a8c94e;
}

.k9rt5-jackpot-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  animation: pulse 2s infinite;
}

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

.m3ws6-jackpot-currency {
  font-size: 1.5rem;
  color: #e8e8e8;
}

/* Games Section */
.t7kx9-games-section {
  background: rgba(9, 1, 17, 0.6);
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  border: 1px solid rgba(11, 128, 220, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.b4nq8-games-slider {
  position: relative;
}

.y2hp3-games-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.q1xt5-game-card {
  background: rgba(2, 1, 0, 0.6);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(168, 201, 78, 0.3);
  transition: all 0.3s ease;
}

.q1xt5-game-card:hover {
  transform: translateY(-5px);
  border-color: #a8c94e;
  box-shadow: 0 8px 25px rgba(168, 201, 78, 0.3);
}

.n8rt9-game-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.n8rt9-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.q1xt5-game-card:hover .n8rt9-game-image img {
  transform: scale(1.1);
}

.w5ws7-game-title {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem 1rem 0.5rem;
  color: #fff;
}

.k3dp2-game-provider {
  font-size: 0.9rem;
  color: #a8c94e;
  padding: 0 1rem 1rem;
}

.m7bx6-game-btn {
  display: block;
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem;
  padding: 0.75rem;
  background-color: #0b80dc;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.m7bx6-game-btn:hover {
  background-color: #0965b3;
  box-shadow: 0 4px 12px rgba(11, 128, 220, 0.4);
}

.s4mn7-slider-btn {
  display: none;
}

/* Slot Game Section */
.x9kp2-slot-section {
  background: rgba(9, 1, 17, 0.6);
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  border: 1px solid rgba(168, 201, 78, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.v3nq4-slot-machine {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(2, 1, 0, 0.8);
  padding: 2.5rem;
  border-radius: 15px;
  border: 3px solid #a8c94e;
  text-align: center;
}

.z7hp1-reels-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.k2xt6-reel {
  background: #090111;
  border: 2px solid #0b80dc;
  border-radius: 10px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.m9rt8-symbol {
  font-size: 3.5rem;
  animation: none;
}

.k2xt6-reel.spinning .m9rt8-symbol {
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.w5bx3-spin-btn {
  width: 100%;
  padding: 1rem;
  background-color: #a8c94e;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.w5bx3-spin-btn:hover {
  background-color: #8fb03c;
  transform: scale(1.05);
}

.w5bx3-spin-btn:disabled {
  background-color: #555;
  cursor: not-allowed;
  transform: none;
}

.p4dp8-result-message {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(168, 201, 78, 0.2);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #a8c94e;
}

.j1nx9-claim-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  background-color: #0b80dc;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.j1nx9-claim-btn:hover {
  background-color: #0965b3;
  box-shadow: 0 4px 12px rgba(11, 128, 220, 0.4);
}

/* Reviews Section */
.r6kx8-reviews-section {
  background: rgba(9, 1, 17, 0.6);
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  border: 1px solid rgba(11, 128, 220, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.y8hp4-review-card {
  background: rgba(2, 1, 0, 0.6);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid rgba(168, 201, 78, 0.2);
  transition: all 0.3s ease;
}

.y8hp4-review-card:hover {
  border-color: #a8c94e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(168, 201, 78, 0.2);
}

.k1xt9-review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.n7rt2-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #0b80dc;
}

.w4ws5-user-info {
  flex: 1;
}

.m2dp7-user-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.z9bx1-rating {
  display: flex;
  gap: 0.25rem;
}

.p3mn8-star {
  color: #ffd700;
  font-size: 1.1rem;
}

.p3mn8-star-empty {
  color: #555;
  font-size: 1.1rem;
}

.q6tp4-review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c8c8c8;
}

/* Review Form */
.f7kx5-review-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(2, 1, 0, 0.6);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid rgba(11, 128, 220, 0.3);
}

.x4mw9-form-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #fff;
}

.p2nq6-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.y8hp7-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.k1xt4-label {
  font-weight: 600;
  color: #e8e8e8;
  font-size: 0.95rem;
}

.n9rt3-input,
.w5ws8-textarea {
  padding: 0.75rem;
  background: rgba(9, 1, 17, 0.6);
  border: 2px solid rgba(11, 128, 220, 0.3);
  border-radius: 8px;
  color: #e8e8e8;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.n9rt3-input:focus,
.w5ws8-textarea:focus {
  outline: none;
  border-color: #0b80dc;
}

.w5ws8-textarea {
  resize: vertical;
  min-height: 120px;
}

.m7bx2-submit-btn {
  padding: 0.9rem;
  background-color: #a8c94e;
  color: #000;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.m7bx2-submit-btn:hover {
  background-color: #8fb03c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 201, 78, 0.4);
}

.z3dp9-success-message {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(168, 201, 78, 0.2);
  border: 2px solid #a8c94e;
  border-radius: 8px;
  text-align: center;
}

.z3dp9-success-message p {
  color: #a8c94e;
  font-weight: 600;
  margin: 0;
}

/* Footer */
.c8kx6-footer {
  background-color: #090111;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
  border-top: 2px solid #0b80dc;
}

.v3nq9-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.b7hp2-footer-top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.k2xt1-footer-logo img {
  max-width: 180px;
}

.y9rt4-footer-nav {
  display: flex;
  justify-content: center;
}

.w6ws8-footer-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.m1dp3-footer-link {
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.m1dp3-footer-link:hover {
  color: #0b80dc;
}

.z5bx7-payments-section {
  margin-bottom: 2.5rem;
}

.p4mn2-payments-title,
.r8mw5-providers-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
  text-align: center;
}

.q8tp6-payments-grid,
.t1nq7-providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.q8tp6-payments-grid img,
.t1nq7-providers-grid img {
  max-width: 100%;
  height: auto;
  filter: grayscale(50%) brightness(0.9);
  transition: all 0.3s ease;
}

.q8tp6-payments-grid img:hover,
.t1nq7-providers-grid img:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.n3kx4-providers-section {
  margin-bottom: 2.5rem;
}

.x9hp8-footer-bottom {
  border-top: 1px solid rgba(232, 232, 232, 0.1);
  padding-top: 2rem;
}

.k5xt2-legal-info {
  text-align: center;
}

.w7rt9-copyright,
.m4ws1-license,
.b2dp5-disclaimer,
.z6bx8-support {
  color: #a8a8a8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.y1kp3-author-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 232, 232, 0.1);
}

.p9mn7-author-info {
  text-align: center;
  font-size: 0.9rem;
  color: #a8a8a8;
  line-height: 1.6;
}

.p9mn7-author-info a {
  color: #0b80dc;
  text-decoration: none;
}

.p9mn7-author-info a:hover {
  text-decoration: underline;
}

/* Sticky Widget */
.f6kx1-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #090111 0%, #0b80dc 100%);
  padding: 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
  z-index: 999;
  border-top: 2px solid #a8c94e;
  animation: slideUp 0.5s ease;
}

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

.v8nq4-widget-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.k3hp7-widget-text {
  color: #fff;
  font-size: 1.05rem;
}

.k3hp7-widget-text strong {
  color: #a8c94e;
  font-weight: 700;
}

.z9rt2-widget-btn {
  padding: 0.75rem 2rem;
  background-color: #a8c94e;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.z9rt2-widget-btn:hover {
  background-color: #8fb03c;
  transform: scale(1.05);
}

/* Content Styling for injected HTML */
.y6rx1-content-wrapper h2,
.y6rx1-content-wrapper h3,
.y6rx1-content-wrapper h4 {
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.y6rx1-content-wrapper h2 {
  font-size: 2rem;
  border-bottom: 2px solid #0b80dc;
  padding-bottom: 0.5rem;
}

.y6rx1-content-wrapper h3 {
  font-size: 1.6rem;
}

.y6rx1-content-wrapper h4 {
  font-size: 1.3rem;
}

.y6rx1-content-wrapper p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #c8c8c8;
}

.y6rx1-content-wrapper ul,
.y6rx1-content-wrapper ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
  line-height: 1.7;
  color: #c8c8c8;
}

.y6rx1-content-wrapper li {
  margin-bottom: 0.5rem;
}

.y6rx1-content-wrapper table {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-collapse: collapse;
  background: rgba(9, 1, 17, 0.6);
}

.y6rx1-content-wrapper table th,
.y6rx1-content-wrapper table td {
  padding: 1rem;
  text-align: left;
  border: 2px solid rgba(11, 128, 220, 0.3);
}

.y6rx1-content-wrapper table th {
  background: rgba(11, 128, 220, 0.2);
  color: #fff;
  font-weight: 600;
}

.y6rx1-content-wrapper table td {
  color: #c8c8c8;
}

.y6rx1-content-wrapper a {
  color: #0b80dc;
  text-decoration: none;
}

.y6rx1-content-wrapper a:hover {
  text-decoration: underline;
}

/* Unused styles for obfuscation */
.wp-block-group__inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.elementor-section {
  position: relative;
}

.yoast-breadcrumbs {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .w4mt8-header-content {
    grid-template-columns: 1fr auto auto;
  }

  .l7fh9-nav-desktop {
    display: none;
  }

  .q6zr1-online-counter {
    display: none;
  }

  .v7hq2-burger {
    display: flex;
  }

  .r9ht6-hero-title {
    font-size: 2.2rem;
  }

  .k1ws8-hero-subtitle {
    font-size: 1.1rem;
  }

  .b7hp2-footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .w6ws8-footer-list {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .y2hp3-games-container {
    grid-template-columns: 1fr;
  }

  .s4mn7-slider-btn {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 128, 220, 0.8);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
  }

  .s4mn7-slider-btn:hover {
    background: rgba(11, 128, 220, 1);
  }

  .s4mn7-prev {
    left: 10px;
  }

  .s4mn7-next {
    right: 10px;
  }

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

  .k3hp7-widget-text {
    font-size: 0.95rem;
  }

  .v4nq7-advantages-grid,
  .w4nq6-jackpots-grid,
  .b5nq3-reviews-grid {
    grid-template-columns: 1fr;
  }

  .d4hs7-main-heading {
    font-size: 1.8rem;
  }

  .k9mw3-section-title,
  .q9mw1-section-title,
  .h9mw4-section-title,
  .c8mw7-section-title,
  .t9mw2-section-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .x2kp9-header-buttons {
    gap: 0.5rem;
  }

  .t5wm8-btn,
  .c9nx4-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .r9ht6-hero-title {
    font-size: 1.7rem;
  }

  .k1ws8-hero-subtitle {
    font-size: 1rem;
  }

  .j7dp4-hero-btn {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }

  .y6rx1-content-wrapper,
  .p8kx2-jackpots-section,
  .t7kx9-games-section,
  .x9kp2-slot-section,
  .r6kx8-reviews-section {
    padding: 1.5rem;
  }
}
/* =========================
   PRO ARTICLE (container.pro)
   ========================= */

.container.pro{
    max-width: 980px;
    margin: 26px auto 60px;
    padding: 28px 28px;

    background: rgba(9, 1, 17, 0.62);
    border: 1px solid rgba(11, 128, 220, 0.18);
    border-radius: 16px;
    box-shadow: 0 18px 60px rgba(0,0,0,.45);

    overflow-wrap: anywhere;
}

/* typographic rhythm */
.container.pro > *:first-child{ margin-top: 0; }
.container.pro > *:last-child{ margin-bottom: 0; }

.container.pro p{
    margin: 0 0 14px;
    color: rgba(232,232,232,.88);
    line-height: 1.85;
    font-size: 16px;
}

.container.pro h1,
.container.pro h2,
.container.pro h3{
    color: #fff;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: .2px;
}

.container.pro h1{
    font-size: clamp(26px, 3.2vw, 38px);
    margin: 0 0 16px;
}

.container.pro h2{
    font-size: clamp(20px, 2.4vw, 28px);
    margin: 26px 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(11,128,220,.45);
}

.container.pro h3{
    font-size: clamp(18px, 2vw, 22px);
    margin: 18px 0 10px;
    color: #a8c94e;
}

/* lists */
.container.pro ul,
.container.pro ol{
    margin: 0 0 16px;
    padding-left: 20px;
}

.container.pro li{
    margin: 0 0 8px;
    color: rgba(232,232,232,.86);
    line-height: 1.75;
}

.container.pro ul li::marker{ color: rgba(168,201,78,.9); }
.container.pro ol li::marker{ color: rgba(11,128,220,.95); font-weight: 800; }

/* links */
.container.pro a{
    color: #0b80dc;
    text-decoration: none;
    border-bottom: 1px solid rgba(11,128,220,.35);
    transition: opacity .15s ease, border-color .15s ease;
}
.container.pro a:hover{
    opacity: .92;
    border-color: rgba(168,201,78,.55);
}

/* inline emphasis */
.container.pro strong{
    color: #fff;
    font-weight: 800;
}
.container.pro em{
    color: rgba(232,232,232,.95);
}

/* simple “info box” helper if you later add <div class="pro-box">...</div> */
.container.pro .pro-box{
    margin: 16px 0 18px;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(168,201,78,.08);
    border: 1px solid rgba(168,201,78,.22);
}

/* tables (якщо є таблиці в контенті) */
.container.pro table{
    width: 100%;
    margin: 18px 0 20px;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(2,1,0,.35);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    overflow: hidden;
}
.container.pro th,
.container.pro td{
    padding: 12px 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 14px;
    line-height: 1.5;
}
.container.pro th{
    text-align: left;
    color: #fff;
    background: rgba(11,128,220,.12);
    font-weight: 800;
}
.container.pro tr:last-child td{ border-bottom: 0; }

/* long urls */
.container.pro a,
.container.pro p,
.container.pro li{
    word-break: break-word;
}

/* =========================
   Mobile адаптація
   ========================= */
@media (max-width: 992px){
    .container.pro{
        max-width: 900px;
        margin: 18px auto 50px;
        padding: 22px 18px;
        border-radius: 14px;
    }
}

@media (max-width: 560px){
    .container.pro{
        margin: 14px 12px 46px;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .container.pro p{ font-size: 15px; line-height: 1.8; }
    .container.pro h2{ margin-top: 22px; }
    .container.pro ul,
    .container.pro ol{ padding-left: 18px; }

    /* таблиці — горизонтальний скрол на малих екранах */
    .container.pro table{
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
