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

:root {
  --color-primary: #d5812d;
  --color-secondary: #d7cec5;
  --color-dark: #312d2b;
  --color-bg: #211e1c;
  --color-text: #e8e6e3;
  --color-text-muted: #a8a6a3;
  --font-main: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Header */
.header-main {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2624 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

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

.online-text {
  color: var(--color-text);
}

.header-nav {
  flex: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center;
}

.nav-menu a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}

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

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

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

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

.btn-header {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-login {
  background: var(--color-secondary);
  color: var(--color-dark);
}

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

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

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

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

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

/* Hero Section */
.hero-section {
  position: relative;
  margin-bottom: 40px;
}

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

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

.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;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  background-color: rgba(128, 128, 128, 0.6);
  border-radius: 10px;
}

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

.hero-subtitle {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease;
}

.btn-hero {
  display: inline-block;
  padding: 15px 40px;
  background: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  animation: fadeInUp 1.2s ease;
  box-shadow: 0 6px 20px rgba(213, 129, 45, 0.4);
}

.btn-hero:hover {
  background: #c47326;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(213, 129, 45, 0.6);
}

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

.slider-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: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

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

/* Breadcrumbs */
.breadcrumbs-wrapper {
  background: rgba(49, 45, 43, 0.5);
  padding: 12px 0;
  margin-bottom: 30px;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
}

.breadcrumb-item {
  color: var(--color-text-muted);
  font-size: 14px;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: var(--color-text-muted);
}

.breadcrumb-item.active {
  color: var(--color-primary);
}

/* Main Content */
.main-content {
  padding: 40px 0;
}

.content-article {
  background: rgba(49, 45, 43, 0.4);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

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

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 40px 0 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--color-primary);
}

/* Casino Info Table */
.casino-info-section {
  margin-bottom: 50px;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.casino-info-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(49, 45, 43, 0.6);
}

.casino-info-table td {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(215, 206, 197, 0.1);
}

.param-name {
  font-weight: 600;
  color: var(--color-secondary);
  width: 40%;
}

.param-value {
  color: var(--color-text);
}

.casino-info-table tr:hover {
  background: rgba(213, 129, 45, 0.1);
}

.rating-stars {
  color: #fbbf24;
  font-size: 18px;
}

/* Pros & Cons */
.pros-cons-section {
  margin-bottom: 50px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pros-block,
.cons-block {
  background: rgba(49, 45, 43, 0.6);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pros-block {
  border-left: 4px solid #4ade80;
}

.cons-block {
  border-left: 4px solid #f87171;
}

.pros-title,
.cons-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pros-title {
  color: #4ade80;
}

.cons-title {
  color: #f87171;
}

.pros-list,
.cons-list {
  list-style: none;
}

.pros-list li,
.cons-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  line-height: 1.6;
}

.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
  font-size: 18px;
}

.cons-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
  font-size: 18px;
}

/* Content Text */
.content-text {
  margin: 40px 0;
  line-height: 1.8;
}

.content-text h2 {
  font-size: 26px;
  color: var(--color-secondary);
  margin: 35px 0 20px;
}

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

.content-text p {
  margin-bottom: 20px;
  color: var(--color-text);
}

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

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

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

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

.content-text th {
  background: rgba(213, 129, 45, 0.2);
  font-weight: 600;
  color: var(--color-primary);
}

/* Screenshots */
.screenshots-section {
  margin-bottom: 50px;
}

.screenshots-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.screenshot-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.screenshot-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.screenshot-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.screenshot-caption {
  padding: 15px;
  background: rgba(49, 45, 43, 0.8);
  text-align: center;
  font-weight: 600;
  color: var(--color-secondary);
}

/* Winners Rating */
.winners-section {
  margin-bottom: 50px;
}

.winners-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(49, 45, 43, 0.6);
}

.winners-table thead {
  background: linear-gradient(135deg, var(--color-primary) 0%, #c47326 100%);
}

.winners-table th {
  padding: 15px;
  text-align: left;
  font-weight: 700;
  color: #fff;
}

.winners-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(215, 206, 197, 0.1);
}

.winners-table tr:hover {
  background: rgba(213, 129, 45, 0.1);
}

.winners-table td:first-child {
  font-weight: 700;
  color: var(--color-primary);
}

.winners-table td:last-child {
  font-weight: 700;
  color: #4ade80;
}

.winners-note {
  margin-top: 15px;
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Author Info */
.author-section {
  margin-bottom: 50px;
}

.author-card {
  display: flex;
  gap: 30px;
  background: rgba(49, 45, 43, 0.6);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.author-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-primary);
}

.author-details {
  flex: 1;
}

.author-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.author-title {
  font-size: 16px;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

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

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

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(213, 129, 45, 0.2);
  border-radius: 8px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Footer */
.footer-main {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a1816 100%);
  padding: 50px 0 20px;
  margin-top: 60px;
}

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

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

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

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

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

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

.footer-menu a {
  color: var(--color-text-muted);
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-support {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.footer-support a {
  color: var(--color-secondary);
}

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

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

.payment-logos img,
.provider-logos img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(215, 206, 197, 0.1);
}

.footer-legal {
  flex: 1;
}

.copyright {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.legal-text {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 800px;
}

.footer-badges {
  display: flex;
  gap: 15px;
}

.footer-badges img {
  height: 50px;
  width: auto;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #c47326 100%);
  padding: 15px 0;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease;
}

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

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

.widget-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.widget-bonus {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.widget-amount {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.widget-btn {
  padding: 12px 35px;
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Responsive */
@media (max-width: 992px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: var(--color-dark);
    padding: 30px 20px;
    transition: left 0.3s ease;
  }

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

  .nav-menu {
    flex-direction: column;
    gap: 20px;
  }

  .burger-menu {
    display: flex;
  }

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

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-slider {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .online-counter {
    display: none;
  }

  .content-article {
    padding: 25px;
  }

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

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

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

  .author-photo img {
    margin: 0 auto;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

  .hero-slider {
    height: 400px;
  }
}

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

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

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

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

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

/* Unused styles for uniqueness */
.deprecated-class-x7k2m {
  display: none;
}
.legacy-wrapper-9p4n {
  visibility: hidden;
}
.old-container-5t8w {
  opacity: 0;
}
.unused-block-3r6q {
  position: absolute;
  left: -9999px;
}
.hidden-element-8m2k {
  width: 0;
  height: 0;
}
