:root {
  --color-bg: #323234;
  --color-header: #000000;
  --color-login: #00fbc8;
  --color-signup: #ff2e09;
  --color-text: #ffffff;
  --color-text-secondary: #b8b8b8;
  --color-border: #444444;
  --color-card-bg: #2a2a2c;
  --color-hover: #3a3a3c;
}

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

body {
  font-family: "PT Sans", sans-serif;
  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;
  width: 100%;
}

/* Header */
.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);
}

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

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

.logo img {
  display: block;
  max-width: 180px;
  height: auto;
}

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

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

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

.header-nav {
  display: flex;
  justify-content: center;
}

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

.nav-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
  font-size: 16px;
}

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

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

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.online-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

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

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

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

.btn-login:hover {
  background-color: var(--color-login);
  color: var(--color-header);
}

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

.btn-signup:hover {
  background-color: transparent;
  color: var(--color-signup);
}

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

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
}

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

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

.btn-hero {
  background: linear-gradient(135deg, var(--color-signup), #ff5722);
  color: var(--color-text);
  padding: 15px 40px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 46, 9, 0.4);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 46, 9, 0.6);
}

.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-color: rgba(0, 0, 0, 0.5);
  color: var(--color-text);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
  background-color: rgba(0, 251, 200, 0.8);
}

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

/* Main Content */
.main-content {
  flex: 1;
  padding: 40px 0;
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-login);
}

.section-header p {
  font-size: 18px;
  color: var(--color-text-secondary);
}

/* Jackpots Section */
.jackpots-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a1a1c, #2a2a2c);
  border-radius: 15px;
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.jackpot-card {
  background-color: var(--color-card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid var(--color-border);
}

.jackpot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 251, 200, 0.2);
  border-color: var(--color-login);
}

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

.jackpot-name {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-text);
}

.jackpot-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-login);
}

.jackpot-amount .currency {
  font-size: 20px;
}

/* Mirrors Section */
.mirrors-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-card-bg);
  border-radius: 15px;
}

.table-responsive {
  overflow-x: auto;
}

.mirrors-table,
.winners-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.mirrors-table th,
.winners-table th {
  background-color: var(--color-header);
  color: var(--color-text);
  padding: 15px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--color-border);
}

.mirrors-table td,
.winners-table td {
  padding: 15px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.mirrors-table tr:hover,
.winners-table tr:hover {
  background-color: var(--color-hover);
}

.status-active {
  color: #00ff00;
  font-weight: 700;
}

.speed-fast {
  color: var(--color-login);
  font-weight: 700;
}

.speed-medium {
  color: #ffa500;
  font-weight: 700;
}

.btn-table {
  background-color: var(--color-signup);
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s;
  display: inline-block;
}

.btn-table:hover {
  background-color: #ff5722;
}

/* Winners Section */
.winners-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #2a2a2c, #1a1a1c);
  border-radius: 15px;
}

/* App Info Section */
.app-info-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-card-bg);
  border-radius: 15px;
}

.app-info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.app-info-table td {
  padding: 12px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.app-info-table td:first-child {
  background-color: var(--color-hover);
  width: 40%;
}

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

.app-download-buttons h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--color-login);
}

.download-btn {
  display: block;
  margin: 15px auto;
  max-width: 200px;
  transition: transform 0.3s;
}

.download-btn:hover {
  transform: scale(1.05);
}

.download-btn img {
  width: 100%;
  height: auto;
}

.apk-btn {
  background-color: var(--color-signup);
  color: var(--color-text);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: background-color 0.3s;
}

.apk-btn:hover {
  background-color: #ff5722;
}

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

/* Content Block */
.content-block {
  margin-bottom: 60px;
  padding: 40px;
  background-color: var(--color-card-bg);
  border-radius: 15px;
  line-height: 1.8;
}

.content-block h1 {
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--color-login);
  font-weight: 700;
}

.content-block h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--color-text);
  font-weight: 700;
}

.content-block h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-text);
  font-weight: 700;
}

.content-block p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--color-text);
}

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

.content-block li {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--color-text);
}

.content-block a {
  color: var(--color-login);
  text-decoration: none;
  transition: color 0.3s;
}

