/* Olimpbet KZ Stylesheet v2.8.4 */

:root {
  --color-header: #22125b;
  --color-footer: #22125b;
  --color-login: #8476b5;
  --color-register: #ffd571;
  --color-bg: #13083c;
  --color-text: #ffffff;
  --color-text-dark: #1a1a1a;
  --font-primary: 'Lato', sans-serif;
}

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

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

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

.px94container {
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Unused styles for uniqueness */
.xr9legacy-class { display: none; }
.kp2old-wrapper { visibility: hidden; }
.vb8deprecated { opacity: 0; }

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

.ty3logo-wrap img {
  max-width: 180px;
  height: auto;
}

.gh6nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.gh6nav-menu .nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 15px;
  border-radius: 5px;
}

.gh6nav-menu .nav-link:hover {
  color: var(--color-register);
  background: rgba(255, 213, 113, 0.1);
}

.ux6online-count {
  font-size: 14px;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.wq2icon {
  animation: pulse 2s infinite;
}

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

/* Buttons */
.kp4btn-login {
  background-color: var(--color-login);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.kp4btn-login:hover {
  background-color: #9587c5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(132, 118, 181, 0.4);
  color: white;
}

.lq8btn-register {
  background-color: var(--color-register);
  color: var(--color-text-dark);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.lq8btn-register:hover {
  background-color: #ffe08a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 213, 113, 0.4);
  color: var(--color-text-dark);
}

/* Burger Menu */
.hn9burger-menu {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  margin-left: 15px;
}

.hn9burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.yn3mobile-nav {
  list-style: none;
  padding: 20px;
  background: rgba(34, 18, 91, 0.95);
  margin-top: 10px;
  border-radius: 10px;
}

.yn3mobile-nav li {
  margin-bottom: 15px;
}

.yn3mobile-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.yn3mobile-nav a:hover {
  background: rgba(255, 213, 113, 0.2);
}

/* Hero Section */
.fs1hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a0d4a 0%, #0d0528 100%);
  position: relative;
  overflow: hidden;
}

.fs1hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(132, 118, 181, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.aw9hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--color-text);
}

.bp7hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: #d4d4d4;
}

.dq6hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.xe3feature-item {
  font-size: 16px;
  color: var(--color-text);
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--color-register);
}

.kl5btn-hero {
  background: linear-gradient(135deg, var(--color-register) 0%, #ffdb7a 100%);
  color: var(--color-text-dark);
  font-size: 18px;
  font-weight: 800;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 213, 113, 0.3);
}

.kl5btn-hero:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 213, 113, 0.5);
  color: var(--color-text-dark);
}

.yu4hero-banner img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.og4section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.og4section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-register) 0%, transparent 100%);
}

/* Advantages Section */
.ws7advantages-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.iv9advantage-card {
  background: linear-gradient(135deg, rgba(34, 18, 91, 0.8) 0%, rgba(26, 13, 74, 0.8) 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
}

.iv9advantage-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-register);
  box-shadow: 0 15px 40px rgba(255, 213, 113, 0.2);
}

.rh2card-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.uj6card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-register);
}

.mn8card-text {
  font-size: 15px;
  color: #d4d4d4;
  line-height: 1.6;
}

.pz3mirrors-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.yb6update-time {
  color: #d4d4d4;
  font-style: italic;
}

.qx7mirrors-table {
  background: rgba(34, 18, 91, 0.6);
  border-radius: 15px;
  overflow: hidden;
  color: var(--color-text);
}

.qx7mirrors-table thead {
  background: var(--color-header);
}

.qx7mirrors-table th {
  padding: 20px;
  font-weight: 700;
  border: none;
  color: var(--color-text);
}

.qx7mirrors-table td {
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.1);
  color: #1a1a1a;
}

.kw9status-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.status-active {
  background: #28a745;
  color: white;
}

.lo3btn-mirror {
  background-color: var(--color-register);
  color: var(--color-text-dark);
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.lo3btn-mirror:hover {
  background-color: #ffe08a;
  transform: scale(1.05);
  color: var(--color-text-dark);
}

/* Tournaments Section */
.hj8tournaments-section {
  margin-bottom: 40px;
}

.mb4tournament-card {
  background: linear-gradient(135deg, rgba(34, 18, 91, 0.9) 0%, rgba(26, 13, 74, 0.9) 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
}

.mb4tournament-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-login);
  box-shadow: 0 20px 50px rgba(132, 118, 181, 0.3);
}

.fp7tournament-header {
  background: linear-gradient(135deg, var(--color-login) 0%, #6f5ea0 100%);
  padding: 20px;
}

.xv2tournament-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

.gq9tournament-body {
  padding: 25px;
}

.dn5tournament-desc {
  color: #d4d4d4;
  margin-bottom: 20px;
}

.wk3prize-info {
  background: rgba(255, 213, 113, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-register);
}

.yx8prize-label {
  display: block;
  font-size: 14px;
  color: #d4d4d4;
  margin-bottom: 5px;
}

.ah1prize-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-register);
}

