:root {
  --color-header: #222723;
  --color-footer: #222723;
  --color-btn-login: #02504b;
  --color-btn-signup: #f9c719;
  --color-bg: #0e2f2b;
  --color-text-light: #e8f0ef;
  --color-text-dark: #1a1a1a;
  --color-accent: #02504b;
  --color-border: #3a4a47;
}

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

body {
  font-family: "Roboto", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans",
    "Helvetica Neue", "Arial", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.header {
  background: linear-gradient(135deg, var(--color-header) 0%, #1a2220 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.online-counter {
  background: rgba(2, 80, 75, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid var(--color-accent);
}

.online-counter .count {
  color: var(--color-btn-signup);
  font-weight: 700;
  margin-left: 5px;
}

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

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

.nav-menu li a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu li a:hover {
  color: var(--color-btn-signup);
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-btn-signup);
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

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

.btn {
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-login:hover {
  background: transparent;
  color: var(--color-btn-login);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 80, 75, 0.4);
}

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

.btn-signup:hover {
  background: transparent;
  color: var(--color-btn-signup);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 199, 25, 0.4);
}

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

.burger span {
  width: 30px;
  height: 3px;
  background: var(--color-text-light);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 47, 43, 0.85) 0%, rgba(2, 80, 75, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
}

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

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--color-btn-signup);
  font-weight: 500;
  animation: fadeInUp 1s ease;
}

.hero-cta {
  display: inline-block;
  padding: 18px 45px;
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
  text-decoration: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(249, 199, 25, 0.5);
}

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

.breadcrumbs-wrapper {
  background: rgba(34, 39, 35, 0.5);
  padding: 15px 0;
  margin-bottom: 30px;
}

.breadcrumbs {
  display: flex;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
}

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

.breadcrumbs li a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs li a:hover {
  color: var(--color-btn-signup);
}

.breadcrumbs li::after {
  content: "›";
  color: var(--color-text-light);
  opacity: 0.6;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.main-content {
  padding: 40px 0;
}

.content-wrapper {
  background: rgba(34, 39, 35, 0.4);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-text-light);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-btn-login), var(--color-btn-signup));
  border-radius: 2px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 25px;
  color: var(--color-text-light);
  position: relative;
  padding-left: 20px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 30px;
  background: var(--color-btn-signup);
  border-radius: 3px;
}

.casino-info-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.casino-info-table th {
  background: var(--color-accent);
  color: var(--color-text-light);
  font-weight: 600;
  width: 35%;
}

.casino-info-table td {
  background: rgba(34, 39, 35, 0.6);
  color: var(--color-text-light);
}

.casino-info-table tr:hover td {
  background: rgba(2, 80, 75, 0.3);
}

.screenshots-section {
  margin: 40px 0;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.screenshot-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.screenshot-item:hover {
  transform: translateY(-10px);
}

.screenshot-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.tournaments-section {
  margin: 40px 0;
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.tournament-card {
  background: linear-gradient(135deg, rgba(34, 39, 35, 0.8) 0%, rgba(2, 80, 75, 0.4) 100%);
  border-radius: 12px;
  padding: 25px;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tournament-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(249, 199, 25, 0.1) 0%, transparent 70%);
  transition: all 0.5s ease;
}

.tournament-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-btn-signup);
  box-shadow: 0 10px 30px rgba(249, 199, 25, 0.3);
}

.tournament-card:hover::before {
  top: -25%;
  right: -25%;
}

.tournament-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-btn-signup);
  position: relative;
  z-index: 1;
}

.tournament-description {
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--color-text-light);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.tournament-timer {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  padding: 15px;
  background: rgba(2, 80, 75, 0.3);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.timer-block {
  text-align: center;
}

.timer-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-btn-signup);
  display: block;
}

.timer-label {
  font-size: 12px;
  color: var(--color-text-light);
  opacity: 0.8;
}

.tournament-prize {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-btn-signup);
  text-align: center;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.bonuses-section {
  margin: 40px 0;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(249, 199, 25, 0.15) 0%, rgba(2, 80, 75, 0.3) 100%);
  border-radius: 12px;
  padding: 30px;
  border: 2px solid var(--color-btn-signup);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card::after {
  content: "🎁";
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 100px;
  opacity: 0.1;
  transform: rotate(15deg);
}

