* { 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 wrapper */
#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 #00fff7;
  box-shadow: 0 4px 32px #00fff733, 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 8px rgba(0, 255, 247, 0.2);
  object-fit: contain;
  transition: box-shadow 0.2s, transform 0.2s;
}

.clean-logo:hover {
  box-shadow: 0 2px 12px rgba(0, 255, 247, 0.3);
  transform: scale(1.05);
}

.clean-header-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg,#00fff7 0%,#19e68c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  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: #00fff7;
}

.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 #00fff733;
  border: 2.5px solid #00fff7;
  max-width: 900px;
}

.filters select {
  padding: 12px 20px;
  border-radius: 14px;
  border: 2.5px solid #00fff7;
  background: #181c24;
  color: #00fff7;
  font-size: 1rem;
  font-weight: 800;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 2px 8px #00fff733;
  min-width: 140px;
  flex: 1;
  cursor: pointer;
}

.filters select:hover {
  border-color: #19e68c;
  box-shadow: 0 0 16px #19e68c88;
  transform: translateY(-2px);
}

.filters select:focus {
  border-color: #19e68c;
  box-shadow: 0 0 12px #19e68c99;
  background: #0f1118;
}

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

/* === CASINO CARDS === */
.casino-card {
  margin: 30px auto;
  padding: 40px 24px 24px;
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(0, 255, 247, 0.15);
  border: 2.5px solid #00e6e6;
  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(0, 255, 247, 0.25);
  border-color: #00fff7;
  transform: translateY(-2px);
}

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

.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(0, 255, 247, 0.3) !important;
  border: 2.5px solid #00fff7 !important;
  transition: all 0.2s ease;
  padding: 8px !important;
}

.casino-logo:hover {
  box-shadow: 0 2px 12px rgba(0, 255, 247, 0.4);
  border-color: #19e68c;
  transform: scale(1.03);
}

.casino-info {
  background: #232b38;
  border-radius: 10px;
  box-shadow: 0 2px 8px #00fff733;
  padding: 14px 8px;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px;
  border: 1.5px solid #00fff7;
  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(0,255,247,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(0,255,247,0.08);
  transform: scale(1.02);
}

.info-block .label {
  color: #00fff7;
  font-size: 0.9rem;
  font-weight: 800;
  text-shadow: 0 0 4px #00fff799;
}

.info-block .value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 0 8px #19e68c55;
}

.sub-text {
  color: #19e68c;
  font-size: 0.85rem;
  font-weight: 800;
  display: block;
  text-shadow: 0 0 6px #19e68c55;
}

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

.play-now .top-text {
  color: #00fff7;
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 0 4px #00fff799;
}