.bl6timer-wrap {
  margin-bottom: 20px;
}

.rb4timer-label {
  display: block;
  font-size: 14px;
  color: #d4d4d4;
  margin-bottom: 10px;
}

.pn2timer-days, .pn2timer-hours, .pn2timer-mins {
  display: inline-block;
  background: rgba(132, 118, 181, 0.3);
  padding: 8px 12px;
  border-radius: 8px;
  margin-right: 8px;
  font-weight: 700;
  color: var(--color-text);
}

.zt8btn-tournament {
  background-color: var(--color-register);
  color: var(--color-text-dark);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.zt8btn-tournament:hover {
  background-color: #ffe08a;
  transform: translateY(-3px);
  color: var(--color-text-dark);
}

/* Swiper for Mobile */
.nj7tournaments-swiper {
  padding-bottom: 50px;
}

.swiper-pagination-bullet {
  background: var(--color-register);
}

/* Video Section */
.km2video-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.ud9video-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.fv6video-iframe {
  border: none;
}

.tp4author-info {
  color: #d4d4d4;
  line-height: 1.8;
}

.tp4author-info a {
  color: var(--color-register);
  text-decoration: none;
  transition: color 0.3s ease;
}

.tp4author-info a:hover {
  color: #ffe08a;
  text-decoration: underline;
}

/* Wheel Game Section */
.wh9wheel-section {
  background: linear-gradient(135deg, rgba(34, 18, 91, 0.6) 0%, rgba(26, 13, 74, 0.6) 100%);
  border-radius: 20px;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.qj3wheel-subtitle {
  color: #d4d4d4;
  font-size: 18px;
}

.lp6wheel-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mx8wheel-canvas {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.yq4spin-button {
  font-size: 20px;
  padding: 15px 50px;
}

.hx7wheel-result {
  width: 100%;
}

.cw1result-content {
  background: linear-gradient(135deg, rgba(132, 118, 181, 0.3) 0%, rgba(26, 13, 74, 0.3) 100%);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid var(--color-register);
}

.nz9result-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-register);
  margin-bottom: 15px;
}

.bk5result-text {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.ql2result-bonus {
  font-size: 24px;
  color: var(--color-text);
}

.ql2result-bonus strong {
  color: var(--color-register);
  font-size: 32px;
}

/* Reviews Section */
.rv5reviews-section {
  margin-bottom: 40px;
}

.jt2review-card {
  background: linear-gradient(135deg, rgba(34, 18, 91, 0.7) 0%, rgba(26, 13, 74, 0.7) 100%);
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.jt2review-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-login);
  box-shadow: 0 15px 40px rgba(132, 118, 181, 0.2);
}

.ck8review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.zq3review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--color-register);
}

.pm4author-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-text);
}

.sx1rating-stars {
  color: var(--color-register);
  font-size: 18px;
}

.bn9review-text {
  color: #d4d4d4;
  line-height: 1.7;
}

/* Review Form */
.wy8review-form-wrapper {
  background: rgba(34, 18, 91, 0.5);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(132, 118, 181, 0.3);
}

.vn6form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}

.gp2review-form .form-label {
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 8px;
}

.gp2review-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text);
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.gp2review-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-register);
  outline: none;
  color: var(--color-text);
  box-shadow: 0 0 0 3px rgba(255, 213, 113, 0.1);
}

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

.cx7footer-logo {
  margin-bottom: 20px;
}

.sd9footer-text {
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.6;
}

.pq1footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text);
}

.jk6footer-links {
  list-style: none;
  padding: 0;
}

.jk6footer-links li {
  margin-bottom: 12px;
}

.jk6footer-links a {
  color: #d4d4d4;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.jk6footer-links a:hover {
  color: var(--color-register);
}

.wn8payment-logos img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.zt5border-custom {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.hb2providers-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-text);
}

.km9providers-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.xc4provider-badge {
  background: rgba(132, 118, 181, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--color-text);
  font-weight: 600;
}

.lw7age-warning {
  font-weight: 700;
  color: #ff6b6b;
}

.vp3copyright {
  color: #b4b4b4;
  font-size: 14px;
  line-height: 1.6;
}

.uc2legal-info {
  color: #999;
  font-size: 12px;
}

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

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

.ko7widget-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.lv9widget-text {
  color: var(--color-text);
  font-size: 16px;
}

.qh6widget-btn {
  background-color: var(--color-register);
  color: var(--color-text-dark);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.qh6widget-btn:hover {
  background-color: #ffe08a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--color-text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .aw9hero-title {
    font-size: 32px;
  }
  
  .bp7hero-subtitle {
    font-size: 16px;
  }
  
  .og4section-title {
    font-size: 28px;
  }
  
  .ko7widget-content {
    flex-direction: column;
    text-align: center;
  }
  
  .lv9widget-text {
    font-size: 14px;
  }
  
  .mx5bottom-widget {
    padding: 10px 0;
  }
}

/* Unused Legacy Classes */
.wc4unused-legacy { display: none; }
.bn7old-style { visibility: hidden; }
.xp9deprecated-class { opacity: 0; }