.bonus-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(249, 199, 25, 0.4);
}

.bonus-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-btn-signup);
  position: relative;
  z-index: 1;
}

.bonus-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-light);
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.bonus-description {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.bonus-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.bonus-btn:hover {
  background: var(--color-btn-login);
  color: var(--color-text-light);
  transform: scale(1.05);
}

.games-section {
  margin: 40px 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.game-card {
  background: rgba(34, 39, 35, 0.7);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  border-color: var(--color-btn-signup);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(249, 199, 25, 0.3);
}

.game-logo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.game-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.game-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-btn-login);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.game-btn:hover {
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
}

.content-text {
  margin: 40px 0;
  line-height: 1.6;
}

.content-text h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: var(--color-text-light);
}

.content-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 25px 0 12px;
  color: var(--color-text-light);
}

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

.content-text ul,
.content-text ol {
  margin: 15px 0 15px 30px;
  color: var(--color-text-light);
}

.content-text li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.content-text a {
  color: var(--color-btn-signup);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.content-text a:hover {
  border-bottom-color: var(--color-btn-signup);
}

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

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

.content-text table th {
  background: var(--color-accent);
  color: var(--color-text-light);
  font-weight: 600;
}

.content-text table td {
  background: rgba(34, 39, 35, 0.5);
  color: var(--color-text-light);
}

.reviews-section {
  margin: 40px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.review-card {
  background: rgba(34, 39, 35, 0.7);
  border-radius: 12px;
  padding: 25px;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--color-btn-signup);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-btn-signup);
}

.review-author {
  flex: 1;
}

.review-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 5px;
}

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

.review-text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

.review-form {
  background: rgba(2, 80, 75, 0.2);
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  border: 2px solid var(--color-accent);
}

.review-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text-light);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  background: rgba(34, 39, 35, 0.6);
  color: var(--color-text-light);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-btn-signup);
}

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

.form-submit {
  padding: 12px 40px;
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--color-btn-login);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 199, 25, 0.4);
}

.form-success {
  display: none;
  padding: 15px;
  background: rgba(2, 80, 75, 0.5);
  border: 2px solid var(--color-btn-login);
  border-radius: 8px;
  color: var(--color-text-light);
  margin-top: 15px;
  text-align: center;
}

.footer {
  background: linear-gradient(135deg, var(--color-footer) 0%, #1a2220 100%);
  padding: 50px 0 30px;
  margin-top: 60px;
  border-top: 3px solid var(--color-btn-signup);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-btn-signup);
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
}

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

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

.footer-menu li a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-menu li a:hover {
  color: var(--color-btn-signup);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.payment-logo {
  width: 60px;
  height: 40px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 5px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.provider-logo {
  width: 100%;
  height: 40px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  text-align: center;
}

.footer-legal {
  font-size: 13px;
  color: var(--color-text-light);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--color-text-light);
  opacity: 0.7;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-btn-signup) 0%, #e0b015 100%);
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: slideUp 0.5s ease;
}

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

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

