:root {
  --color-primary: #1d2158;
  --color-secondary: #96a5d1;
  --color-accent: #eaae16;
  --color-bg: #2d3447;
  --color-text: #e8e9ed;
  --color-text-dark: #1d2158;
  --color-white: #ffffff;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --font-primary: "Roboto", sans-serif;
  --transition: all 0.3s ease;
}

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

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

.xj9k2-body {
  position: relative;
}

.p8m3x-wrapper {
  min-height: 100vh;
}

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

/* Header Styles */
.r4t7n-header {
  background: var(--color-primary);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.z2k6v-logo-section {
  flex-shrink: 0;
}

.b9n4m-logo-link {
  display: block;
}

.h5j8q-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.w7t3k-nav-desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.v8k2n-nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 15px;
}

.v8k2n-nav-link:hover {
  color: var(--color-accent);
}

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

.x9k4p-online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.l2h6v-online-icon {
  font-size: 10px;
}

.t8m3k-online-text {
  color: var(--color-text);
}

.j5n9x-online-count {
  color: var(--color-accent);
}

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

.c4k8n-btn {
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.c4k8n-btn-login {
  background: var(--color-secondary);
  color: var(--color-white);
}

.c4k8n-btn-login:hover {
  background: #7a8bb8;
  transform: translateY(-2px);
}

.c4k8n-btn-signup {
  background: var(--color-accent);
  color: var(--color-text-dark);
}

.c4k8n-btn-signup:hover {
  background: #d19a12;
  transform: translateY(-2px);
}

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

.n7m2k-burger span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

.f9x4m-mobile-menu {
  display: none;
  background: var(--color-primary);
  padding: 20px 0;
  margin-top: 15px;
}

.f9x4m-mobile-menu.active {
  display: block;
}

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

.h8p4m-mobile-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.t6n2k-mobile-link {
  display: block;
  padding: 15px 20px;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.t6n2k-mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-accent);
}

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

.p7k3n-hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
}

.m2x8k-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m2x8k-slide-active {
  opacity: 1;
  z-index: 1;
}

.x5n8k-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.t4n9m-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  max-width: 700px;
}

.w8k3p-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.j6m2n-hero-text {
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.c4k8n-btn-hero {
  background: var(--color-accent);
  color: var(--color-text-dark);
  padding: 15px 40px;
  font-size: 18px;
}

.c4k8n-btn-hero:hover {
  background: #d19a12;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(234, 174, 22, 0.4);
}

.k9n3m-slider-prev,
.k9n3m-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--color-white);
  font-size: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.k9n3m-slider-prev {
  left: 20px;
}

.k9n3m-slider-next {
  right: 20px;
}

.k9n3m-slider-prev:hover,
.k9n3m-slider-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.p4x7n-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.h2k6m-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.h2k6m-dot-active,
.h2k6m-dot:hover {
  background: var(--color-accent);
  transform: scale(1.2);
}

/* Breadcrumbs */
.n8k4m-breadcrumbs {
  padding: 20px 0;
}

.t3p7k-breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.m6n2x-breadcrumb-item {
  display: flex;
  align-items: center;
}

.m6n2x-breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: var(--color-secondary);
}

.w9k4p-breadcrumb-link {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.w9k4p-breadcrumb-link:hover {
  color: var(--color-accent);
}

.m6n2x-breadcrumb-active {
  color: var(--color-text);
}

/* Table of Contents */
.x4m9k-toc-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.k2m8n-toc-title {
  font-size: 24px;
  color: var(--color-accent);
  margin-bottom: 20px;
  font-weight: 700;
}

.v6k3m-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v6k3m-toc-list li {
  margin-bottom: 12px;
}

.t9n4k-toc-link {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: 16px;
  display: inline-block;
}

.t9n4k-toc-link:hover {
  color: var(--color-accent);
  transform: translateX(5px);
}

/* Section Styles */
.m7k4n-tournaments-section,
.k9m3x-bonuses-section,
.p7k3n-games-section,
.k3m7n-demo-section,
.m9k4x-author-section {
  margin-bottom: 60px;
}

.p3x8k-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.w9n2m-section-title {
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 15px;
  font-weight: 700;
}

.k4m7x-section-subtitle {
  font-size: 18px;
  color: var(--color-text);
  opacity: 0.9;
}

/* Tournaments */
.t6n9k-tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.x2m8p-tournament-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.x2m8p-tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--color-accent);
}

