/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #211e1c;
  color: #e8e6e3;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container-fluid.px7k3 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header-main-8kx3m {
  background: #312d2b;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-wrapper-4nx9k {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

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

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

.header-nav-3nx8k.desktop-nav-9kx2m {
  display: none;
}

@media (min-width: 992px) {
  .header-nav-3nx8k.desktop-nav-9kx2m {
    display: block;
  }
}

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

.nav-link-8kx3m {
  color: #d7cec5;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link-8kx3m:hover {
  color: #d5812d;
}

.nav-link-8kx3m::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d5812d;
  transition: width 0.3s ease;
}

.nav-link-8kx3m:hover::after {
  width: 100%;
}

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

.online-counter-7kx3m {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(213, 129, 45, 0.15);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .online-counter-7kx3m {
    display: flex;
  }
}

.online-icon-2nx8k {
  font-size: 18px;
}

.online-text-4kx9m {
  color: #e8e6e3;
}

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

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

.btn-login-9nx2k {
  background: #d7cec5;
  color: #312d2b;
}

.btn-login-9nx2k:hover {
  background: #c4bbb2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 206, 197, 0.3);
}

.btn-signup-2kx8m {
  background: #d5812d;
  color: #fff;
}

.btn-signup-2kx8m:hover {
  background: #c17326;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(213, 129, 45, 0.4);
}

