:root {
  --color-primary: #0255c2;
  --color-secondary: #54b146;
  --color-bg: #f5f5f5;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #e0e0e0;
  --font-main: "Roboto", sans-serif;
  --transition: all 0.3s ease;
}

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

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

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

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

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

.header-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.site-logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

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

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

.header-nav .nav-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.header-nav .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.header-nav .nav-menu a:hover {
  color: var(--color-primary);
}

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

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

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 20px;
  font-size: 14px;
}

.online-icon {
  font-size: 18px;
}

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

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

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

.btn-login:hover {
  background: #014a9e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 85, 194, 0.3);
}

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

.btn-signup:hover {
  background: #469938;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(84, 177, 70, 0.3);
}

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

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

.mobile-menu {
  display: none;
  background: var(--color-white);
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav ul li a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  display: block;
}

/* Hero Section */
.hero-section {
  background: url("/banner9.png") center / cover no-repeat;
  padding: 60px 0;
  margin-bottom: 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
}

.hero-banner {
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* чорний з 50% прозорістю */
  color: #fff; /* щоб текст був читабельним */
  padding: 20px;
  border-radius: 10px;  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-hero {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 15px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(84, 177, 70, 0.4);
}

.btn-hero:hover {
  background: #469938;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(84, 177, 70, 0.5);
}

/* Promo Card */
.promo-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.6s ease;
}

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

.promo-header {
  text-align: center;
  margin-bottom: 20px;
}

.promo-badge {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #469938 100%);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.promo-code-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.promo-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
  background: #f8f9fa;
}

.btn-copy {
  padding: 12px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-copy:hover {
  background: #014a9e;
}

.promo-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
}

.status-active {
  color: var(--color-secondary);
  font-weight: 600;
}

.status-time {
  color: var(--color-text-light);
  font-size: 14px;
}

.promo-bonus {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
}

.bonus-title {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 5px;
}

.bonus-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary);
}

.btn-activate {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
}

.btn-activate:hover {
  background: #469938;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(84, 177, 70, 0.3);
}

/* Content Wrapper */
.content-wrapper {
  margin: 40px 0;
}

.main-content {
  background: var(--color-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.main-content h2 {
  color: var(--color-text);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--color-primary);
}

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

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

.main-content ul,
.main-content ol {
  margin: 15px 0 15px 30px;
  line-height: 1.8;
}

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

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

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

.main-content table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

.main-content table tr:nth-child(even) {
  background: #f8f9fa;
}

/* Casino Info Table */
.casino-info-wrapper {
  margin-bottom: 40px;
}

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

.casino-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.casino-info-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--color-border);
}

.casino-info-table td:first-child {
  background: #f8f9fa;
  font-weight: 600;
  width: 35%;
}

.casino-info-table tr:last-child td {
  border-bottom: none;
}

/* Jackpots Section */
.jackpots-section {
  background: var(--color-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.jackpot-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.jackpot-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(2, 85, 194, 0.2);
}

.jackpot-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.jackpot-card h3 {
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 15px;
}

.jackpot-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-family: "Courier New", monospace;
}

.jackpot-card p {
  color: var(--color-text-light);
  font-size: 14px;
}

/* Pros and Cons */
.pros-cons-section {
  background: var(--color-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 25px;
}

.pros-column,
.cons-column {
  padding: 25px;
  border-radius: 10px;
}

.pros-column {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-left: 5px solid var(--color-secondary);
}

.cons-column {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-left: 5px solid #e53935;
}

.pros-column h3 {
  color: #2e7d32;
  margin-bottom: 20px;
}

.cons-column h3 {
  color: #c62828;
  margin-bottom: 20px;
}

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

.pros-column li,
.cons-column li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
}

.pros-column li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

.cons-column li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #e53935;
  font-weight: 700;
}