.k7n3m-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.p4k9n-card-title {
  font-size: 22px;
  color: var(--color-white);
  font-weight: 600;
}

.v8m2k-card-badge {
  background: var(--color-success);
  color: var(--color-white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.n3x7k-card-body {
  margin-bottom: 20px;
}

.m9k4p-card-desc {
  color: var(--color-text);
  margin-bottom: 15px;
  line-height: 1.6;
}

.t2n6k-card-prize {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(234, 174, 22, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
}

.w7k3m-prize-label {
  color: var(--color-text);
  font-size: 14px;
}

.p9n4k-prize-amount {
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 700;
}

.x4m8n-card-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
}

.k6n2m-timer-icon {
  font-size: 18px;
}

.m2k7n-card-footer {
  text-align: center;
}

.c4k8n-btn-tournament {
  background: var(--color-accent);
  color: var(--color-text-dark);
  width: 100%;
}

.c4k8n-btn-tournament:hover {
  background: #d19a12;
}

.y7k3m-tournaments-slider-mobile {
  display: none;
}

/* Bonuses */
.v6n2k-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.m8k4p-bonus-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  position: relative;
}

.m8k4p-bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.m8k4p-bonus-featured {
  border: 2px solid var(--color-accent);
}

.x3n7k-bonus-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-danger);
  color: var(--color-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.t9k2m-bonus-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.p6n4k-bonus-title {
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 15px;
  font-weight: 600;
}

.w2k8m-bonus-amount {
  font-size: 32px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 15px;
}

.k7n3x-bonus-desc {
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.n4m9k-bonus-features {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
  text-align: left;
}

.n4m9k-bonus-features li {
  color: var(--color-text);
  margin-bottom: 10px;
  padding-left: 5px;
}

.c4k8n-btn-bonus {
  background: var(--color-accent);
  color: var(--color-text-dark);
  width: 100%;
}

.c4k8n-btn-bonus:hover {
  background: #d19a12;
}

.c4k8n-btn-bonus-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  width: 100%;
}

.c4k8n-btn-bonus-secondary:hover {
  background: #7a8bb8;
}

/* Games */
.m4n8k-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.x7k2m-game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.x7k2m-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.t3n9k-game-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.t3n9k-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.k6m2n-game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.x7k2m-game-card:hover .k6m2n-game-overlay {
  opacity: 1;
}

.c4k8n-btn-game {
  background: var(--color-accent);
  color: var(--color-text-dark);
}

.c4k8n-btn-game:hover {
  background: #d19a12;
}

.p9k4n-game-info {
  padding: 15px;
}

.w2k7m-game-title {
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 5px;
  font-weight: 600;
}

.n5k8x-game-provider {
  color: var(--color-secondary);
  font-size: 14px;
}

/* Demo Section */
.x9k2m-demo-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.t4n7k-demo-frame {
  position: relative;
  width: 100%;
  height: 600px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.m6k3n-demo-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.p8k2n-demo-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 33, 88, 0.8);
}

.w4n9k-placeholder-content {
  text-align: center;
}

.k7m3x-placeholder-icon {
  font-size: 80px;
  display: block;
  margin-bottom: 20px;
}

.n2k6m-placeholder-text {
  color: var(--color-text);
  font-size: 18px;
}

.v3k8m-demo-cta {
  text-align: center;
}

.t9k4n-cta-text {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.c4k8n-btn-demo-cta {
  background: var(--color-accent);
  color: var(--color-text-dark);
  padding: 15px 50px;
  font-size: 18px;
}

.c4k8n-btn-demo-cta:hover {
  background: #d19a12;
}

/* Content Block */
.w5t8r-content-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.q9z4k-h1 {
  font-size: 38px;
  color: var(--color-accent);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.n7j2x-text-content {
  color: var(--color-text);
  line-height: 1.8;
}

.n7j2x-text-content h2 {
  font-size: 30px;
  color: var(--color-white);
  margin: 30px 0 20px;
  font-weight: 600;
}

.n7j2x-text-content h3 {
  font-size: 24px;
  color: var(--color-white);
  margin: 25px 0 15px;
  font-weight: 600;
}

.n7j2x-text-content p {
  margin-bottom: 20px;
}

.n7j2x-text-content ul,
.n7j2x-text-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.n7j2x-text-content li {
  margin-bottom: 10px;
}

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

.n7j2x-text-content a:hover {
  color: var(--color-accent);
}

.n7j2x-text-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
}

.n7j2x-text-content th,
.n7j2x-text-content td {
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.n7j2x-text-content th {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
  font-weight: 600;
}

.n7j2x-text-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
  color: var(--color-text);
  opacity: 0.9;
}

/* Author Section */
.x6k2n-author-card {
  display: flex;
  gap: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

.t4m9k-author-image {
  flex-shrink: 0;
}

.t4m9k-author-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent);
}