/* Burger Menu */
.burger-menu-4nx8k {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

@media (min-width: 992px) {
  .burger-menu-4nx8k {
    display: none;
  }
}

.burger-line-7kx2m {
  width: 25px;
  height: 3px;
  background: #d7cec5;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-menu-4nx8k.active-9nx2k .burger-line-7kx2m:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu-4nx8k.active-9nx2k .burger-line-7kx2m:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Navigation */
.mobile-nav-7kx3m {
  display: none;
  background: #2a2624;
  padding: 20px 0;
  margin-top: 15px;
  border-radius: 8px;
}

.mobile-nav-7kx3m.show-3kx8m {
  display: block;
  animation: slideDown-4nx8k 0.3s ease;
}

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

.mobile-nav-list-3nx8k {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-link-2nx7k {
  color: #d7cec5;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 20px;
  display: block;
  transition: all 0.3s ease;
}

.mobile-nav-link-2nx7k:hover {
  color: #d5812d;
  background: rgba(213, 129, 45, 0.1);
  border-radius: 6px;
}

body.menu-open-2nx7k {
  overflow: hidden;
}

/* Hero Section */
.hero-zx4m2 {
  background: linear-gradient(rgba(33, 30, 28, 0.7), rgba(33, 30, 28, 0.7)), url("/banner1.png") center / cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.hero-zx4m2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(213, 129, 45, 0.15), transparent 70%);
  animation: pulse-9nx2k 4s ease-in-out infinite;
}

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

.hero-content-9jf2x {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title-4kx9m {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp-3kx7m 0.8s ease;
}

@keyframes fadeInUp-3kx7m {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle-2nx8k {
  font-size: 20px;
  color: #d7cec5;
  margin-bottom: 30px;
  animation: fadeInUp-3kx7m 0.8s ease 0.2s both;
}

.hero-bonus-7mx2k {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 35px;
  animation: fadeInUp-3kx7m 0.8s ease 0.4s both;
}

.bonus-amount-3kx7m {
  font-size: 36px;
  font-weight: 700;
  color: #d5812d;
  text-shadow: 0 0 20px rgba(213, 129, 45, 0.5);
}

.bonus-fs-9nx2k {
  font-size: 22px;
  color: #d7cec5;
}

.btn-hero-8kx3m {
  display: inline-block;
  padding: 18px 45px;
  background: #d5812d;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(213, 129, 45, 0.3);
  animation: fadeInUp-3kx7m 0.8s ease 0.6s both;
}

.btn-hero-8kx3m:hover {
  background: #c17326;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(213, 129, 45, 0.5);
}

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

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

  .bonus-amount-3kx7m {
    font-size: 28px;
  }

  .bonus-fs-9nx2k {
    font-size: 18px;
  }

  .btn-hero-8kx3m {
    padding: 15px 35px;
    font-size: 16px;
  }
}

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

.section-title-7kx2m {
  font-size: 32px;
  font-weight: 700;
  color: #d7cec5;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title-7kx2m::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d5812d, #d7cec5);
  border-radius: 2px;
}

/* Section Spacing */
section {
  margin-bottom: 80px;
}

/* Info Table Section */
.section-info-4mx9k {
  background: #2a2624;
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.table-wrapper-3nx8k {
  overflow-x: auto;
  border-radius: 10px;
}

.info-table-9kx4m {
  width: 100%;
  border-collapse: collapse;
  background: #312d2b;
  border-radius: 10px;
  overflow: hidden;
}

.info-table-9kx4m tbody tr {
  border-bottom: 1px solid rgba(215, 206, 197, 0.1);
  transition: background 0.3s ease;
}

.info-table-9kx4m tbody tr:hover {
  background: rgba(213, 129, 45, 0.05);
}

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

.param-cell-2nx7k,
.value-cell-8kx3m {
  padding: 18px 25px;
  text-align: left;
}

.param-cell-2nx7k {
  font-weight: 600;
  color: #d7cec5;
  width: 35%;
}

.value-cell-8kx3m {
  color: #e8e6e3;
}

@media (max-width: 768px) {
  .param-cell-2nx7k,
  .value-cell-8kx3m {
    padding: 15px;
    font-size: 14px;
  }

  .param-cell-2nx7k {
    width: 40%;
  }
}

/* Advantages Section */
.section-advantages-6nx9k {
  padding: 50px 30px;
  background: linear-gradient(135deg, #2a2624 0%, #312d2b 100%);
  border-radius: 15px;
}

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

.advantage-card-2nx7k {
  background: #211e1c;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.advantage-card-2nx7k:hover {
  transform: translateY(-8px);
  border-color: #d5812d;
  box-shadow: 0 15px 35px rgba(213, 129, 45, 0.2);
}

.advantage-icon-9kx3m {
  font-size: 48px;
  margin-bottom: 20px;
  animation: bounce-5nx2k 2s ease infinite;
}

@keyframes bounce-5nx2k {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.advantage-title-5nx2k {
  font-size: 20px;
  font-weight: 600;
  color: #d7cec5;
  margin-bottom: 15px;
}

.advantage-text-8kx4m {
  color: #b8b5b2;
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 768px) {
  .advantages-grid-4mx8k {
    grid-template-columns: 1fr;
  }
}

/* Mirrors Section */
.section-mirrors-3nx8k {
  background: #2a2624;
  padding: 50px 30px;
  border-radius: 15px;
}

.mirrors-update-7kx3m {
  text-align: center;
  margin-bottom: 30px;
  font-size: 15px;
  color: #b8b5b2;
}

.update-label-4nx9k {
  font-weight: 600;
  color: #d7cec5;
}

.update-time-2kx8m {
  color: #d5812d;
  font-weight: 600;
}

.mirrors-table-5kx9m {
  width: 100%;
  border-collapse: collapse;
  background: #312d2b;
  border-radius: 10px;
  overflow: hidden;
}

.mirrors-table-5kx9m thead {
  background: rgba(213, 129, 45, 0.15);
}

.mirror-th-8nx2k {
  padding: 18px 25px;
  text-align: left;
  font-weight: 600;
  color: #d7cec5;
  border-bottom: 2px solid rgba(213, 129, 45, 0.3);
}

.mirror-td-3kx7m {
  padding: 18px 25px;
  border-bottom: 1px solid rgba(215, 206, 197, 0.1);
}

.mirrors-table-5kx9m tbody tr:hover {
  background: rgba(213, 129, 45, 0.05);
}

.mirror-link-9nx4k {
  color: #d5812d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mirror-link-9nx4k:hover {
  color: #c17326;
  text-decoration: underline;
}

.status-active-2nx8k {
  color: #4caf50;
  font-weight: 600;
}

.speed-fast-7kx2m {
  color: #4caf50;
  font-weight: 600;
}

.speed-medium-4nx9k {
  color: #ff9800;
  font-weight: 600;
}

@media (max-width: 768px) {
  .mirror-th-8nx2k,
  .mirror-td-3kx7m {
    padding: 12px 15px;
    font-size: 14px;
  }
}

/* Tournaments Section */
.section-tournaments-8nx4k {
  padding: 50px 30px;
  background: linear-gradient(135deg, #312d2b 0%, #2a2624 100%);
  border-radius: 15px;
}

.tournaments-slider-3kx9m {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .tournaments-slider-3kx9m {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
  }

  .tournament-card-7nx2k {
    min-width: 300px;
    scroll-snap-align: start;
  }
}

.tournament-card-7nx2k {
  background: #211e1c;
  padding: 35px 25px;
  border-radius: 12px;
  border: 2px solid rgba(213, 129, 45, 0.2);
  transition: all 0.3s ease;
}

.tournament-card-7nx2k:hover {
  transform: translateY(-5px);
  border-color: #d5812d;
  box-shadow: 0 15px 35px rgba(213, 129, 45, 0.3);
}

.tournament-title-4kx8m {
  font-size: 22px;
  font-weight: 700;
  color: #d7cec5;
  margin-bottom: 15px;
}

.tournament-desc-2nx9k {
  color: #b8b5b2;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 15px;
}

.tournament-prize-5kx3m {
  background: rgba(213, 129, 45, 0.15);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.prize-label-9nx7k {
  display: block;
  color: #d7cec5;
  font-size: 14px;
  margin-bottom: 8px;
}

.prize-amount-3kx2m {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #d5812d;
}

.tournament-timer-8nx4k {
  text-align: center;
  margin-bottom: 25px;
}

.timer-label-2kx9m {
  display: block;
  color: #b8b5b2;
  font-size: 14px;
  margin-bottom: 8px;
}

.timer-value-7nx3k {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #d7cec5;
  font-family: "Courier New", monospace;
}

.btn-tournament-4kx8m {
  display: block;
  width: 100%;
  padding: 15px;
  background: #d5812d;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-tournament-4kx8m:hover {
  background: #c17326;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(213, 129, 45, 0.4);
}

/* Mini Game Section */
.section-minigame-9kx2m {
  background: #2a2624;
  padding: 50px 30px;
  border-radius: 15px;
}

.minigame-container-4nx8k {
  max-width: 600px;
  margin: 0 auto;
}

.slot-machine-7kx3m {
  background: linear-gradient(135deg, #312d2b 0%, #2a2624 100%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid #d5812d;
}

.slot-reels-2nx9k {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}

.slot-reel-5kx8m {
  width: 100px;
  height: 100px;
  background: #211e1c;
  border: 3px solid #d5812d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slot-symbol-3nx7k {
  font-size: 60px;
}

.btn-spin-8kx4m {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #d5812d 0%, #c17326 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(213, 129, 45, 0.3);
}

.btn-spin-8kx4m:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(213, 129, 45, 0.5);
}

.btn-spin-8kx4m:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.minigame-result-3nx8k {
  margin-top: 30px;
  padding: 25px;
  background: rgba(76, 175, 80, 0.15);
  border: 2px solid #4caf50;
  border-radius: 12px;
  text-align: center;
  animation: fadeIn-7kx2m 0.5s ease;
}

@keyframes fadeIn-7kx2m {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.result-text-7kx2m {
  font-size: 22px;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: 15px;
}

.result-bonus-4nx9k {
  font-size: 18px;
  color: #e8e6e3;
  margin-bottom: 20px;
}

.btn-claim-2kx8m {
  display: inline-block;
  padding: 15px 40px;
  background: #d5812d;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-claim-2kx8m:hover {
  background: #c17326;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(213, 129, 45, 0.4);
}

@media (max-width: 768px) {
  .slot-machine-7kx3m {
    padding: 25px;
  }

  .slot-reel-5kx8m {
    width: 80px;
    height: 80px;
  }

  .slot-symbol-3nx7k {
    font-size: 48px;
  }
}

/* Content Section */
.section-content-5nx9k {
  background: #2a2624;
  padding: 50px 30px;
  border-radius: 15px;
}

.content-wrapper-8kx3m {
  max-width: 900px;
  margin: 0 auto;
  color: #e8e6e3;
  line-height: 1.8;
}

.content-wrapper-8kx3m h1,
.content-wrapper-8kx3m h2,
.content-wrapper-8kx3m h3 {
  color: #d7cec5;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

.content-wrapper-8kx3m h1 {
  font-size: 32px;
}

.content-wrapper-8kx3m h2 {
  font-size: 26px;
}

.content-wrapper-8kx3m h3 {
  font-size: 22px;
}

.content-wrapper-8kx3m p {
  margin-bottom: 20px;
  font-size: 16px;
}

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

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

.content-wrapper-8kx3m a {
  color: #d5812d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.content-wrapper-8kx3m a:hover {
  color: #c17326;
  text-decoration: underline;
}

.content-wrapper-8kx3m table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  background: #312d2b;
  border-radius: 8px;
  overflow: hidden;
}

.content-wrapper-8kx3m th,
.content-wrapper-8kx3m td {
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(215, 206, 197, 0.1);
}

.content-wrapper-8kx3m th {
  background: rgba(213, 129, 45, 0.15);
  font-weight: 600;
  color: #d7cec5;
}

.content-wrapper-8kx3m blockquote {
  border-left: 4px solid #d5812d;
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
  color: #b8b5b2;
}

/* Author Section */
.section-author-6nx8k {
  padding: 50px 30px;
  background: linear-gradient(135deg, #312d2b 0%, #2a2624 100%);
  border-radius: 15px;
}

.author-card-4kx9m {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #211e1c;
  padding: 35px;
  border-radius: 12px;
  border: 2px solid rgba(213, 129, 45, 0.2);
}

.author-photo-2nx7k {
  flex-shrink: 0;
}

.author-photo-2nx7k img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #d5812d;
  object-fit: cover;
}

.author-info-8kx3m {
  flex: 1;
}

.author-name-5nx2k {
  font-size: 24px;
  font-weight: 700;
  color: #d7cec5;
  margin-bottom: 15px;
}

.author-bio-7kx4m {
  color: #b8b5b2;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

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

.author-link-9kx2m {
  color: #d5812d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.author-link-9kx2m:hover {
  color: #c17326;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .author-card-4kx9m {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .author-photo-2nx7k img {
    width: 120px;
    height: 120px;
  }

  .author-social-3nx9k {
    justify-content: center;
  }
}

/* Footer */
.footer-main-6nx8k {
  background: #312d2b;
  padding: 50px 0 30px;
  margin-top: auto;
}

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

.footer-logo-img-8kx3m {
  height: 45px;
  width: auto;
}

.footer-nav-5nx2k {
  flex: 1;
}

.footer-nav-list-7kx4m {
  display: flex;
  list-style: none;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav-link-9kx2m {
  color: #d7cec5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav-link-9kx2m:hover {
  color: #d5812d;
}

.footer-subtitle-2kx9m {
  font-size: 18px;
  font-weight: 600;
  color: #d7cec5;
  margin-bottom: 20px;
  text-align: center;
}

.footer-providers-8nx4k,
.footer-payments-3nx9k {
  margin-bottom: 35px;
}

.providers-logos-5nx2k,
.payments-logos-4kx8m {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.provider-badge-7kx3m,
.payment-badge-9nx2k {
  background: rgba(215, 206, 197, 0.1);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  color: #d7cec5;
  border: 1px solid rgba(215, 206, 197, 0.2);
  transition: all 0.3s ease;
}

.provider-badge-7kx3m:hover,
.payment-badge-9nx2k:hover {
  background: rgba(213, 129, 45, 0.15);
  border-color: #d5812d;
}

.footer-legal-6kx4m {
  text-align: center;
  margin-bottom: 25px;
}

.footer-text-8nx3k {
  color: #b8b5b2;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-copyright-2nx7k {
  color: #d7cec5;
  font-size: 14px;
  font-weight: 600;
}

.footer-disclaimer-5kx9m {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(215, 206, 197, 0.1);
}

.disclaimer-text-7nx2k {
  color: #8a8784;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-top-4kx9m {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav-list-7kx4m {
    flex-direction: column;
    gap: 15px;
  }
}

/* Sticky Widget */
.sticky-widget-9kx3m {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #d5812d 0%, #c17326 100%);
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  animation: slideUp-2nx8k 0.5s ease;
}

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

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

.widget-bonus-7kx2m {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.widget-bonus-text-3nx9k {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.widget-bonus-amount-2kx8m {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.widget-btn-5nx2k {
  padding: 12px 35px;
  background: #fff;
  color: #d5812d;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.widget-btn-5nx2k:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .widget-content-4nx8k {
    justify-content: center;
    text-align: center;
  }

  .widget-bonus-amount-2kx8m {
    font-size: 18px;
  }

  .widget-btn-5nx2k {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Unused styles for uniqueness */
.unused-class-9x2k {
  display: none;
}
.legacy-wrapper-4n8x {
  opacity: 0;
}
.deprecated-element-7k3m {
  visibility: hidden;
}
.old-style-2nx9k {
  position: absolute;
  left: -9999px;
}
.archive-block-5kx8m {
  pointer-events: none;
}
/* Напівпрозорий фон лише під контентом герою */
.hero-zx4m2 .hero-content-9jf2x {
  position: relative;
  z-index: 2;                 /* поверх підсвіток */
  display: inline-block;      /* щоб блок був по ширині контенту */
  margin-inline: auto;        /* по центру */
  padding: 24px 28px;         /* внутрішні відступи */
  background: rgba(128, 128, 128, 0.6); /* сірий напівпрозорий */
  border-radius: 14px;        /* округлення кутів */
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);           /* легкий блюр підкладки */
  -webkit-backdrop-filter: blur(2px);   /* для Safari */
}

/* необов’язково: трохи зменшити відступи між елементами всередині */
.hero-zx4m2 .hero-content-9jf2x > *:not(:last-child) {
  margin-bottom: 14px;
}
