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

:root {
  --color-primary: #02504b;
  --color-secondary: #f9c719;
  --color-bg: #0e2f2b;
  --color-header: #222723;
  --color-text: #e8e8e8;
  --color-text-dark: #1a1a1a;
  --transition: all 0.3s ease;
}

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);
  line-height: 1.6;
  overflow-x: hidden;
}

.wp-site-blocks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.container-xl {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

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

.navbar {
  padding: 0;
}

.navbar-brand {
  margin-right: auto;
}

.site-logo {
  max-width: 180px;
  height: auto;
  margin-right: 10px;
}

.header-actions {
  gap: 15px;
}

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

.online-icon {
  animation: pulse 2s infinite;
}

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

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

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

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

.btn-login:hover {
  background-color: #03635d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 80, 75, 0.4);
}

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

.btn-signup:hover {
  background-color: #ffd633;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 199, 25, 0.4);
}

.navbar-toggler {
  border-color: var(--color-secondary);
  padding: 8px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(249, 199, 25, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
  gap: 20px;
}

.nav-link {
  color: var(--color-text) !important;
  font-weight: 400;
  transition: var(--transition);
  padding: 8px 0 !important;
}

.nav-link:hover {
  color: var(--color-secondary) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 47, 43, 0.9) 0%, rgba(2, 80, 75, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

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

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--color-secondary);
}

.btn-hero {
  background-color: var(--color-secondary);
  color: var(--color-text-dark);
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-hero:hover {
  background-color: #ffd633;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(249, 199, 25, 0.5);
}

.hero-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.hero-prev,
.hero-next {
  background: rgba(249, 199, 25, 0.8);
  border: none;
  color: var(--color-text-dark);
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--color-secondary);
  transform: scale(1.1);
}

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

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

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

/* Main Content */
.wp-site-content {
  flex: 1;
}

.entry-content {
  padding: 60px 0;
}

.entry-header {
  text-align: center;
  margin-bottom: 50px;
}

.entry-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.entry-body h2 {
  color: var(--color-secondary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.entry-body h3 {
  color: var(--color-text);
  margin-top: 30px;
  margin-bottom: 15px;
}

.entry-body p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.entry-body ul,
.entry-body ol {
  margin: 20px 0;
  padding-left: 30px;
}

.entry-body li {
  margin-bottom: 10px;
}

.entry-body table {
  width: 100%;
  margin: 30px auto;
  border-collapse: collapse;
  background: rgba(34, 39, 35, 0.5);
  border-radius: 8px;
  overflow: hidden;
}

.entry-body th,
.entry-body td {
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(2, 80, 75, 0.3);
}

.entry-body th {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
}

.entry-body tr:hover {
  background-color: rgba(2, 80, 75, 0.1);
}

/* Advantages Section */
.xj8k2-advantages {
  margin: 60px 0;
}

.row-flex {
  display: flex;
}

.wrap-flex {
  flex-wrap: wrap;
}

.gap2x {
  gap: 20px;
}

.mb3x {
  margin-bottom: 30px;
}

.mb4x {
  margin-bottom: 60px;
}

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

.adv-card {
  background: linear-gradient(135deg, rgba(34, 39, 35, 0.8) 0%, rgba(2, 80, 75, 0.3) 100%);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(2, 80, 75, 0.3);
  min-width: 280px;
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(2, 80, 75, 0.4);
  border-color: var(--color-secondary);
}

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

.adv-card h3 {
  color: var(--color-secondary);
  margin-bottom: 15px;
  font-size: 20px;
}

.adv-card p {
  color: var(--color-text);
  line-height: 1.6;
}

/* Jackpots Section */
.qw9p3-jackpots {
  margin: 60px 0;
}

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

.jackpot-card {
  background: linear-gradient(135deg, #1a1f1c 0%, #02504b 100%);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  min-width: 300px;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 0 30px rgba(249, 199, 25, 0.3);
  transition: var(--transition);
}

.jackpot-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(249, 199, 25, 0.5);
}

.jackpot-label {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-weight: 600;
}

.jackpot-amount {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 15px 0;
  text-shadow: 0 0 10px rgba(249, 199, 25, 0.5);
}

.jackpot-game {
  font-size: 16px;
  color: var(--color-text);
  margin-top: 10px;
}

/* Screenshots Section */
.lm5t7-screenshots {
  margin: 60px 0;
}

.screenshots-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.screenshots-track {
  display: flex;
  transition: transform 0.5s ease;
}

.screenshot-item {
  min-width: 100%;
  padding: 0 10px;
}

.screenshot-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.screenshot-caption {
  text-align: center;
  margin-top: 15px;
  color: var(--color-secondary);
  font-weight: 500;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(249, 199, 25, 0.9);
  border: none;
  color: var(--color-text-dark);
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.slider-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Video Section */
.yt8n4-video {
  margin: 60px 0;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
  display: block;
}

/* Games Section */
.zx6r2-games {
  margin: 60px 0;
}

.games-slider {
  position: relative;
  overflow: hidden;
}

.games-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.game-card {
  min-width: 250px;
  background: rgba(34, 39, 35, 0.8);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(2, 80, 75, 0.3);
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: 0 8px 25px rgba(2, 80, 75, 0.4);
}

.game-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

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

.btn-play {
  background-color: var(--color-primary);
  color: white;
  padding: 10px 30px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-play:hover {
  background-color: #03635d;
  transform: scale(1.05);
}

/* Author Section */
.kp4v9-author {
  margin: 60px 0;
}

.author-card {
  display: flex;
  gap: 30px;
  background: rgba(34, 39, 35, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(2, 80, 75, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

.author-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--color-secondary);
}

.author-info {
  flex: 1;
}

.author-info h3 {
  color: var(--color-secondary);
  margin-bottom: 15px;
  font-size: 24px;
}

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

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

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(2, 80, 75, 0.2);
  border-radius: 6px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-primary);
  color: white;
}

/* Footer */
.site-footer {
  background-color: var(--color-header);
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 150px;
}

.footer-desc {
  color: rgba(232, 232, 232, 0.8);
  line-height: 1.6;
}

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

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

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

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

.footer-menu a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.footer-contact {
  color: var(--color-text);
  margin-bottom: 10px;
}

.footer-payments,
.footer-providers {
  margin: 40px 0;
  text-align: center;
}

.payments-title,
.providers-title {
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-size: 18px;
}

.payment-logos,
.provider-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-logos img,
.provider-logos img {
  opacity: 0.8;
  transition: var(--transition);
}

.payment-logos img:hover,
.provider-logos img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(2, 80, 75, 0.3);
  padding-top: 30px;
  text-align: center;
}

.copyright p {
  color: rgba(232, 232, 232, 0.7);
  margin-bottom: 10px;
}

.legal-text {
  font-size: 14px;
  color: var(--color-secondary);
}

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

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

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

.widget-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

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

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

.bonus-text {
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.widget-btn {
  background-color: var(--color-secondary);
  color: var(--color-text-dark);
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

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

.widget-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

/* Unused styles for uniqueness */
.zq8m3-unused {
  display: none;
}

.kl7p2-decoy {
  visibility: hidden;
}

.wr5n9-fake {
  opacity: 0;
}

.elementor-section {
  display: none;
}

.wp-block-columns {
  display: none;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.adv-card {
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.adv-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Адаптивність */
@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

