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

:root {
  --color-header: #0d2a33;
  --color-footer: #0d2a33;
  --color-bg: #102f38;
  --color-btn-login: #82c5dc;
  --color-btn-signup: #028dc6;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-accent: #82c5dc;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --font-main: "Roboto", sans-serif;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

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

.header-nav {
  flex: 1;
}

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

.nav-menu li a {
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  background-color: rgba(130, 197, 220, 0.2);
  color: var(--color-accent);
}

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

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

.online-dot {
  width: 8px;
  height: 8px;
  background-color: #28a745;
  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 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

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

.btn-login:hover {
  background-color: #6fb3cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(130, 197, 220, 0.4);
}

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

.btn-signup:hover {
  background-color: #0277a8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 141, 198, 0.4);
}

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

.burger-menu span {
  width: 28px;
  height: 3px;
  background-color: var(--color-text-light);
  transition: all 0.3s ease;
  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);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 47, 56, 0.9) 0%, rgba(13, 42, 51, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  animation: fadeInLeft 1s ease;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #82c5dc 0%, #028dc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.btn-hero {
  background: linear-gradient(135deg, var(--color-btn-signup) 0%, #0277a8 100%);
  color: var(--color-text-light);
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(2, 141, 198, 0.4);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(2, 141, 198, 0.6);
}

.promo-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeInRight 1s ease;
}

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

.promo-label {
  font-size: 16px;
  font-weight: 600;
}

.promo-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

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

.promo-code-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.promo-code {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  color: var(--color-accent);
  border: 2px dashed var(--color-accent);
}

.btn-copy {
  background-color: var(--color-btn-login);
  color: var(--color-text-dark);
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-copy:hover {
  background-color: #6fb3cc;
  transform: scale(1.1);
}

.promo-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}

.promo-actions {
  margin-bottom: 15px;
}

.btn-activate {
  width: 100%;
  background: linear-gradient(135deg, var(--color-btn-signup) 0%, #0277a8 100%);
  color: var(--color-text-light);
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
}

.btn-activate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 141, 198, 0.4);
}

.promo-timer {
  text-align: center;
  font-size: 14px;
  color: var(--color-warning);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.content-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.main-heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(135deg, #82c5dc 0%, #028dc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-text {
  line-height: 1.8;
}

.content-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: var(--color-accent);
}

.content-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: rgba(255, 255, 255, 0.9);
}

.content-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

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

.content-text li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

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

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

.content-text table th {
  background-color: rgba(130, 197, 220, 0.2);
  font-weight: 600;
}

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

.casino-info-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-accent);
}

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

.casino-info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.05);
}

.casino-info-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.casino-info-table tbody tr:hover {
  background-color: rgba(130, 197, 220, 0.1);
}

.casino-info-table td {
  padding: 18px 25px;
  text-align: left;
  font-size: 15px;
}

.casino-info-table td:first-child {
  font-weight: 600;
  color: var(--color-accent);
  width: 35%;
}

.casino-info-table td:last-child {
  color: rgba(255, 255, 255, 0.9);
}

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

.pros-cons-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-accent);
}

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

.pros-block,
.cons-block {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pros-block {
  border-left: 4px solid var(--color-success);
}

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

.pros-block h3,
.cons-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.pros-block ul,
.cons-block ul {
  list-style: none;
  padding: 0;
}

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

.pros-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
  font-size: 18px;
}

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

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

.jackpots-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-accent);
}

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

.jackpot-card {
  background: linear-gradient(135deg, rgba(130, 197, 220, 0.2) 0%, rgba(2, 141, 198, 0.1) 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jackpot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(130, 197, 220, 0.3);
}

.jackpot-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-text-light);
}

.jackpot-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-warning);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.btn-play {
  background-color: var(--color-btn-signup);
  color: var(--color-text-light);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-play:hover {
  background-color: #0277a8;
  transform: scale(1.05);
}

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

.winners-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-accent);
}

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

.winners-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.05);
}

.winners-table thead {
  background: linear-gradient(135deg, var(--color-btn-login) 0%, var(--color-btn-signup) 100%);
}

.winners-table thead th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: var(--color-text-light);
}

.winners-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.winners-table tbody tr:hover {
  background-color: rgba(130, 197, 220, 0.1);
}

.winners-table tbody td {
  padding: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.winners-table tbody tr:nth-child(1) td:first-child,
.winners-table tbody tr:nth-child(2) td:first-child,
.winners-table tbody tr:nth-child(3) td:first-child {
  font-weight: 700;
  color: var(--color-warning);
}

/* Popular Games Section */
.popular-games-section {
  margin-bottom: 50px;
}

.popular-games-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--color-accent);
}

.games-slider-wrapper {
  overflow: hidden;
}

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

.game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(130, 197, 220, 0.3);
}

.game-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-card h4 {
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px 5px;
  color: var(--color-text-light);
}

.game-provider {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 20px 15px;
}

.btn-game {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  background-color: var(--color-btn-signup);
  color: var(--color-text-light);
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
}

.btn-game:hover {
  background-color: #0277a8;
}

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

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

.author-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.author-info h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: var(--color-text-light);
}

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

.author-bio {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #0077b5;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #006399;
  transform: translateY(-2px);
}

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

.footer-content {
  color: rgba(255, 255, 255, 0.9);
}

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

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

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav h4,
.footer-info h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.footer-nav ul,
.footer-info ul {
  list-style: none;
  padding: 0;
}

.footer-nav li,
.footer-info li {
  margin-bottom: 10px;
}

.footer-nav a,
.footer-info a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-info a:hover {
  color: var(--color-accent);
}

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

.footer-contact a {
  color: var(--color-accent);
}

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

.footer-payments h4,
.footer-providers h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-accent);
}

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

.payment-logos img,
.provider-logos img {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

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

.footer-license,
.footer-copyright,
.footer-legal {
  margin-bottom: 15px;
}

.footer-license p,
.footer-copyright p,
.footer-legal p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-btn-signup) 0%, #0277a8 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.sticky-widget.visible {
  transform: translateY(0);
}

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

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

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

.widget-info {
  display: flex;
  flex-direction: column;
}

.widget-info strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-light);
}

.widget-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.btn-widget {
  background-color: white;
  color: var(--color-btn-signup);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

.btn-widget:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.widget-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.3s ease;
}

.widget-close:hover {
  transform: scale(1.2);
}

/* Unused styles for uniqueness */
.unused-style-1 {
  display: none;
}
.unused-style-2 {
  visibility: hidden;
}
.unused-style-3 {
  opacity: 0;
}
.unused-style-4 {
  position: absolute;
  left: -9999px;
}
.unused-style-5 {
  font-size: 0;
}
.z9x8c7v6 {
  color: transparent;
}
.b5n4m3l2 {
  background: none;
}
.k1j2h3g4 {
  border: 0;
}
.f5d6s7a8 {
  margin: 0;
}
.q9w8e7r6 {
  padding: 0;
}