.k7n3m-author-content {
  flex: 1;
}

.p9k4n-author-name {
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: 5px;
  font-weight: 700;
}

.w2k8m-author-title {
  color: var(--color-accent);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.n5k7x-author-bio {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.t6k2m-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.t6k2m-social-link:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}

.k9n4x-social-icon {
  font-size: 18px;
}

/* Footer */
.v8k3m-footer {
  background: var(--color-primary);
  padding: 50px 0 30px;
  margin-top: 60px;
}

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

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

.k2m9n-footer-desc {
  color: var(--color-text);
  line-height: 1.7;
  opacity: 0.9;
}

.w7k3n-footer-title {
  font-size: 18px;
  color: var(--color-accent);
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.p2k6n-footer-link,
.p2k6n-footer-text {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.9;
}

.p2k6n-footer-link:hover {
  color: var(--color-accent);
  opacity: 1;
}

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

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

.t9k4m-payment-logos img,
.p4k9m-provider-logos img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition);
}

.t9k4m-payment-logos img:hover,
.p4k9m-provider-logos img:hover {
  opacity: 1;
}

.x3k7m-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.t4k8x-legal-text {
  color: var(--color-text);
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Sticky Widget */
.k7m3n-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a2f5a 100%);
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideUp 0.5s ease;
}

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

.k7m3n-sticky-widget.hidden {
  display: none;
}

.p9k4x-widget-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

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

.w6k3m-widget-bonus {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
}

.m4k9n-widget-desc {
  font-size: 14px;
  color: var(--color-text);
  opacity: 0.9;
}

.c4k8n-btn-widget {
  background: var(--color-accent);
  color: var(--color-text-dark);
  padding: 12px 35px;
  font-size: 16px;
  margin-left: auto;
}

.c4k8n-btn-widget:hover {
  background: #d19a12;
}

.x8k2n-widget-close {
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 30px;
  cursor: pointer;
  padding: 0 10px;
  transition: var(--transition);
}

.x8k2n-widget-close:hover {
  color: var(--color-accent);
}

/* Unused WordPress Styles (for obfuscation) */
.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
}
.elementor-widget-container {
  position: relative;
}
.yoast-schema-graph {
  display: none;
}
.wp-site-blocks {
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .w7t3k-nav-desktop {
    display: none;
  }

  .n7m2k-burger {
    display: flex;
  }

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

  .j6m2n-hero-text {
    font-size: 16px;
  }

  .t6n9k-tournaments-grid,
  .m4n8k-games-grid {
    display: none;
  }

  .y7k3m-tournaments-slider-mobile {
    display: block;
  }

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

  .p9k2n-footer-top {
    grid-template-columns: 1fr;
  }
}

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

  .p7k3n-hero-slider {
    height: 400px;
  }

  .w8k3p-hero-title {
    font-size: 26px;
  }

  .j6m2n-hero-text {
    font-size: 14px;
  }

  .k9n3m-slider-prev,
  .k9n3m-slider-next {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .w9n2m-section-title {
    font-size: 28px;
  }

  .k4m7x-section-subtitle {
    font-size: 16px;
  }

  .v6n2k-bonuses-grid {
    grid-template-columns: 1fr;
  }

  .t4n7k-demo-frame {
    height: 400px;
  }

  .w5t8r-content-block {
    padding: 25px;
  }

  .q9z4k-h1 {
    font-size: 28px;
  }

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

  .c4k8n-btn-widget {
    margin-left: 0;
    width: 100%;
  }

  .n7j2x-text-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .s6p2m-auth-buttons {
    position: absolute;
    top: 15px;
    right: 60px;
  }

  .c4k8n-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .p7k3n-hero-slider {
    height: 300px;
  }

  .w8k3p-hero-title {
    font-size: 22px;
  }

  .j6m2n-hero-text {
    font-size: 13px;
  }

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