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

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

.header-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-logo img {
  display: block;
}

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.online-dot {
  width: 10px;
  height: 10px;
  background: #54b146;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.main-navigation a {
  color: #333;
  font-weight: 500;
  font-size: 15px;
}

.main-navigation a:hover {
  color: #0255c2;
}

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

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

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-login {
  background: #0255c2;
  color: #ffffff;
}

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

.btn-signup {
  background: #54b146;
  color: #ffffff;
}

.btn-signup:hover {
  background: #469938;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 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: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.active {
  max-height: 500px;
}

.mobile-nav-inner {
  padding: 20px;
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-block {
  width: 100%;
}

.mobile-menu {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #333;
  font-weight: 500;
}

.mobile-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  color: #0255c2;
  font-size: 14px;
}

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

.hero-slider {
  position: relative;
  height: 450px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s 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(135deg, rgba(2, 85, 194, 0.8) 0%, rgba(84, 177, 70, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

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

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-hero {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
}

.btn-login-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-login-outline:hover {
  background: #ffffff;
  color: #0255c2;
}

.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(255, 255, 255, 0.3);
  border: none;
  color: #ffffff;
  font-size: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.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: #ffffff;
  width: 30px;
  border-radius: 6px;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  background: #ffffff;
  margin-bottom: 30px;
  border-radius: 8px;
}

.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-item {
  color: #0255c2;
}

.breadcrumb-item.active {
  color: #666;
}

.breadcrumb-separator {
  color: #999;
}

/* Section Styles */
.box-shadow {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

.section-subtitle {
  font-size: 16px;
  color: #666;
}

/* Jackpots Section */
.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.jackpot-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.jackpot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.jackpot-card.mega {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-color: #ffa500;
}

.jackpot-card.major {
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
  border-color: #a9a9a9;
}

.jackpot-card.minor {
  background: linear-gradient(135deg, #cd7f32 0%, #e8a87c 100%);
  border-color: #b8860b;
}

.jackpot-card.mini {
  background: linear-gradient(135deg, #87ceeb 0%, #b0e0e6 100%);
  border-color: #4682b4;
}

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

.jackpot-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.jackpot-amount {
  font-size: 36px;
  font-weight: 700;
  color: #0255c2;
  margin-bottom: 5px;
}

.jackpot-currency {
  font-size: 20px;
  color: #666;
}

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

.btn-jackpot {
  background: #54b146;
  color: #ffffff;
  padding: 15px 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
}

.btn-jackpot:hover {
  background: #469938;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(84, 177, 70, 0.4);
}

/* Screenshots Section */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.screenshot-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.screenshot-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.screenshot-caption {
  padding: 15px;
  background: #f5f5f5;
  text-align: center;
  font-weight: 500;
  color: #333;
}

.mobile-slider {
  display: none;
}

/* Winners Section */
.winners-table-wrapper {
  overflow-x: auto;
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.winners-table thead {
  background: linear-gradient(135deg, #0255c2 0%, #54b146 100%);
  color: #ffffff;
}

.winners-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.winners-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.winners-table tbody tr {
  transition: all 0.3s ease;
}

.winners-table tbody tr:hover {
  background: #f9f9f9;
}

.winner-row.gold {
  background: linear-gradient(90deg, #ffd700 0%, #ffffff 100%);
}

.winner-row.silver {
  background: linear-gradient(90deg, #c0c0c0 0%, #ffffff 100%);
}

.winner-row.bronze {
  background: linear-gradient(90deg, #cd7f32 0%, #ffffff 100%);
}

.rank {
  font-weight: 600;
  color: #333;
}

.player {
  font-weight: 500;
  color: #0255c2;
}

.game {
  color: #666;
}

.amount {
  font-weight: 700;
  color: #54b146;
  font-size: 16px;
}

/* Content Block */
.content-block {
  line-height: 1.8;
}

.entry-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.author-box {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid #0255c2;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.author-details {
  flex: 1;
}

.author-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

.author-name a {
  color: #0255c2;
}

.author-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.entry-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 30px 0 15px 0;
}

.entry-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 12px 0;
}

.entry-content p {
  margin-bottom: 15px;
  color: #555;
}

.entry-content ul,
.entry-content ol {
  margin: 15px 0 15px 30px;
  color: #555;
}

.entry-content li {
  margin-bottom: 8px;
}

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

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

.entry-content table th {
  background: #f5f5f5;
  font-weight: 600;
}

.entry-content strong {
  color: #0255c2;
  font-weight: 600;
}

/* App Info Section */
.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.info-table .label {
  font-weight: 600;
  color: #333;
  width: 40%;
}

.info-table .value {
  color: #666;
}

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

.app-download h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #333;
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background: #0255c2;
  transform: translateY(-2px);
}

.btn-download.apk {
  background: #54b146;
}

.btn-download.apk:hover {
  background: #469938;
}

.apk-icon {
  font-size: 24px;
  margin-right: 10px;
}

.apk-text {
  font-weight: 600;
}

.app-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* Video Section */
.video-wrapper {
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-description {
  text-align: center;
  color: #666;
  font-size: 15px;
}

/* Wheel Section */
.wheel-game {
  max-width: 500px;
  margin: 0 auto;
}

.wheel-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto 30px auto;
}

#wheelCanvas {
  display: block;
  margin: 0 auto;
}

.spin-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0255c2 0%, #54b146 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border: 5px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.spin-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.spin-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

.result-content,
.lose-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
}

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

.result-title,
.lose-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.result-text,
.lose-text {
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
}

.btn-claim {
  background: #54b146;
  color: #ffffff;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
}

.btn-claim:hover {
  background: #469938;
}

.btn-secondary {
  background: #666;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.wheel-info {
  text-align: center;
  color: #666;
  font-size: 15px;
}

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

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.faq-item-header:hover {
  background: #f0f0f0;
}

.faq-item-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.faq-toggle {
  font-size: 28px;
  font-weight: 300;
  color: #0255c2;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

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

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

.faq-item-content > div {
  padding: 20px;
  background: #ffffff;
}

.faq-item-content p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Footer */
.site-footer {
  background: #ffffff;
  padding: 50px 0 20px 0;
  margin-top: 50px;
  border-top: 1px solid #e0e0e0;
}

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

.footer-column {
}

.footer-logo {
  margin-bottom: 15px;
}

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

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

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

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

.footer-menu a {
  color: #666;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

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

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

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

.footer-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

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

.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 {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

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

.footer-legal p {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.copyright {
  font-weight: 600;
  color: #666;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0255c2 0%, #54b146 100%);
  padding: 15px 20px;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: slideUp 0.5s ease;
}

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

.widget-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

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

.widget-text {
  flex: 1;
  color: #ffffff;
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}

.widget-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.widget-button {
  background: #ffffff;
  color: #0255c2;
  padding: 12px 35px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

body.menu-open {
  overflow: hidden;
}

/* WP Compatibility */
.site {
  min-height: 100vh;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}