.bonus-button {
  background: linear-gradient(90deg,#00fff7 10%,#19e68c 90%);
  color: #181c24;
  font-weight: 900;
  padding: 12px 20px;
  border-radius: 9px;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 0 8px #00fff799;
  transition: all 0.13s;
  border: none;
  width: 100%;
}

.bonus-button:hover {
  background: linear-gradient(90deg,#19e68c 10%,#00fff7 90%);
  box-shadow: 0 0 16px #00fff799;
  transform: scale(1.06);
}

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

.more-info.active {
  color: #19e68c;
}

.more-details {
  display: none;
  margin-top: 18px;
  background: #232b38;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 2px 12px #00fff733;
  border: 2px solid #00fff7;
  animation: fadeIn 0.3s;
}

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

.more-details h4 {
  color: #00fff7;
  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[alt*="Mastercard"],
.more-details img[alt*="Visa"],
.more-details img[alt*="Paysafecard"],
.more-details img[alt*="Crypto"],
.more-details img[alt*="Maestro"],
.more-details img[alt*="Sofort"],
.more-details img[alt*="N26"],
.more-details img[alt*="DKB"],
.more-details img[alt*="Sparkasse"],
.more-details img[alt*="Mifinity"],
.more-details img[alt*="Binance"],
.more-details img[alt*="ApplePay"],
.more-details img[alt*="Paypal"],
.more-details img[alt*="Jeton"],
.more-details img[alt*="Revolut"],
.more-details img[alt*="Neosurf"] {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain !important;
  margin: 4px !important;
  border-radius: 6px !important;
  box-shadow: 0 1px 4px #00fff733;
  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 #00fff7;
  box-shadow: 0 -2px 18px #00fff733;
  width: 100%;
}

/* === LEADERBOARD HOVER-EFFEKTE === */

/* Hover für alle 4 Tab-Buttons oben */
.leaderboard-tab {
  transition: all 0.25s ease;
}

.leaderboard-tab:hover {
  background: linear-gradient(135deg, #232b38 80%, #181c24 100%) !important;
  box-shadow: 0 4px 16px rgba(0, 255, 247, 0.3) !important;
  transform: translateY(-3px) scale(1.02);
}

.leaderboard-tab.active {
  background: linear-gradient(135deg, #232b38 80%, #181c24 100%) !important;
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.4) !important;
  border: 2px solid #00fff7;
}

.leaderboard-tab:active {
  transform: translateY(-1px) scale(0.98);
}

/* Hover für die 3 großen Casino-Karten im Leaderboard */
.leaderboard-wrapper > div > div[style*="background:linear-gradient"] {
  transition: all 0.25s ease;
}

/* Spezifischer Selector für die 3 Casino-Karten */
div[style*="min-width:320px"][style*="max-width:320px"] {
  transition: all 0.25s ease !important;
  cursor: pointer;
}

div[style*="min-width:320px"][style*="max-width:320px"]:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 8px 32px rgba(0, 255, 247, 0.35), 0 4px 16px rgba(25, 230, 140, 0.25) !important;
}

/* Hover für "CLAIM BONUS" Button im Leaderboard */
.claim-bonus-gold {
  transition: all 0.2s ease;
}

.claim-bonus-gold:hover {
  background: linear-gradient(90deg,#ffe066 10%,#ffd700 90%) !important;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4) !important;
  transform: scale(1.05);
}

.claim-bonus-gold:active {
  transform: scale(0.98);
}

/* Hover für Leaderboard Badge */
.leaderboard-badge-gold {
  transition: all 0.2s ease;
}

div[style*="min-width:320px"][style*="max-width:320px"]:hover .leaderboard-badge-gold {
  text-shadow: 0 2px 24px rgba(255, 215, 0, 0.8), 0 0 12px rgba(255, 224, 102, 0.8) !important;
}

/* === RESPONSIVE === */

/* Tablets und kleinere Laptops */
@media (max-width: 1100px) {
  .clean-header-inner {
    padding: 0 20px;
  }
  
  .casino-card {
    max-width: 95%;
    padding: 36px 20px 20px;
  }
}

/* Ab 900px: Info-Grid wird 2x2 */
@media (max-width: 900px) {
  .clean-header-inner {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
    gap: 12px;
  }
  
  .clean-header-title {
    font-size: 1.5rem;
  }
  
  .clean-header-nav {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
  
  .clean-nav-link {
    font-size: 0.95rem;
    padding: 6px 10px;
  }
  
  .filters {
    padding: 16px;
    gap: 10px;
  }
  
  .filters select {
    min-width: 120px;
    font-size: 0.9rem;
    padding: 10px 16px;
  }
  
  .casino-layout,
  .casino-card > div:first-of-type:not(.casino-title) {
    grid-template-columns: 120px 1fr 140px !important;
    gap: 16px !important;
  }
  
  .casino-logo {
    width: 110px !important;
    height: 110px !important;
    max-width: 110px !important;
    max-height: 110px !important;
    min-width: 110px !important;
    min-height: 110px !important;
    margin: 0 auto 12px;
  }
  
  .casino-info {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 12px;
  }
  
  .play-now {
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
  }
}

/* Tablets Hochformat - 800px spezifisch */
@media (max-width: 800px) {
  .casino-card {
    padding: 32px 16px 20px;
  }
  
  .casino-layout,
  .casino-card > div:first-of-type:not(.casino-title) {
    grid-template-columns: 110px 1fr 130px !important;
    gap: 14px !important;
  }
  
  .casino-logo {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
  }
  
  .casino-info {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 12px 10px !important;
  }
  
  .info-block {
    padding: 10px 6px !important;
  }
  
  .info-block .label {
    font-size: 0.9rem;
  }
  
  .info-block .value {
    font-size: 1.05rem;
  }
}

/* Ab 700px: Noch kompakter */
@media (max-width: 700px) {
  body {
    font-size: 15px;
  }
  
  .clean-header-title {
    font-size: 1.3rem;
  }
  
  .clean-logo {
    width: 40px;
    height: 40px;
  }
  
  .filters {
    padding: 12px;
    gap: 8px;
  }
  
  .filters select {
    min-width: 100%;
    font-size: 0.85rem;
  }
  
  .casino-card {
    margin: 24px auto;
    padding: 28px 12px 18px;
  }
  
  .casino-layout,
  .casino-card > div:first-of-type:not(.casino-title) {
    grid-template-columns: 100px 1fr 130px !important;
    gap: 12px !important;
  }
  
  .casino-logo {
    width: 90px !important;
    height: 90px !important;
    max-width: 90px !important;
    max-height: 90px !important;
    min-width: 90px !important;
    min-height: 90px !important;
  }
  
  .casino-info {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 12px 8px !important;
  }
  
  .info-block {
    padding: 10px 6px !important;
  }
  
  .info-block .label {
    font-size: 0.85rem;
  }
  
  .info-block .value {
    font-size: 1rem;
  }
  
  .sub-text {
    font-size: 0.8rem;
  }
  
  .more-details {
    padding: 12px;
  }
  
  .more-details h4 {
    font-size: 1rem;
  }
  
  .more-details ul {
    font-size: 0.9rem;
  }
}

/* Smartphones Hochformat - 600px */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
  
  #main-content {
    padding: 0 8px;
  }
  
  .clean-header-inner {
    padding: 12px 8px;
  }
  
  .clean-header-title {
    font-size: 1.2rem;
  }
  
  .clean-logo {
    width: 38px;
    height: 38px;
  }
  
  .clean-nav-link {
    font-size: 0.85rem;
    padding: 5px 8px;
  }
  
  .filters {
    margin: 16px 8px;
    padding: 10px 8px;
  }
  
  .casino-card {
    margin: 20px 8px;
    padding: 30px 12px 18px;
    width: calc(100% - 16px);
  }
  
  .casino-title {
    font-size: 0.95rem;
    padding: 6px 12px;
  }
  
  .casino-layout,
  .casino-card > div:first-of-type:not(.casino-title) {
    grid-template-columns: 85px 1fr 120px !important;
    gap: 10px !important;
  }
  
  .casino-logo {
    width: 75px !important;
    height: 75px !important;
    max-width: 75px !important;
    max-height: 75px !important;
    min-width: 75px !important;
    min-height: 75px !important;
    padding: 5px !important;
  }
  
  .casino-info {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
    padding: 8px 4px !important;
  }
  
  .info-block {
    padding: 8px 4px !important;
  }
  
  .info-block .label {
    font-size: 0.75rem !important;
  }
  
  .info-block .value {
    font-size: 0.9rem !important;
  }
  
  .sub-text {
    font-size: 0.7rem !important;
  }
  
  .play-now {
    padding: 8px 6px !important;
  }
  
  .play-now .top-text {
    font-size: 0.7rem;
  }
  
  .bonus-button {
    font-size: 0.85rem !important;
    padding: 8px !important;
  }
  
  .more-info {
    font-size: 0.6rem !important;
  }
  
  .more-details {
    padding: 8px 4px !important;
  }
  
  .more-details img {
    width: 24px !important;
    height: 24px !important;
  }
}7rem !important;
  }
}

/* Smartphones Hochformat - ERZWUNGEN */
@media (max-width: 500px) {
  body {
    font-size: 14px;
  }
  
  #main-content {
    padding: 0 5px;
  }
  
  .clean-header-inner {
    padding: 10px 8px;
    gap: 8px;
  }
  
  .clean-header-title {
    font-size: 1.1rem;
  }
  
  .clean-logo {
    width: 36px;
    height: 36px;
  }
  
  .clean-header-nav {
    gap: 6px;
    width: 100%;
  }
  
  .clean-nav-link {
    font-size: 0.8rem;
    padding: 4px 6px;
    gap: 3px;
  }
  
  .clean-nav-icon {
    font-size: 0.9em;
  }
  
  .filters {
    margin: 14px 5px;
    padding: 10px 6px;
    gap: 6px;
  }
  
  .filters select {
    font-size: 0.85rem;
    padding: 9px 10px;
    min-width: 100%;
  }
  
  .casino-card {
    margin: 18px 5px;
    padding: 26px 8px 14px;
    border-radius: 14px;
    width: calc(100% - 10px);
  }
  
  .casino-title {
    font-size: 0.9rem;
    padding: 5px 10px;
    top: -10px;
    left: -6px;
  }
  
  .casino-layout,
  .casino-card > div:first-of-type:not(.casino-title) {
    grid-template-columns: 80px 1fr 110px !important;
    gap: 8px !important;
  }
  
  .casino-logo {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    min-height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    padding: 5px !important;
  }
  
  .casino-info,
  div.casino-info[style],
  .casino-card .casino-info {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 6px !important;
    padding: 8px 4px !important;
    box-sizing: border-box !important;
    flex-direction: unset !important;
  }
  
  .info-block,
  div.info-block[style],
  .casino-info .info-block {
    padding: 7px 3px !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .info-block .label {
    font-size: 0.7rem !important;
  }
  
  .info-block .value {
    font-size: 0.85rem !important;
    word-break: break-word;
  }
  
  .sub-text {
    font-size: 0.65rem !important;
  }
  
  .play-now {
    width: 100% !important;
    max-width: 110px !important;
    padding: 8px 4px !important;
    box-sizing: border-box !important;
  }
  
  .play-now .top-text {
    font-size: 0.65rem;
  }
  
  .bonus-button {
    font-size: 0.8rem !important;
    padding: 7px !important;
    width: 100% !important;
  }
  
  .more-info {
    font-size: 0.65rem !important;
  }
  
  .more-details {
    padding: 10px 6px !important;
  }
  
  .more-details h4 {
    font-size: 0.9rem !important;
  }
  
  .more-details ul {
    font-size: 0.82rem !important;
  }
  
  .more-details img {
    width: 28px !important;
    height: 28px !important;
  }
  
  footer {
    font-size: 0.85rem;
    padding: 18px 10px;
  }
}

/* Sehr kleine Smartphones */
@media (max-width: 380px) {
  #main-content {
    padding: 0 3px;
  }
  
  .clean-header-title {
    font-size: 0.95rem;
  }
  
  .clean-logo {
    width: 32px;
    height: 32px;
  }
  
  .clean-nav-link {
    font-size: 0.75rem;
    padding: 3px 5px;
  }
  
  .filters {
    margin: 12px 3px;
    padding: 10px 6px;
  }
  
  .casino-card {
    margin: 16px 3px;
    padding: 24px 6px 12px;
    width: calc(100% - 6px);
  }
  
  .casino-title {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
  
  .casino-layout,
  .casino-card > div:first-of-type:not(.casino-title) {
    grid-template-columns: 70px 1fr 100px !important;
    gap: 6px !important;
  }
  
  .casino-logo {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    padding: 4px !important;
  }
  
  .casino-info {
    padding: 6px 3px !important;
    gap: 4px !important;
  }
  
  .info-block {
    padding: 6px 2px !important;
  }
  
  .info-block .label {
    font-size: 0.65rem !important;
  }
  
  .info-block .value {
    font-size: 0.8rem !important;
  }
  
  .sub-text {
    font-size: 0.6rem !important;
  }
  
  .play-now {
    padding: 6px 3px !important;
    max-width: 100px !important;
  }
  
  .bonus-button {
    font-size: 0.75rem !important;
    padding: 6px !important;
  }
  
  .more-info {
    font-size: 0.