.widget-btn {
  padding: 12px 35px;
  background: var(--color-btn-login);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.widget-btn:hover {
  background: var(--color-header);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.widget-close {
  background: transparent;
  border: none;
  color: var(--color-text-dark);
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  transition: transform 0.3s ease;
}

.widget-close:hover {
  transform: rotate(90deg);
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-header);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

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

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

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

  .screenshots-grid,
  .tournaments-grid,
  .bonuses-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

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

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

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

  .content-wrapper {
    padding: 25px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sticky-widget {
    flex-direction: column;
    gap: 10px;
    padding: 12px 15px;
  }

  .widget-text {
    font-size: 14px;
    text-align: center;
  }
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2, 80, 75, 0.8);
  color: var(--color-text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.elementor-widget-container {
  display: block;
}

.wp-block-group {
  margin: 20px 0;
}

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

.x7g2k9p {
  padding: 15px;
}
.m4n8q1r {
  margin-bottom: 20px;
}
.b5t3w7y {
  border-radius: 8px;
}
.f9h2j6k {
  font-size: 16px;
}
.c1d8e4f {
  color: #e8f0ef;
}
.a3b7c2d {
  align-items: center;
}
.j5k9l3m {
  justify-content: space-between;
}
.w2x6y1z {
  width: 100%;
}
.h4i8j2k {
  height: auto;
}
.p7q3r9s {
  position: relative;
}
.t1u5v9w {
  text-align: center;
}
.d6e2f8g {
  display: flex;
}
.o4p8q2r {
  opacity: 0.8;
}
.z3a7b1c {
  z-index: 10;
}
/* ===== quick mobile fixes from screenshot ===== */

/* типографіка compact */
h1.main-title { font-size: clamp(22px, 5.5vw, 28px); line-height: 1.25; }
.hero-title { font-size: clamp(22px, 6vw, 30px); }
.hero-subtitle { font-size: clamp(13px, 3.6vw, 18px); }

/* контейнер трохи ширше на малих */
.container { padding-inline: clamp(14px, 4vw, 20px); }

/* HEADER */
@media (max-width: 992px) {
  /* показуємо тільки один блок кнопок (на скріні їх два) */
  .header-buttons { gap: 8px; }
  .header-buttons:first-of-type { display: none; }

  .header { padding: 10px 0; }
  .logo img { height: 40px; }

  .header-nav { position: relative; }
  .burger { display: flex; margin-left: auto; }
  .nav-menu {
    display: none;
    position: fixed;
    inset: 56px 0 0 0; /* full-screen меню під шапкою */
    background: rgba(26,34,32,0.98);
    backdrop-filter: blur(6px);
    flex-direction: column;
    padding: 18px;
    gap: 12px;
    z-index: 1100;
  }
  .nav-menu.active { display: flex; }
  .nav-menu li a { padding: 10px 2px; font-size: 16px; }
}

/* HERO: компактніший та без завалювань */
.hero-section { min-height: clamp(320px, 58vh, 500px); margin-bottom: 24px; }
.hero-content { padding: clamp(20px, 6vw, 40px) 16px; }
.hero-cta {
  display: inline-flex; align-items: center; justify-content: center;
  width: min(100%, 420px); min-height: 44px; font-size: 16px; padding: 12px 20px;
}

/* breadcrumbs компактніше */
.breadcrumbs-wrapper { padding: 8px 0; }
.breadcrumbs li { font-size: 13px; }

/* CARD/CONTENT */
.content-wrapper { padding: clamp(16px, 4.5vw, 28px); }
.section-title { font-size: clamp(18px, 4.6vw, 22px); margin: 28px 0 18px; }

/* таблиця — всередині скрол-контейнера, щоб не ламати макет */
.casino-info-table { display: block; width: max-content; min-width: 100%; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-responsive::-webkit-scrollbar { height: 8px; }
.table-responsive::-webkit-scrollbar-thumb { background: #2a3b38; border-radius: 8px; }

/* гріди -> авто-колонки */
.screenshots-grid,
.tournaments-grid,
.bonuses-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 16px;
}
.games-grid { grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 12px; }

/* менше агресивних hover на мобілці */
@media (hover: none) {
  .screenshot-item:hover,
  .tournament-card:hover,
  .bonus-card:hover,
  .game-card:hover,
  .review-card:hover { transform: none; box-shadow: none; }
}

/* кнопки -> нормальний тап-таргет */
.btn, .btn-login, .btn-signup, .game-btn, .bonus-btn, .form-submit, .widget-btn {
  min-height: 44px; line-height: 1.2;
}

/* FOOTER компактніший на мобілці */
.footer { padding: 28px 0 20px; margin-top: 32px; }
.footer-content { grid-template-columns: 1fr; gap: 20px; }

/* STICKY widget: не перекриває контент, safe area */
:root { --sticky-h: 72px; } /* реальна висота банера (у тебе ~70–76px) */
body.has-sticky { padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom)); }
.sticky-widget {
  min-height: var(--sticky-h);
  padding: 12px 16px;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 1200; /* вище контенту та меню */
}
.widget-text { font-size: clamp(14px, 3.8vw, 16px); }
.widget-btn { padding: 10px 18px; font-size: 14px; }

/* дрібні */
@media (max-width: 380px) {
  .online-counter { display: none; } /* прибираємо дрібний лічильник, він з’їдає місце */
  .btn { padding: 10px 12px; font-size: 13px; }
}

