* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
}

body {
  background: #0a0b12;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(255, 51, 51, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(255, 102, 102, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(24, 28, 36, 0.8) 0%, #0a0b12 100%);
  color: #f8fafd;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 16px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, rgba(255, 51, 51, 0.08) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

#bg-dots-canvas {
  position: fixed;
  inset: 0;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.8px) brightness(0.6) contrast(1.2);
  opacity: 0.4;
}

#main-content {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* === HEADER === */
.clean-header {
  background: linear-gradient(135deg, rgba(24, 28, 36, 0.85) 0%, rgba(16, 18, 26, 0.9) 100%);
  border-bottom: 1px solid rgba(255, 51, 51, 0.3);
  box-shadow: 
    0 8px 32px rgba(255, 51, 51, 0.15),
    0 1px 0 0 rgba(255, 51, 51, 0.2) inset,
    0 -1px 0 0 rgba(255, 255, 255, 0.03) inset;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.clean-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 51, 51, 0.6) 50%, transparent 100%);
}

.clean-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 40px;
  justify-content: space-between;
  gap: 20px;
}

.clean-header-logo-title {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.clean-logo {
  height: 52px;
  width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(24, 28, 36, 0.8) 100%);
  box-shadow: 
    0 4px 16px rgba(255, 51, 51, 0.3),
    0 0 0 1px rgba(255, 51, 51, 0.2) inset;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6px;
}

.clean-logo:hover {
  box-shadow: 
    0 6px 24px rgba(255, 51, 51, 0.5),
    0 0 0 1px rgba(255, 51, 51, 0.4) inset;
  transform: scale(1.05) rotate(-2deg);
  background: linear-gradient(135deg, rgba(255, 51, 51, 0.15) 0%, rgba(24, 28, 36, 0.9) 100%);
}

}

.clean-header-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ff3333 0%, #ff6666 50%, #ff8888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  text-shadow: 0 0 40px rgba(255, 51, 51, 0.3);
  filter: drop-shadow(0 2px 8px rgba(255, 51, 51, 0.4));
  position: relative;
}

.clean-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.clean-nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 12px;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}

.clean-nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.clean-nav-link:hover::before {
  opacity: 1;
}

.clean-nav-link:hover {
  color: #fff;
  background: rgba(255, 51, 51, 0.1);
  border-color: rgba(255, 51, 51, 0.3);
  box-shadow: 0 4px 16px rgba(255, 51, 51, 0.2);
  transform: translateY(-2px);
}

.clean-nav-icon {
  font-size: 1.3em;
  filter: drop-shadow(0 2px 4px rgba(255, 51, 51, 0.3));
}

/* === MODERN FILTERS === */
.ciko-filters {
  display: flex;
  gap: 16px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.6) 0%, rgba(24, 28, 36, 0.4) 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 51, 51, 0.25);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 51, 51, 0.1) inset;
  justify-content: center;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  position: relative;
  overflow: hidden;
}

.ciko-filters::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 51, 51, 0.5) 50%, transparent 100%);
}

.ciko-select {
  flex: 1;
  max-width: 500px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.6) 0%, rgba(24, 28, 36, 0.8) 100%) !important;
  border: 1.5px solid rgba(255, 51, 51, 0.25);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  backdrop-filter: blur(12px);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 51, 51, 0.1) inset;
  position: relative;
}

.ciko-select option {
  background: rgba(24, 28, 36, 0.98) !important;
  color: #fff !important;
  padding: 12px;
  font-weight: 600;
}

.ciko-select:hover {
  border-color: rgba(255, 51, 51, 0.5);
  box-shadow: 
    0 6px 24px rgba(255, 51, 51, 0.25),
    0 0 0 1px rgba(255, 51, 51, 0.2) inset;
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.7) 0%, rgba(24, 28, 36, 0.9) 100%) !important;
  transform: translateY(-2px);
}

