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

* {
  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;
}

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

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

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

.navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  padding: 8px 15px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}

.qw3n7-btn-login {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  display: inline-block;
}

.qw3n7-btn-login:hover {
  background-color: #013d8f;
  color: var(--color-white);
  transform: translateY(-2px);
}

.zx8k2-btn-signup {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  display: inline-block;
}

.zx8k2-btn-signup:hover {
  background-color: #3d8a32;
  color: var(--color-white);
  transform: translateY(-2px);
}

.online-counter {
  background-color: #f0f0f0;
  padding: 8px 15px;
  border-radius: 20px;
  margin-left: 10px;
}

.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #54b146;
  border-radius: 50%;
  margin-right: 5px;
  animation: pulse 2s infinite;
}

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

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

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

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

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

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-white);
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

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

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

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

.btn-hero-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  border: none;
}

.btn-hero-primary:hover {
  background-color: #3d8a32;
  transform: scale(1.05);
  color: var(--color-white);
}

.btn-hero-secondary {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  border: none;
}

.btn-hero-secondary:hover {
  background-color: #013d8f;
  transform: scale(1.05);
  color: var(--color-white);
}

.hero-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.hero-prev,
.hero-next {
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  border: none;
  font-size: 40px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

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

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

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

.dot.active {
  background-color: var(--color-white);
}

/* Main Content */
.qw8r3-wrapper {
  padding: 40px 0;
}

.zx7m4-main {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-text);
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 10px;
}

/* Table of Contents */
.mv7k4-toc-block {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 40px;
  border-left: 4px solid var(--color-primary);
}

.toc-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.toc-list li {
  margin-bottom: 10px;
}

.toc-list a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.toc-list a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Mirrors Block */
.rt6n8-mirrors-block {
  margin-bottom: 50px;
}

.mirrors-update {
  background-color: #e8f5e9;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

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

.mirrors-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.mirrors-table td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.mirrors-table tr:hover {
  background-color: #f5f5f5;
}

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

.btn-mirror {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
}

.btn-mirror:hover {
  background-color: #3d8a32;
  color: var(--color-white);
}

.mirrors-info {
  background-color: #fff3cd;
  padding: 20px;
  border-radius: 5px;
  border-left: 4px solid #ffc107;
}

/* Tournaments Block */
.yx4m7-tournaments-block {
  margin-bottom: 50px;
}

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

.tournament-card {
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.tournament-card:hover {
  transform: translateY(-5px);
}

.tournament-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.tournament-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournament-content {
  padding: 20px;
}

.tournament-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}

.tournament-desc {
  color: var(--color-text-light);
  margin-bottom: 15px;
  line-height: 1.5;
}

.tournament-prize {
  background-color: #e8f5e9;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  text-align: center;
}

.tournament-timer {
  background-color: #fff3cd;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  text-align: center;
}

.timer-label {
  font-weight: 500;
  margin-right: 5px;
}

.timer-value {
  font-weight: 700;
  color: var(--color-primary);
}

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

.btn-tournament:hover {
  background-color: #3d8a32;
  color: var(--color-white);
}

/* App Info Block */
.bh9k2-app-block {
  margin-bottom: 50px;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.app-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.app-features li {
  padding: 10px 0;
  font-size: 16px;
  color: var(--color-text);
}

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

.app-table td {
  padding: 12px;
  border: 1px solid #e0e0e0;
}

.app-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.app-download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  display: inline-block;
  transition: transform 0.3s;
}

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

.btn-download img {
  height: 50px;
  width: auto;
}

/* Demo Game Block */
.nq5k8-demo-block {
  margin-bottom: 50px;
}

.demo-description {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.demo-game-container {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.demo-placeholder {
  text-align: center;
  color: var(--color-text-light);
}

.demo-note {
  font-style: italic;
  margin-top: 20px;
}

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

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

.btn-demo-play:hover {
  background-color: #3d8a32;
  transform: scale(1.05);
  color: var(--color-white);
}

/* FAQ Block */
.fq7m3-faq-block {
  margin-bottom: 50px;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--color-white);
  color: var(--color-text);
  font-weight: 600;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.accordion-button:hover {
  background-color: #f0f0f0;
}

.accordion-button:not(.collapsed):hover {
  background-color: #013d8f;
}

.accordion-body {
  padding: 20px;
  line-height: 1.6;
  background-color: #f9f9f9;
}

/* Content Styling */
.pv5n2-content-block {
  margin-bottom: 50px;
}

.h1-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-text);
}

.author-info {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.author-card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-bio {
  color: var(--color-text-light);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.author-link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
}

.author-link:hover {
  text-decoration: underline;
}

.text-content {
  line-height: 1.8;
}

.text-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-text);
}

.text-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.text-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

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

.text-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.text-content strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.text-content table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.xj9k2-intro {
  background-color: #e3f2fd;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

/* Footer */
.wm8k5-footer {
  background-color: var(--color-white);
  padding: 50px 0 20px;
  margin-top: 60px;
  border-top: 3px solid var(--color-primary);
}

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

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

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

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

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-text);
}

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

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

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

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

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

.footer-contacts li {
  margin-bottom: 10px;
  color: var(--color-text-light);
  font-size: 14px;
}

.footer-payments,
.footer-providers {
  margin-bottom: 30px;
}

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

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

.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 {
  color: var(--color-text-light);
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-warning {
  color: #d32f2f;
  font-weight: 600;
}

.footer-license {
  font-size: 12px;
}

/* Fixed Widget */
.jk4n9-widget-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #3d8a32 100%);
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: slideUp 0.5s ease-out;
}

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

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

.widget-text {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.widget-text strong {
  font-size: 20px;
  font-weight: 700;
}

.widget-text span {
  font-size: 14px;
}

.widget-btn {
  background-color: var(--color-white);
  color: var(--color-secondary);
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
}

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

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

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

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }

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

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

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

  .author-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .zx7m4-main {
    padding: 20px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

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

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

  .widget-content {
    justify-content: center;
    text-align: center;
  }

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

/* Unused styles for uniqueness */
.zm9k3-deprecated {
  display: none;
  opacity: 0;
}

.pq7n2-unused-class {
  visibility: hidden;
}

.xv4m8-old-style {
  color: transparent;
}

.bh3k9-legacy {
  position: absolute;
  left: -9999px;
}
