/* Main Styles */
:root {
  --color-primary: #0255c2;
  --color-secondary: #54b146;
  --color-white: #ffffff;
  --color-bg: #f5f5f5;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #e0e0e0;
  --transition: all 0.3s ease;
}

body.fixed {
  overflow: hidden;
}

/* Header Styles */
.header-wrapper {
  background: linear-gradient(135deg, var(--color-white) 0%, #f8f9fa 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-link {
  display: block;
  transition: var(--transition);
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.online-counter {
  background: linear-gradient(135deg, var(--color-primary), #0366d6);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(2, 85, 194, 0.3);
}

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

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

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

.nav-menu li a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-menu li a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

.btn-login:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 85, 194, 0.3);
}

.btn-signup {
  background: linear-gradient(135deg, var(--color-secondary), #66c956);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(84, 177, 70, 0.3);
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(84, 177, 70, 0.4);
}

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

.burger-line {
  width: 28px;
  height: 3px;
  background: var(--color-text);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

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

.hero-slide {
  display: none;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hero-slide.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  padding: 16px 40px;
  font-size: 18px;
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(84, 177, 70, 0.4);
  transition: var(--transition);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(84, 177, 70, 0.5);
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
  padding: 15px 0;
  background: var(--color-white);
  border-radius: 8px;
  margin-bottom: 25px;
}

.breadcrumbs {
  display: flex;
  list-style: none;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

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

.breadcrumbs li a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: var(--color-text-light);
  margin-left: 8px;
}

/* Table of Contents */
.toc-block {
  background: var(--color-white);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--color-primary);
}

.toc-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-text);
}

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

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

.toc-list li a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
}

.toc-list li a:hover {
  background: #f0f7ff;
  padding-left: 20px;
}

/* Advantages */
.advantages-section {
  margin-bottom: 40px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.advantage-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-top: 4px solid var(--color-primary);
}

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

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

.advantage-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.advantage-text {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* App Info */
.app-info-section {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--color-white) 100%);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.app-info-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
  color: var(--color-text);
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
}

.app-table th,
.app-table td {
  padding: 15px 20px;
  text-align: left;
  border: 1px solid var(--color-border);
}

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

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

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

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: var(--color-text);
  color: var(--color-white);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

/* Main Content */
.main-content-block {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.main-content-block h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--color-text);
  line-height: 1.3;
}

.main-content-block h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
  color: var(--color-text);
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 10px;
}

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

.main-content-block p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: var(--color-text);
}

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

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

.main-content-block a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.main-content-block a:hover {
  border-bottom-color: var(--color-primary);
}

.main-content-block strong {
  font-weight: 700;
  color: var(--color-text);
}

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

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

.main-content-block table th {
  background: #f8f9fa;
  font-weight: 600;
}

.lead-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 25px;
  padding: 20px;
  background: #f0f7ff;
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
}

.highlight-box {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
  border-left: 4px solid #f97316;
}

.highlight-box h2 {
  border: none;
  margin-top: 0;
  color: #ea580c;
}

/* Tournaments */
.tournaments-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-text);
}

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

.tournament-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

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

.tournament-header {
  background: linear-gradient(135deg, var(--color-primary), #0366d6);
  color: var(--color-white);
  padding: 20px;
}

.tournament-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tournament-body {
  padding: 20px;
}

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

.tournament-prize {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.tournament-timer {
  background: #fef3c7;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #92400e;
}

/* Video Section */
.video-section {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

/* FAQ */
.faq-section {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 24px;
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

/* Author */
.author-section {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--color-white) 100%);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.author-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.author-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-text);
}

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

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(2, 85, 194, 0.3);
}

/* Footer */
.footer-wrapper {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: var(--color-white);
  padding: 50px 0 20px;
  margin-top: auto;
}

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

.footer-block h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

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

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

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

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

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

.payment-logo,
.provider-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
}

.copyright {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 15px;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.legal-links li a:hover {
  color: var(--color-white);
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-secondary), #66c956);
  padding: 15px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-widget.visible {
  transform: translateY(0);
}

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

.widget-text {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
}

.widget-bonus {
  font-size: 24px;
  font-weight: 900;
}

.widget-btn {
  padding: 12px 35px;
  background: var(--color-white);
  color: var(--color-secondary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.widget-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.widget-close {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 28px;
  cursor: pointer;
  padding: 5px 10px;
  transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 15px;
  }

  .nav-menu.active {
    display: flex;
  }

  .burger-menu {
    display: flex;
  }

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

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

  .widget-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

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

  .main-content-block {
    padding: 25px;
  }

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

  .main-content-block h2 {
    font-size: 22px;
  }

  .app-info-section {
    padding: 25px;
  }

  .app-table {
    font-size: 14px;
  }

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

/* Unused Styles for Uniqueness */
.wp-block-cover {
  position: relative;
}
.wp-block-media-text {
  display: grid;
}
.elementor-widget-container {
  padding: 10px;
}
.entry-header {
  margin-bottom: 20px;
}
.post-thumbnail {
  margin-bottom: 15px;
}
.site-branding {
  padding: 20px 0;
}
.widget-area {
  padding: 20px;
}
.sidebar-primary {
  background: #f9f9f9;
}
.navigation-top {
  position: relative;
}
.menu-toggle {
  display: none;
}
.site-footer {
  margin-top: 40px;
}
.content-area {
  flex: 1;
}
.site-content {
  padding: 20px 0;
}
.hentry {
  margin-bottom: 30px;
}
.byline {
  font-size: 14px;
}
.posted-on {
  color: #666;
}
.cat-links {
  margin-right: 10px;
}
.tags-links {
  margin-left: 10px;
}
.edit-link {
  float: right;
}
.page-header {
  padding: 30px 0;
}
.page-title {
  font-size: 32px;
}
.taxonomy-description {
  margin-top: 15px;
}
.post-navigation {
  margin: 30px 0;
}
.comment-list {
  list-style: none;
}
.comment-body {
  padding: 20px;
}
.reply {
  margin-top: 10px;
}