.ciko-select:focus {
  border-color: rgba(255, 51, 51, 0.7);
  box-shadow: 
    0 8px 32px rgba(255, 51, 51, 0.3),
    0 0 0 1px rgba(255, 51, 51, 0.3) inset;
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.8) 0%, rgba(24, 28, 36, 1) 100%) !important;
  transform: translateY(-2px);
}

.ciko-casinos-container {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ciko-casino-card {
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.6) 0%, rgba(24, 28, 36, 0.4) 100%);
  border: 2px solid rgba(255, 51, 51, 0.3);
  border-radius: 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 160px 1fr 200px;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 51, 51, 0.1) inset;
  backdrop-filter: blur(12px);
}

.ciko-casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 51, 51, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.ciko-casino-card:hover {
  border-color: rgba(255, 51, 51, 0.8);
  box-shadow: 0 16px 48px rgba(255, 51, 51, 0.35), 0 0 80px rgba(255, 51, 51, 0.15), 0 0 0 1px rgba(255, 51, 51, 0.2) inset;
  transform: translateY(-5px) scale(1.01);
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.7) 0%, rgba(24, 28, 36, 0.5) 100%);
}

.ciko-rank-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(135deg, #ff3333 0%, #ff6666 100%);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(255, 51, 51, 0.5), 0 0 30px rgba(255, 51, 51, 0.3);
  border: 3px solid #0a0b12;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.ciko-casino-card:hover .ciko-rank-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 28px rgba(255, 51, 51, 0.6), 0 0 40px rgba(255, 51, 51, 0.4);
}

.ciko-logo-section {
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 51, 51, 0.15);
}

.ciko-logo-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.6) 0%, rgba(18, 21, 29, 0.4) 100%);
  border: 2px solid rgba(255, 51, 51, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 51, 51, 0.1) inset;
  transition: all 0.4s ease;
  overflow: hidden;
}

.ciko-casino-card:hover .ciko-logo-circle {
  border-color: rgba(255, 51, 51, 0.6);
  box-shadow: 0 6px 24px rgba(255, 51, 51, 0.4), 0 0 0 1px rgba(255, 51, 51, 0.2) inset;
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.8) 0%, rgba(18, 21, 29, 0.6) 100%);
}

.ciko-logo-img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.ciko-info-section {
  flex: 1;
  padding: 28px 24px;
}

.ciko-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.4) 0%, rgba(24, 28, 36, 0.3) 100%);
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 51, 51, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 51, 51, 0.05) inset;
  transition: all 0.3s ease;
}

.ciko-casino-card:hover .ciko-info-grid {
  border-color: rgba(255, 51, 51, 0.3);
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.5) 0%, rgba(24, 28, 36, 0.4) 100%);
}

.ciko-info-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 12px;
}

.ciko-info-item:hover {
  background: rgba(255, 51, 51, 0.05);
  transform: translateY(-2px);
}

.ciko-info-label {
  color: #ff6666;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  height: 20px;
  display: flex;
  align-items: center;
  text-shadow: 0 0 8px rgba(255, 51, 51, 0.3);
}

.ciko-info-value {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-shadow: 0 2px 16px rgba(255, 51, 51, 0.5), 0 0 8px rgba(255, 255, 255, 0.3);
  line-height: 1;
  white-space: nowrap;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ciko-info-sub {
  color: #ff8888;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  height: 16px;
  display: flex;
  align-items: center;
  text-shadow: 0 0 6px rgba(255, 51, 51, 0.3);
}

.ciko-action-section {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  min-width: 200px;
  border-left: 1px solid rgba(255, 51, 51, 0.15);
}

.ciko-tac-badge {
  background: linear-gradient(135deg, rgba(255, 51, 51, 0.15) 0%, rgba(255, 51, 51, 0.08) 100%);
  color: #ff6666;
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 800;
  border: 1.5px solid rgba(255, 51, 51, 0.3);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 51, 51, 0.05) inset;
  text-shadow: 0 0 8px rgba(255, 51, 51, 0.3);
  transition: all 0.3s ease;
}

