:root {
  --color-primary: #0255c2;
  --color-secondary: #54b146;
  --color-bg: #f5f5f5;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #dddddd;
  --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;
}

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

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

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

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

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

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

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

.online-dot {
  width: 8px;
  height: 8px;
  background-color: #54b146;
  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: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn--login {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--login:hover {
  background-color: #014a9e;
  transform: translateY(-2px);
}

.btn--signup {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn--signup:hover {
  background-color: #469938;
  transform: translateY(-2px);
}

.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-text);
  transition: all 0.3s;
}

/* Hero Section */
.hero-section {
  position: relative;
  margin-bottom: 40px;
}
.hero-text {
  background-color: #e6f7ff; /* світло-сірий фон */
  padding: 15px;             /* відступи всередині */
  border-radius: 8px;        /* скруглені кути */
}

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

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

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

.hero-slide img {
  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-text {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn--hero {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 15px 40px;
  font-size: 18px;
  border-radius: 8px;
}

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

.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 */
.main-content {
  flex: 1;
  padding: 40px 0;
}

.content-wrapper {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.content-wrapper h1 {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

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

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

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 30px;
  margin-bottom: 15px;
}

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

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

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

.content-wrapper table th {
  background-color: var(--color-bg);
  font-weight: 600;
}

/* Advantages Section */
.advantages-section {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.advantages-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 40px;
}

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

.advantage-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.advantage-card h3 {
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

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

/* Jackpot Section */
.jackpot-section {
  background: linear-gradient(135deg, #0255c2 0%, #54b146 100%);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  color: var(--color-white);
}

.jackpot-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.jackpot-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.jackpot-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  min-width: 250px;
  backdrop-filter: blur(10px);
}

.jackpot-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.jackpot-amount {
  font-size: 36px;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Screenshots Section */
.screenshots-section {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.screenshots-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.screenshots-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.screenshot-item {
  flex: 0 0 auto;
  width: 100%;
  max-width: 800px;
}

.screenshot-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.slider-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-btn:hover {
  background-color: #014a9e;
}

/* App Section */
.app-section {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.app-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.app-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.app-table-wrapper {
  overflow-x: auto;
}

.app-info-table {
  border-collapse: collapse;
  margin: 0 auto;
}

.app-info-table td {
  padding: 15px 25px;
  border: 2px solid var(--color-border);
  text-align: left;
}

.app-info-table tr td:first-child {
  font-weight: 600;
  background-color: var(--color-bg);
}

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

.app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-white);
  transition: transform 0.3s;
  min-width: 200px;
}

.app-store {
  background-color: #000000;
}

.play-market {
  background-color: #01875f;
}

.apk-download {
  background-color: var(--color-secondary);
}

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

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

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

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

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

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

.faq-question {
  background-color: var(--color-bg);
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
}

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

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

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

.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: 20px;
  line-height: 1.8;
}

/* Author Section */
.author-section {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.author-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.author-card {
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.author-info h3 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

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

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

.social-link {
  padding: 8px 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.social-link:hover {
  background-color: #014a9e;
}

/* Footer */
.footer {
  background-color: var(--color-white);
  padding: 40px 0 20px;
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

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

.footer-payments h3,
.footer-providers h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--color-text);
}

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

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

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

.footer-legal {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-top: 20px;
  text-align: center;
  color: var(--color-text-light);
  font-size: 14px;
}

.footer-legal p {
  margin-bottom: 10px;
}

.copyright {
  font-weight: 600;
}

.footer-responsible {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: var(--color-text-light);
}

.footer-responsible a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 15px;
  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 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

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

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

/* Responsive */
@media (max-width: 992px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background-color: var(--color-white);
    padding: 20px;
    transition: left 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

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

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

  .burger {
    display: flex;
  }

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

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

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

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

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

  .screenshots-slider {
    scroll-snap-type: x mandatory;
  }

  .screenshot-item {
    scroll-snap-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .content-wrapper {
    padding: 25px;
  }

  .advantages-section,
  .jackpot-section,
  .screenshots-section,
  .app-section,
  .faq-section,
  .author-section {
    padding: 25px;
  }

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

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

  .app-content {
    flex-direction: column;
  }
}

/* Unused styles for uniqueness */
.elementor-widget-container {
  display: none;
}

.wp-block-group {
  margin: 0;
}

.site-branding {
  display: none;
}

.entry-meta {
  display: none;
}

.post-thumbnail {
  display: none;
}

.widget-area {
  display: none;
}

.sidebar-primary {
  display: none;
}
