/* Reset and Base Styles */
* {
  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: #0e2f2b;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.main-container {
  flex: 1;
}

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

.header-inner {
  gap: 20px;
}

.site-logo img {
  max-height: 50px;
  width: auto;
}

.main-navigation .nav-menu {
  gap: 25px;
  margin-left: 30px;
}

.main-navigation .menu-item a {
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
}

.main-navigation .menu-item a:hover {
  color: #f9c719;
}

.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;
  }
}

/* Buttons */
.btn {
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-login {
  background-color: #02504b;
  color: #fff;
}

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

.btn-signup {
  background-color: #f9c719;
  color: #222723;
}

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

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

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

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #f9c719;
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

.mobile-navigation {
  display: none;
  background-color: #1a1f1c;
  padding: 20px;
  margin-top: 15px;
}

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

.mobile-menu {
  margin: 0;
}

.mobile-menu .menu-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .menu-item a {
  color: #e8e8e8;
  text-decoration: none;
  font-size: 16px;
}

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

.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  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(to right, rgba(14, 47, 43, 0.9), rgba(14, 47, 43, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

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

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  color: #f9c719;
}

.btn-hero {
  background-color: #f9c719;
  color: #222723;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
}

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

.hero-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
}

.hero-prev,
.hero-next {
  background: rgba(249, 199, 25, 0.8);
  border: none;
  color: #222723;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
  background: #f9c719;
  transform: scale(1.1);
}

.hero-dots {
  display: flex;
  gap: 10px;
}

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

.hero-dot.active {
  background: #f9c719;
  width: 30px;
  border-radius: 6px;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
  background-color: rgba(34, 39, 35, 0.5);
  padding: 12px 0;
  margin-bottom: 30px;
}

.breadcrumb-list {
  gap: 8px;
  align-items: center;
}

.breadcrumb-item a {
  color: #02504b;
  text-decoration: none;
  font-size: 14px;
}

.breadcrumb-item a:hover {
  color: #f9c719;
}

.breadcrumb-item.active {
  color: #e8e8e8;
  font-size: 14px;
}

.breadcrumb-separator {
  color: #666;
}

/* Section Styles */
.section-header {
  margin-bottom: 30px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #f9c719;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #b8b8b8;
}

/* Jackpots Section */
.jackpot-card {
  background: linear-gradient(135deg, #1a3a36 0%, #0e2f2b 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 2px solid #02504b;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.jackpot-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(249, 199, 25, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.jackpot-card:hover {
  transform: translateY(-5px);
  border-color: #f9c719;
  box-shadow: 0 10px 30px rgba(249, 199, 25, 0.3);
}

.jackpot-label {
  font-size: 18px;
  font-weight: 600;
  color: #f9c719;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.jackpot-amount {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.jackpot-info {
  font-size: 14px;
  color: #b8b8b8;
  position: relative;
  z-index: 1;
}

/* Screenshots Section */
.screenshot-card {
  border-radius: 10px;
  overflow: hidden;
  background-color: #1a3a36;
  transition: all 0.3s ease;
}

.screenshot-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.screenshot-caption {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: #f9c719;
}

/* Bonuses Section */
.bonus-card {
  background: linear-gradient(135deg, #222723 0%, #1a1f1c 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 2px solid #02504b;
  transition: all 0.3s ease;
  height: 100%;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: #f9c719;
  box-shadow: 0 10px 30px rgba(2, 80, 75, 0.4);
}

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

.bonus-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.bonus-value {
  font-size: 28px;
  font-weight: 900;
  color: #f9c719;
  margin-bottom: 10px;
}

.bonus-extra {
  font-size: 16px;
  color: #02504b;
  font-weight: 600;
  margin-bottom: 15px;
}

.bonus-description {
  font-size: 14px;
  color: #b8b8b8;
  margin-bottom: 20px;
}

.btn-bonus-claim {
  background-color: #02504b;
  color: #fff;
  padding: 12px 30px;
}

.btn-bonus-claim:hover {
  background-color: #03635d;
}

/* Games Section */
.game-card {
  background-color: #1a3a36;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.game-image {
  position: relative;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.game-info {
  padding: 15px;
  text-align: center;
}

.game-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.game-provider {
  font-size: 12px;
  color: #b8b8b8;
  margin-bottom: 15px;
}

.btn-game-play {
  background-color: #f9c719;
  color: #222723;
  padding: 8px 20px;
  font-size: 14px;
}

.btn-game-play:hover {
  background-color: #ffd740;
}

/* Wheel Section */
.wheel-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.wheel-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

#wheelCanvas {
  max-width: 100%;
  height: auto;
}

.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #f9c719;
  z-index: 10;
}

.btn-spin {
  background-color: #f9c719;
  color: #222723;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
}

.btn-spin:hover {
  background-color: #ffd740;
}

.btn-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wheel-result {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.result-content {
  background: linear-gradient(135deg, #1a3a36 0%, #0e2f2b 100%);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  border: 3px solid #f9c719;
}

.result-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.result-title {
  font-size: 36px;
  font-weight: 900;
  color: #f9c719;
  margin-bottom: 15px;
}

.result-text {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}

.btn-claim-bonus {
  background-color: #f9c719;
  color: #222723;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
  margin-right: 10px;
}

.btn-try-again {
  background-color: #02504b;
  color: #fff;
  padding: 15px 40px;
  font-size: 18px;
}

/* Content Block */
.content-block {
  background-color: rgba(34, 39, 35, 0.5);
  border-radius: 15px;
  margin-bottom: 40px;
}

.text-wrapper {
  padding: 30px;
}

.main-h1 {
  font-size: 42px;
  font-weight: 900;
  color: #f9c719;
  margin-bottom: 30px;
}

.user-content {
  font-size: 16px;
  line-height: 1.8;
  color: #e8e8e8;
}

.user-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #f9c719;
  margin-top: 30px;
  margin-bottom: 20px;
}

.user-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-top: 25px;
  margin-bottom: 15px;
}

.user-content p {
  margin-bottom: 15px;
}

.user-content ul,
.user-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

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

.user-content a {
  color: #02504b;
  text-decoration: underline;
}

.user-content a:hover {
  color: #f9c719;
}

.user-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  background-color: rgba(26, 58, 54, 0.5);
}

.user-content table th,
.user-content table td {
  padding: 12px;
  border: 1px solid #02504b;
  text-align: left;
}

.user-content table th {
  background-color: #222723;
  font-weight: 700;
  color: #f9c719;
}

.user-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.feature-card {
  background: linear-gradient(135deg, #1a3a36 0%, #0e2f2b 100%);
  border-radius: 10px;
  border: 2px solid #02504b;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #f9c719;
  transform: translateY(-3px);
}

.feature-card h3 {
  color: #f9c719;
  font-size: 20px;
  margin-bottom: 10px;
}

.info-section,
.payment-info,
.games-info {
  background-color: rgba(34, 39, 35, 0.5);
  padding: 30px;
  border-radius: 15px;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 10px 0;
  font-size: 16px;
}

.author-bio {
  background-color: rgba(26, 58, 54, 0.5);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #f9c719;
}

/* FAQ Section */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: rgba(34, 39, 35, 0.5);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(2, 80, 75, 0.2);
}

.faq-icon {
  font-size: 24px;
  color: #f9c719;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: #e8e8e8;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  background-color: #222723;
  padding: 50px 0 20px;
  margin-top: 60px;
}

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

.footer-logo img {
  max-height: 50px;
}

.footer-description {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #f9c719;
  margin-bottom: 20px;
}

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

.footer-menu a {
  color: #e8e8e8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #f9c719;
}

.footer-contacts li {
  margin-bottom: 10px;
  color: #e8e8e8;
  font-size: 14px;
}

.footer-middle {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.payment-logos img,
.provider-logos img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

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

.footer-bottom {
  padding-top: 30px;
}

.copyright p {
  color: #b8b8b8;
  font-size: 14px;
  margin-bottom: 10px;
}

.legal-text {
  color: #f9c719;
  font-weight: 600;
}

/* Fixed Widget */
.fixed-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f9c719 0%, #ffd740 100%);
  border-radius: 50px;
  padding: 15px 25px;
  box-shadow: 0 5px 20px rgba(249, 199, 25, 0.5);
  z-index: 9998;
  animation: slideInRight 0.5s ease;
}

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

.widget-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.widget-title {
  font-size: 18px;
  font-weight: 900;
  color: #222723;
}

.widget-subtitle {
  font-size: 14px;
  color: #02504b;
  font-weight: 600;
}

.widget-button {
  background-color: #02504b;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

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

.widget-close {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #222723;
  color: #fff;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* Sliders */
.screenshots-slider,
.bonuses-slider,
.games-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding-bottom: 15px;
  -webkit-overflow-scrolling: touch;
}

.screenshot-slide,
.bonus-slide,
.game-slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
}

/* Unused Styles for Uniqueness */
.wp-block-group {
  display: none;
}

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

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

.wp-admin-bar-placeholder {
  display: none;
}

/* Additional Unused Classes */
.kz8d3-main__sect {
  /* Used in content */
}

.row-g4x {
  /* Custom grid row */
}

.h2-title {
  font-size: 32px;
  font-weight: 700;
  color: #f9c719;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.p-4 {
  padding: 1.5rem;
}

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

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

  .burger-menu {
    display: flex;
  }

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

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

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

  .main-h1 {
    font-size: 32px;
  }

  .fixed-widget {
    bottom: 10px;
    right: 10px;
    padding: 12px 20px;
  }

  .widget-title {
    font-size: 16px;
  }

  .widget-subtitle {
    font-size: 12px;
  }

  .widget-button {
    padding: 8px 20px;
    font-size: 14px;
  }

  .result-content {
    padding: 30px;
    margin: 20px;
  }

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

  .result-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 400px;
  }

  .jackpot-amount {
    font-size: 24px;
  }

  .bonus-value {
    font-size: 22px;
  }
}
