:root {
  --color-header: #222723;
  --color-footer: #222723;
  --color-btn-login: #02504b;
  --color-btn-signup: #f9c719;
  --color-bg: #0e2f2b;
  --color-text-light: #e8f0ef;
  --color-text-dark: #1a1a1a;
  --color-accent: #02504b;
  --color-accent-hover: #037066;
  --font-main: "Roboto", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans",
    "Helvetica Neue", "Arial", 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-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Header Styles */
.header-main {
  background: 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-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.logo-link {
  display: block;
  transition: opacity 0.3s;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-img {
  display: block;
  height: auto;
}

.nav-desktop {
  display: none;
}

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

.nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 15px;
}

.nav-link:hover {
  color: var(--color-btn-signup);
}

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

.online-counter {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.online-icon {
  font-size: 16px;
}

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

.btn-header {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-login {
  background: var(--color-btn-login);
  color: #fff;
}

.btn-login:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-signup {
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
}

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

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

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

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

.nav-mobile {
  display: none;
  background: rgba(0, 0, 0, 0.95);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 20px;
}

.nav-mobile.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.nav-mobile-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile-link {
  display: block;
  padding: 15px 10px;
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}

.nav-mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-btn-signup);
}

.nav-mobile-social {
  display: flex;
  gap: 15px;
  padding: 15px 10px;
  justify-content: center;
}

.social-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.3s;
}

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

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

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

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

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

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.btn-hero {
  display: inline-block;
  padding: 15px 40px;
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(249, 199, 25, 0.4);
}

.btn-hero:hover {
  background: #ffd633;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 199, 25, 0.6);
}

.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.2);
  border: none;
  color: #fff;
  font-size: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--color-btn-signup);
  width: 30px;
  border-radius: 6px;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 0;
  margin-bottom: 30px;
}

.breadcrumb-nav {
  font-size: 14px;
}

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

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.5);
}

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

.breadcrumb-item a:hover {
  color: var(--color-btn-signup);
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

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

.content-article {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.main-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-text-light);
  line-height: 1.3;
}

.hd2-style {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text-light);
  border-left: 4px solid var(--color-btn-signup);
  padding-left: 15px;
}

.mb4x7 {
  margin-bottom: 50px;
}

/* Info Table */
.info-table-wrapper {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.info-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table tbody tr:last-child {
  border-bottom: none;
}

.info-table td {
  padding: 15px 20px;
  text-align: left;
}

.param-cell {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  width: 35%;
  background: rgba(255, 255, 255, 0.03);
}

.value-cell {
  color: var(--color-text-light);
  width: 65%;
}

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

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

.text-content-block h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: var(--color-text-light);
  border-left: 4px solid var(--color-btn-signup);
  padding-left: 15px;
}

.text-content-block h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: var(--color-text-light);
}

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

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

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

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

.text-content-block a:hover {
  color: var(--color-accent-hover);
}

.text-content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

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

.text-content-block table th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: var(--color-btn-signup);
}

.text-content-block table td {
  color: var(--color-text-light);
}

/* Advantages Section */
.x9k2-advantages-section {
  background: linear-gradient(135deg, rgba(2, 80, 75, 0.2) 0%, rgba(14, 47, 43, 0.2) 100%);
  padding: 40px;
  border-radius: 12px;
}

.adv-grid-3col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.adv-card-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.adv-card-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-btn-signup);
  box-shadow: 0 8px 25px rgba(249, 199, 25, 0.2);
}

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

.adv-card-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-light);
}

.adv-card-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Gallery Section */
.scr-gallery-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
}

.gallery-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-slide {
  display: none;
  text-align: center;
}

.gallery-slide.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gallery-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.slide-caption {
  margin-top: 15px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

/* Video Section */
.video-review-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, rgba(34, 39, 35, 0.3) 0%, rgba(14, 47, 43, 0.3) 100%);
  padding: 40px;
  border-radius: 12px;
}

.faq-accordion {
  margin-top: 25px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  font-family: var(--font-main);
}

.faq-question::after {
  content: "+";
  font-size: 28px;
  color: var(--color-btn-signup);
  transition: transform 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

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

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

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

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

.faq-answer p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 16px;
}

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

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

.footer-col {
  color: var(--color-text-light);
}

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

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--color-btn-signup);
}

.footer-support {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-email {
  color: var(--color-btn-login);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-email:hover {
  color: var(--color-accent-hover);
}

.footer-payments,
.footer-providers {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.payment-logos img,
.provider-logos img {
  height: 40px;
  width: auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border-radius: 6px;
  transition: transform 0.3s;
}

.payment-logos img:hover,
.provider-logos img:hover {
  transform: scale(1.05);
}

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

.footer-legal p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal-text {
  font-size: 12px !important;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--color-btn-login) 0%, #037066 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  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;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.widget-bonus {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.widget-text {
  display: flex;
  flex-direction: column;
  color: #fff;
}

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

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

.widget-btn {
  padding: 12px 35px;
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(249, 199, 25, 0.3);
}

.widget-btn:hover {
  background: #ffd633;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 199, 25, 0.5);
}

/* Unused Styles for Uniqueness */
.wp-block-columns {
  display: flex;
  margin-bottom: 1.75em;
  flex-wrap: wrap;
}

.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.elementor-widget-container {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}

.site-branding {
  display: flex;
  align-items: center;
}

.entry-meta {
  font-size: 0.875rem;
  color: #6c757d;
}

.post-thumbnail {
  margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .burger-menu {
    display: none;
  }

  .online-counter {
    display: flex;
  }

  .hero-slider {
    height: 600px;
  }

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

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

  .content-article {
    padding: 50px;
  }

  .main-heading {
    font-size: 42px;
  }

  .gallery-slide {
    display: none;
  }

  .gallery-slide.active {
    display: block;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 400px;
  }

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

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

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

  .content-article {
    padding: 25px 20px;
  }

  .main-heading {
    font-size: 26px;
  }

  .hd2-style {
    font-size: 22px;
  }

  .info-table td {
    padding: 12px 15px;
    font-size: 14px;
  }

  .param-cell {
    width: 40%;
  }

  .value-cell {
    width: 60%;
  }

  .adv-grid-3col {
    grid-template-columns: 1fr;
  }

  .gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-slide {
    display: block;
    min-width: 100%;
    scroll-snap-align: start;
  }

  .gallery-btn {
    display: none;
  }

  .widget-content {
    flex-direction: column;
    gap: 15px;
  }

  .widget-bonus {
    text-align: center;
  }

  .widget-btn {
    width: 100%;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .header-buttons {
    gap: 5px;
  }

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

  .hero-slider {
    height: 350px;
  }

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

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