.ciko-casino-card:hover .ciko-tac-badge {
  border-color: rgba(255, 51, 51, 0.5);
  background: linear-gradient(135deg, rgba(255, 51, 51, 0.2) 0%, rgba(255, 51, 51, 0.12) 100%);
  transform: scale(1.05);
}

.ciko-play-btn {
  background: linear-gradient(135deg, #ff3333 0%, #ff5555 100%);
  color: #fff;
  padding: 18px 40px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 51, 51, 0.6), 0 0 40px rgba(255, 51, 51, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.ciko-play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  border-radius: 50%;
}

.ciko-play-btn:hover::before {
  width: 300px;
  height: 300px;
}

.ciko-play-btn:hover {
  background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
  box-shadow: 0 8px 32px rgba(255, 51, 51, 0.8), 0 0 60px rgba(255, 51, 51, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transform: translateY(-4px) scale(1.03);
}

.ciko-play-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 4px 16px rgba(255, 51, 51, 0.7), 0 0 30px rgba(255, 51, 51, 0.3);
}

.ciko-more-info {
  color: #ff6666;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.05em;
  text-shadow: 0 0 8px rgba(255, 51, 51, 0.3);
}

.ciko-more-info:hover {
  color: #ff8888;
  text-shadow: 0 0 12px rgba(255, 51, 51, 0.5);
  transform: scale(1.05);
}

.ciko-details {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.5) 0%, rgba(24, 28, 36, 0.4) 100%);
  border-top: 1px solid rgba(255, 51, 51, 0.25);
}

.ciko-details.show {
  max-height: 600px;
}

.ciko-details-content {
  padding: 24px;
}

.ciko-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ciko-details-section h4 {
  color: #ff3333;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 51, 51, 0.3);
  padding-bottom: 8px;
}

.ciko-details-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ciko-details-section li {
  color: #b0b8c6;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.ciko-details-section li:hover {
  color: #fff;
  padding-left: 28px;
}

.ciko-details-section li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff3333;
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
}