.content-block a:hover {
  color: var(--color-signup);
  text-decoration: underline;
}

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

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

.content-block table th {
  background-color: var(--color-hover);
  font-weight: 700;
}

.intro-section,
.app-download-section,
.features-section,
.requirements-section,
.bonus-section,
.games-section,
.payment-section,
.support-section,
.author-section {
  margin-bottom: 40px;
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step-item {
  background-color: var(--color-hover);
  padding: 25px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  align-items: start;
  transition: transform 0.3s;
}

.step-item:hover {
  transform: translateY(-5px);
}

.step-number {
  background-color: var(--color-login);
  color: var(--color-header);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-text);
}

.step-content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
}

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

.features-list li {
  padding: 15px;
  background-color: var(--color-hover);
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid var(--color-login);
}

.bonus-card {
  background: linear-gradient(135deg, var(--color-signup), #ff5722);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 20px;
}

.bonus-amount {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.bonus-description p {
  font-size: 18px;
  margin-bottom: 10px;
}

.author-card {
  background-color: var(--color-hover);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--color-login);
}

.author-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--color-login);
}

/* FAQ Section */
.faq-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-card-bg);
  border-radius: 15px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-hover);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #3a3a3c;
}

.faq-question h3 {
  font-size: 18px;
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
}

.faq-toggle {
  font-size: 28px;
  color: var(--color-login);
  font-weight: 700;
  transition: transform 0.3s;
}

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

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

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

.faq-answer div {
  padding: 0 20px 20px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

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

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

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

.footer-logo img {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-description {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

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

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

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

.footer-menu a:hover {
  color: var(--color-login);
}

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

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-logos img {
  border-radius: 5px;
}

.footer-providers {
  margin-bottom: 30px;
  text-align: center;
}

.footer-providers h4 {
  color: var(--color-login);
  margin-bottom: 20px;
  font-size: 18px;
}

.provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.provider-name {
  background-color: var(--color-card-bg);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

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

.footer-legal p {
  color: var(--color-text-secondary);
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-warning {
  color: #ffa500;
  font-weight: 700;
}

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

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

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

.wp-footer-meta {
  display: none;
}

/* Fixed Widget */
.fixed-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-signup), #ff5722);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  z-index: 999;
  max-width: 300px;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  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: 40px;
}

.widget-text {
  flex: 1;
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.widget-btn {
  background-color: var(--color-text);
  color: var(--color-signup);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s;
  display: inline-block;
}

.widget-btn:hover {
  transform: scale(1.05);
}

.widget-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.widget-close:hover {
  opacity: 1;
}

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

/* Responsive */
@media (max-width: 992px) {
  .header-wrapper {
    grid-template-columns: 1fr;
  }

  .burger {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background-color: var(--color-header);
    padding: 20px;
    transition: left 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }

  .header-nav.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
  }

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

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

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

  .fixed-widget {
    max-width: 250px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .header-right {
    position: absolute;
    top: 15px;
    right: 60px;
  }

  .online-counter {
    display: none;
  }

  .hero-slider {
    height: 400px;
  }

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

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

  .btn-hero {
    padding: 12px 30px;
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .content-block h1 {
    font-size: 32px;
  }

  .content-block {
    padding: 25px;
  }

  .fixed-widget {
    bottom: 10px;
    right: 10px;
    max-width: 220px;
  }

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

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

@media (max-width: 480px) {
  .logo img {
    max-width: 140px;
  }

  .header-buttons {
    flex-direction: column;
    gap: 5px;
  }

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

  .hero-slider {
    height: 300px;
  }

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

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

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

  .download-steps {
    grid-template-columns: 1fr;
  }
}

/* Unused styles for uniqueness */
.xj8k2m {
  display: none;
}
.p9q3r7 {
  visibility: hidden;
}
.z4n6t1 {
  opacity: 0;
}
.m2w5y8 {
  position: absolute;
  left: -9999px;
}
.k7h3f9 {
  color: transparent;
}
.v1b4d6 {
  font-size: 0;
}
.c8x2l5 {
  width: 0;
  height: 0;
}
.q3j9n7 {
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