/* Screenshots Section */
.screenshots-section {
  background: var(--color-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.screenshots-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.screenshot-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.screenshot-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-item p {
  padding: 15px;
  background: #f8f9fa;
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--color-primary);
  width: 30px;
  border-radius: 6px;
}

/* Tournaments Section */
.tournaments-section {
  background: var(--color-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

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

.tournament-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  position: relative;
  transition: var(--transition);
  border: 2px solid transparent;
}

.tournament-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: 0 10px 25px rgba(84, 177, 70, 0.2);
}

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

.tournament-card h3 {
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 15px;
}

.tournament-card p {
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.tournament-timer {
  background: var(--color-white);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 15px;
}

.timer-label {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 5px;
}

.timer-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: "Courier New", monospace;
}

.tournament-prize {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: 20px;
}

.btn-tournament {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-tournament:hover {
  background: #014a9e;
  transform: translateY(-2px);
}

.slider-dots-tournaments {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot-tournament {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: var(--transition);
}

.dot-tournament.active {
  background: var(--color-primary);
  width: 30px;
  border-radius: 6px;
}

/* Video Review Section */
.video-review-section {
  background: var(--color-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.video-wrapper {
  margin-top: 25px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  width: 100%;
  height: 500px;
  border: none;
}

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

.author-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  margin-top: 25px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
}

.author-photo img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h3 {
  font-size: 26px;
  color: var(--color-text);
  margin-bottom: 5px;
}

.author-title {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 15px;
}

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

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

.social-link {
  padding: 10px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.social-link:hover {
  background: #014a9e;
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: var(--color-white);
  padding: 50px 0 30px;
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 30px;
}

.footer-logo img {
  height: 45px;
  width: auto;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 30px;
}

.footer-middle h4 {
  color: var(--color-text);
  font-size: 18px;
  margin-bottom: 15px;
}

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

.payment-logos img,
.provider-logos img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.payment-logos img:hover,
.provider-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
}

.legal-info p {
  color: var(--color-text-light);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.warning-text {
  color: #e53935;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.widget-content {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #469938 100%);
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 350px;
}

.widget-icon {
  font-size: 36px;
}

.widget-text {
  flex: 1;
}

.widget-title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 3px;
}

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

.widget-btn {
  background: var(--color-white);
  color: var(--color-secondary);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

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

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

  .burger-menu {
    display: flex;
  }

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

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

  .promo-card {
    max-width: 100%;
  }

  .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-photo {
    margin: 0 auto;
    max-width: 200px;
  }

  .author-social {
    justify-content: center;
  }

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

  .footer-nav ul {
    justify-content: center;
  }
}

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

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

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

  .screenshots-slider {
    grid-template-columns: 1fr;
  }

  .slider-dots {
    display: flex;
  }

  .screenshot-item:not(:first-child) {
    display: none;
  }

  .tournaments-slider {
    grid-template-columns: 1fr;
  }

  .slider-dots-tournaments {
    display: flex;
  }

  .tournament-card:not(:first-child) {
    display: none;
  }

  .video-wrapper iframe {
    height: 300px;
  }

  .sticky-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }

  .widget-content {
    max-width: 100%;
  }

  .main-content {
    padding: 25px 20px;
  }

  .jackpots-section,
  .pros-cons-section,
  .screenshots-section,
  .tournaments-section,
  .video-review-section,
  .author-section {
    padding: 25px 20px;
  }
}

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

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

  .hero-banner {
    padding: 40px 25px;
  }

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

  .promo-code-wrapper {
    flex-direction: column;
  }

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

  .widget-btn {
    width: 100%;
  }
}

/* Unused styles for uniqueness */
.k7m2p {
  display: none;
}
.w9n4q {
  visibility: hidden;
}
.x3r8t {
  opacity: 0;
}
.z5v1m {
  position: absolute;
  left: -9999px;
}
.elementor-section {
  margin: 0;
}
.wp-block-columns {
  display: block;
}
.yoast-schema-graph {
  display: none;
}
/* Тримати рядок інпут+кнопка в межах картки */
.promo-card { overflow: hidden; }

/* Ряд із кодом */
.promo-code-wrapper {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

/* Інпут не роздуває контейнер, може стискатись */
.promo-input {
  flex: 1 1 auto;
  min-width: 0;                 /* критично: дозволяє стискання у flex */
  padding: 12px 15px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 18px;              /* ≥16px, щоб iOS не зумив */
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
  background: #f8f9fa;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Кнопка фіксованої ширини, не тягнеться */
.btn-copy {
  flex: 0 0 auto;
  max-width: 160px;
  padding: 12px 18px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-copy:hover { background: #014a9e; }
.btn-copy.is-copied { background: var(--color-secondary); }

/* Мобільна колонка */
@media (max-width: 576px) {
  .promo-code-wrapper { flex-direction: column; }
  .btn-copy { width: 100%; max-width: none; }
}
/* Глобальний адаптивний гуттер */
:root {
  --gutter: clamp(16px, 4vw, 32px);
  --maxw: 1200px; /* така ж, як у .container */
}

/* Центруємо та додаємо горизонтальні відступи секціям поза .container */
#main-content > .casino-info-wrapper,
#main-content > .jackpots-section,
#main-content > .pros-cons-section,
#main-content > .screenshots-section,
#main-content > .tournaments-section,
#main-content > .video-review-section {
  max-width: var(--maxw);
  margin-inline: auto;              /* центр */
  padding-inline: var(--gutter);    /* відступи по боках */
}

/* Герой-блок уже в .container, але додамо внутрішній "повітря" для картки справа */
.hero-content {
  gap: 40px; /* вже є; залишаємо */
}
.promo-card {
  margin-inline: 0;                 /* не виходить за межі сітки */
}

/* На дуже вузьких екранах збільшуємо бокові відступи контенту в .container */
@media (max-width: 576px) {
  .container { padding-inline: 24px; }         /* було 20px */
  /* щоб картки не прилипали до краю */
  #main-content > .casino-info-wrapper,
  #main-content > .jackpots-section,
  #main-content > .pros-cons-section,
  #main-content > .screenshots-section,
  #main-content > .tournaments-section,
  #main-content > .video-review-section {
    padding-inline: 20px;
  }
}