.license-icon {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.payment-methods-grid img {
  width: 100%;
  height: 50px;
  object-fit: scale-down;
  background: rgba(24, 28, 36, 0.5);
  padding: 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 51, 51, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
}

.payment-methods-grid img:hover {
  border-color: #ff3333;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(255, 51, 51, 0.3);
}

/* === LEADERBOARD STYLES === */
.leaderboard-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.lb-header {
  background: linear-gradient(135deg, #232b38 0%, #181c24 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 3px solid #ff3333;
  box-shadow: 0 8px 32px rgba(255, 51, 51, 0.3);
  margin-bottom: 30px;
}

.lb-header img {
  max-width: 200px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.lb-header h1 {
  color: #ff3333;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(255, 51, 51, 0.5);
}

.subtitle {
  color: #ff6666;
  font-size: 1.3rem;
  font-weight: 700;
}

.info-box {
  background: #181c24;
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 40px;
  border: 2px solid #ff3333;
  box-shadow: 0 4px 16px rgba(255, 51, 51, 0.2);
  text-align: center;
}

.info-box p {
  color: #b0b8c6;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.join-now-button {
  background: linear-gradient(90deg, #ff3333 0%, #ff6666 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(255, 51, 51, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.join-now-button:hover {
  background: linear-gradient(90deg, #ff4444 0%, #ff7777 100%);
  box-shadow: 0 4px 16px rgba(255, 51, 51, 0.8);
  transform: translateY(-2px) scale(1.05);
}

.join-now-button:active {
  transform: translateY(0) scale(1.02);
}

.top-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.top-card {
  background: linear-gradient(135deg, #232b38 0%, #181c24 100%);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 3px solid #ff3333;
  box-shadow: 0 4px 16px rgba(255, 51, 51, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.top-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 51, 51, 0.4);
}

.top-card-1 {
  border-color: #ffd700;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.top-card-1:hover {
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
}

.rank-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff3333;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(255, 51, 51, 0.4);
}

.top-card-1 .rank-badge {
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
  color: #181c24;
}

.top-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 20px auto 16px;
  border: 3px solid #ff3333;
  box-shadow: 0 4px 12px rgba(255, 51, 51, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: #181c24;
}

.top-card-1 .top-avatar {
  border-color: #ffd700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.top-username {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.top-label {
  color: #ff6666;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 12px;
  text-transform: uppercase;
}

.top-wager, .top-prize {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  margin-top: 4px;
}

.top-card-1 .top-prize {
  color: #ffd700;
  font-size: 1.4rem;
}

.leaderboard-table {
  background: #181c24;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #ff3333;
  box-shadow: 0 4px 16px rgba(255, 51, 51, 0.2);
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 80px 1fr 150px 150px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 51, 51, 0.2);
  transition: all 0.2s ease;
}

.leaderboard-row:hover {
  background: rgba(255, 51, 51, 0.05);
}

.leaderboard-header-row {
  background: #232b38;
  font-weight: 900;
  color: #ff3333;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.leaderboard-header-row:hover {
  background: #232b38;
}

.rank-col, .player-col, .wager-col, .prize-col {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
}

.loading-spinner {
  border: 4px solid rgba(255, 51, 51, 0.2);
  border-top: 4px solid #ff3333;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === FOOTER === */
footer {
  margin-top: auto;
  flex-shrink: 0;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, rgba(35, 43, 56, 0.6) 0%, rgba(24, 28, 36, 0.8) 100%);
  padding: 32px 20px;
  border-top: 1px solid rgba(255, 51, 51, 0.25);
  box-shadow: 
    0 -8px 32px rgba(0, 0, 0, 0.4),
    0 1px 0 0 rgba(255, 51, 51, 0.1) inset;
  width: 100%;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 51, 51, 0.5) 50%, transparent 100%);
}

/* === LEADERBOARD CARD BUTTONS === */
.lb-claim-btn {
  background: rgba(255,51,51,0.3) !important;
  border: 2px solid #ff3333 !important;
  color: #fff !important;
  padding: 14px 24px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  text-align: center !important;
  box-shadow: 0 4px 16px rgba(255,51,51,0.2) !important;
  transition: all 0.3s ease !important;
  font-size: 1.05rem !important;
  display: block !important;
}

.lb-claim-btn:hover {
  background: rgba(255,51,51,0.6) !important;
  border-color: #ff6666 !important;
  box-shadow: 0 6px 24px rgba(255,51,51,0.5) !important;
  transform: translateY(-2px) !important;
}

.lb-view-btn {
  background: rgba(255,215,0,0.2) !important;
  border: 2px solid #ffd700 !important;
  color: #ffd700 !important;
  padding: 14px 24px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  text-align: center !important;
  box-shadow: 0 4px 16px rgba(255,215,0,0.2) !important;
  transition: all 0.3s ease !important;
  font-size: 1.05rem !important;
  display: block !important;
}

.lb-view-btn:hover {
  background: rgba(255,215,0,0.4) !important;
  border-color: #ffed4e !important;
  box-shadow: 0 6px 24px rgba(255,215,0,0.5) !important;
  transform: translateY(-2px) !important;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .clean-header-inner {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
    gap: 12px;
  }
  
  .ciko-casino-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .ciko-logo-section {
    padding: 20px;
  }
  
  .ciko-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ciko-action-section {
    padding: 20px;
  }
  
  .ciko-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .payment-methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .top-three {
    grid-template-columns: 1fr;
  }
  
  .leaderboard-row {
    grid-template-columns: 60px 1fr 100px 100px;
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .ciko-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .payment-methods-grid img {
    height: 45px;
  }
  
  .license-icon {
    width: 110px;
    height: 110px;
  }
}