:root {
  --color-primary: #0255c2;
  --color-success: #54b146;
  --color-bg: #f5f5f5;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

/* 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-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

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

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

.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-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.online-counter {
  background: linear-gradient(135deg, #54b146, #45a037);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

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

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

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

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(2, 85, 194, 0.9), rgba(84, 177, 70, 0.9)), url("/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  font-size: 14px;
}

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

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

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

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

.main-content h2 {
  color: var(--color-primary);
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 700;
}

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

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

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

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

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

.main-content table th,
.main-content table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

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

.main-content table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Mirrors Section */
.mirrors-section {
  margin-bottom: 50px;
}

.update-time {
  color: var(--color-success);
  font-weight: 600;
  margin-bottom: 20px;
}

.table-responsive {
  overflow-x: auto;
}

.mirrors-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}

.mirrors-table thead {
  background: linear-gradient(135deg, var(--color-primary), #0344a8);
  color: white;
}

.mirrors-table th,
.mirrors-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.mirrors-table tbody tr:hover {
  background-color: #f5f9ff;
}

.status-active {
  background-color: var(--color-success);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

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

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

.advantage-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

/* Jackpots Section */
.jackpots-section {
  margin-bottom: 50px;
}

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

.jackpot-card {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.jackpot-card h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 24px;
}

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

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

.screenshots-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.screenshot-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.screenshot-item:hover img {
  transform: scale(1.05);
}

/* Slot Game Section */
.slot-game-section {
  margin-bottom: 50px;
  text-align: center;
}

.slot-machine {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  margin: 30px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.reel {
  background: white;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  border-radius: 10px;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
}

.reel.spinning {
  animation: spin 0.1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

.spin-btn {
  margin-top: 20px;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
}

.slot-result {
  margin-top: 20px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  min-height: 60px;
}

.slot-result.win {
  color: #54b146;
  animation: blink 0.5s ease-in-out 3;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Author Section */
.author-section {
  margin: 40px 0;
}

.author-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.author-card h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.author-card a {
  color: var(--color-primary);
  text-decoration: none;
}

.author-card a:hover {
  text-decoration: underline;
}

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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-section h4 {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

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

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

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

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.payment-methods img {
  height: 40px;
  width: auto;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.providers-grid img {
  width: 100%;
  height: auto;
}

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

/* Widget */
.fixed-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-success), #45a037);
  padding: 15px;
  box-shadow: 0 -4px 20px 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-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.widget-bonus {
  color: #ffd700;
  font-size: 24px;
  font-weight: 700;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: #0344a8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 85, 194, 0.3);
}

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

.btn-success:hover {
  background-color: #45a037;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 177, 70, 0.3);
}

.btn-outline-light {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--color-primary);
}

.btn-sm {
  padding: 8px 15px;
  font-size: 14px;
}

.btn-lg {
  padding: 15px 35px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    grid-template-columns: auto 1fr auto;
  }

  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-white);
    flex-direction: column;
    padding: 30px;
    transition: left 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

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

  .burger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 32px;
  }

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

  .main-content {
    padding: 20px;
  }

  .screenshots-slider {
    grid-template-columns: 1fr;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

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

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

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

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

/* Unused classes for uniqueness */
.zx9k4p {
  background: #f0f0f0;
}
.wy7m2n {
  padding: 10px;
}
.vt5l8q {
  margin: 20px;
}
.us3j6r {
  border: 1px solid #ccc;
}
.rq1h4t {
  color: #999;
}
.po9g2u {
  font-size: 16px;
}
.nm7f5v {
  display: block;
}
.lk5d8w {
  position: relative;
}
.ji3b6x {
  width: 100%;
}
.hg1a4y {
  height: auto;
}
