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

body {
  background: #0a0b12;
  background-image:
    radial-gradient(ellipse at 60% 0%, #13141a 0%, #0a0b12 100%),
    linear-gradient(120deg, #0a0b12 0%, #181c24 100%);
  color: #f8fafd;
  font-family: 'Inter', 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;
}

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

#main-content {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* HEADER */
.clean-header {
  background: rgba(16,18,26,0.98);
  border-bottom: 2.5px solid #9b59b6;
  box-shadow: 0 4px 32px rgba(155, 89, 182, 0.3), 0 2px 8px #000a;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

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

.clean-logo {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  background: #181c24;
  box-shadow: 0 2px 12px rgba(155, 89, 182, 0.4);
  object-fit: contain;
  transition: box-shadow 0.2s, transform 0.2s;
}

.clean-logo:hover {
  box-shadow: 0 0 18px rgba(155, 89, 182, 0.6);
  transform: scale(1.05);
}

.clean-header-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #9b59b6;
  text-shadow: 0 0 10px rgba(155, 89, 182, 0.3);
  white-space: nowrap;
}

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

.clean-nav-link {
  color: #b0b8c6;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s;
  text-decoration: none;
  white-space: nowrap;
}

.clean-nav-link:hover {
  color: #9b59b6;
}

.clean-nav-icon {
  font-size: 1.2em;
}

/* FILTERS */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px auto;
  justify-content: center;
  background: linear-gradient(90deg, #181c24 60%, #232b38 100%);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(155, 89, 182, 0.3);
  border: 2.5px solid #9b59b6;
  max-width: 900px;
}

.filters select {
  padding: 12px 20px;
  border-radius: 14px;
  border: 2.5px solid #9b59b6;
  background: #181c24;
  color: #c77dff;
  font-size: 1rem;
  font-weight: 800;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
  min-width: 140px;
  flex: 1;
  cursor: pointer;
}

.filters select:hover {
  border-color: #8e44ad;
  box-shadow: 0 0 16px rgba(142, 68, 173, 0.5);
  transform: translateY(-2px);
}

.filters select:focus {
  border-color: #8e44ad;
  box-shadow: 0 0 12px rgba(142, 68, 173, 0.6);
  background: #0f1118;
}

.filters select option {
  background: #0f1118;
  color: #c77dff;
  font-weight: 700;
  padding: 10px;
}

/* CASINO CARDS */
.casino-card {
  margin: 30px auto;
  padding: 40px 24px 24px;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(155, 89, 182, 0.2);
  border: 2.5px solid #9b59b6;
  max-width: 1080px;
  width: 100%;
  position: relative;
  background: linear-gradient(120deg, #181c24 60%, #232b38 100%);
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.2s ease;
}

.casino-card:hover {
  box-shadow: 0 6px 24px rgba(155, 89, 182, 0.35);
  border-color: #c77dff;
  transform: translateY(-2px);
}

.casino-title {
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #9b59b6;
  background: linear-gradient(90deg, #181c24e6 80%, #232b38cc 100%);
  padding: 8px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(155, 89, 182, 0.6);
  z-index: 3;
  text-shadow: 0 0 6px rgba(155, 89, 182, 0.6);
}

.casino-layout {
  display: grid;
  grid-template-columns: 140px 1fr 150px;
  align-items: center;
  gap: 24px;
}

.casino-card > div:first-of-type:not(.casino-title) {
  display: grid;
  grid-template-columns: 140px 1fr 150px;
  align-items: center;
  gap: 24px;
}

.casino-logo {
  width: 120px !important;
  height: 120px !important;
  min-width: 120px !important;
  min-height: 120px !important;
  max-width: 120px !important;
  max-height: 120px !important;
  margin: 0 auto !important;
  display: block !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  background: #232b38 !important;
  box-shadow: 0 2px 8px rgba(155, 89, 182, 0.3) !important;
  border: 2.5px solid #9b59b6 !important;
  transition: all 0.2s ease;
  padding: 8px !important;
}

.casino-logo:hover {
  box-shadow: 0 2px 12px rgba(155, 89, 182, 0.4);
  border-color: #c77dff;
  transform: scale(1.03);
}

.casino-info {
  background: #232b38;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
  padding: 14px 8px;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px;
  border: 1.5px solid #9b59b6;
  width: 100%;
  box-sizing: border-box;
}

.info-block {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px;
  text-align: center;
  background: rgba(155, 89, 182, 0.04);
  border-radius: 10px;
  gap: 4px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.info-block:hover {
  background: rgba(155, 89, 182, 0.12);
  transform: scale(1.02);
}

.info-block .label {
  color: #9b59b6;
  font-size: 0.9rem;
  font-weight: 800;
  text-shadow: 0 0 4px rgba(155, 89, 182, 0.6);
}

.info-block .value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(199, 125, 255, 0.3);
}

.sub-text {
  color: #c77dff;
  font-size: 0.85rem;
  font-weight: 800;
  display: block;
  text-shadow: 0 0 6px rgba(199, 125, 255, 0.3);
}

.play-now {
  background: linear-gradient(120deg, #181c24 80%, #232b38 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(155, 89, 182, 0.3);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border: 2px solid #9b59b6;
}

.play-now .top-text {
  color: #9b59b6;
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 0 4px rgba(155, 89, 182, 0.6);
}

.bonus-button {
  background: linear-gradient(90deg, #9b59b6 10%, #8e44ad 90%);
  color: #fff;
  font-weight: 900;
  padding: 12px 20px;
  border-radius: 9px;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(155, 89, 182, 0.5);
  transition: all 0.13s;
  border: none;
  width: 100%;
}

.bonus-button:hover {
  background: linear-gradient(90deg, #8e44ad 10%, #9b59b6 90%);
  box-shadow: 0 4px 16px rgba(155, 89, 182, 0.6);
  transform: scale(1.06);
}

.more-info {
  font-size: 0.8rem;
  font-weight: 800;
  color: #9b59b6;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.13s;
}

.more-info.active {
  color: #c77dff;
}

.more-details {
  display: none;
  margin-top: 18px;
  background: #232b38;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(155, 89, 182, 0.3);
  border: 2px solid #9b59b6;
  animation: fadeIn 0.3s;
}

.more-details.show {
  display: block;
}

.more-details h4 {
  color: #9b59b6;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.more-details ul {
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 18px;
  color: #fff;
}

.more-details img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain !important;
  margin: 4px !important;
  border-radius: 6px !important;
  box-shadow: 0 1px 4px rgba(155, 89, 182, 0.3);
  background: #181c24;
  padding: 2px !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px);}
  to { opacity: 1; transform: none;}
}

/* FOOTER */
footer {
  margin-top: auto;
  flex-shrink: 0;
  text-align: center;
  font-size: 1rem;
  color: #b0b8c6;
  background: linear-gradient(90deg, #181c24 60%, #232b38 100%);
  padding: 30px 20px;
  border-top: 2.5px solid #9b59b6;
  box-shadow: 0 -2px 18px rgba(155, 89, 182, 0.3);
  width: 100%;
}

/* CONTACT ICONS HOVER */
.contact-icon {
  transition: all 0.3s ease !important;
}

.contact-icon:hover {
  transform: translateY(-5px) scale(1.1) !important;
  box-shadow: 0 4px 20px rgba(155, 89, 182, 0.6) !important;
  background: linear-gradient(135deg, #9b59b6, #8e44ad) !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .clean-header-inner {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
    gap: 12px;
  }
  
  .clean-header-title {
    font-size: 1.5rem;
  }
  
  .casino-layout,
  .casino-card > div:first-of-type:not(.casino-title) {
    grid-template-columns: 120px 1fr 140px !important;
  }
  
  .casino-info {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .casino-layout,
  .casino-card > div:first-of-type:not(.casino-title) {
    grid-template-columns: 85px 1fr 120px !important;
  }
  
  .casino-logo {
    width: 75px !important;
    height: 75px !important;
    min-width: 75px !important;
    max-width: 75px !important;
    min-height: 75px !important;
    max-height: 75px !important;
  }
  
  .casino-info {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}