:root {
  --primary: #ffcb05;
  --secondary: #ff495c;
  --background: #6ee7b7;
  --accent: #4f46e5;
  --light: #fffbea;
  --shadow: 0 4px 24px rgba(0,0,0,0.15);
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Luckiest Guy', cursive, Arial, sans-serif;
  background: radial-gradient(circle at 60% 60%, #ffe9be 60%, var(--background) 100%);
  overflow-x: hidden;
}
.casino-header {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.casino-logo {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--secondary);
  padding: 20px 40px 20px 24px;
  border-radius: 60px 60px 60px 60px/80px 80px 40px 40px;
  box-shadow: var(--shadow), 0 0 40px 10px #fff5;
  border: 4px solid var(--accent);
  font-size: 2.3rem;
  position: relative;
  font-family: 'Luckiest Guy', cursive, Arial, sans-serif;
  letter-spacing: 4px;
  text-shadow: 0 4px #ffe3, 2px 2px #aaa3;
  margin-bottom: 8px;
  animation: logo-bounce 2.5s infinite cubic-bezier(.56,2,.53,.41);
  text-decoration: none;
}
@keyframes logo-bounce {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(-10px);}
}
.casino-logo .mascot {
  width: 54px;
  height: 54px;
  margin-right: 12px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #ff495c55;
}
.mascot svg { width: 38px; height: 38px; }
/* Cartoon slot machines nav */
.slot-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 14px 0 16px 0;
  flex-wrap: wrap;
}
.slot-nav .slot-machine {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s;
  cursor: pointer;
  text-decoration: none;
}
.slot-nav .slot-machine img {
  width: 62px;
  height: 62px;
  border-radius: 18px 18px 14px 14px;
  background: #fffbea;
  border: 2px solid var(--accent);
  box-shadow: 0 6px 18px #0002;
  margin-bottom: 5px;
  transition: transform 0.13s;
}
.slot-nav .slot-machine:hover img {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 6px 32px #0005;
}
.slot-nav .slot-label {
  color: var(--accent);
  background: #fffbea;
  padding: 2px 12px;
  border-radius: 15px;
  font-size: 1rem;
  letter-spacing: 1px;
  font-family: 'Luckiest Guy', cursive, Arial, sans-serif;
  margin-bottom: 2px;
  box-shadow: 0 2px 6px #0002;
}
.casino-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
}
.welcome {
  font-size:1.15rem;
  color:var(--accent);
  background:#fffbea;
  padding:8px 24px;
  border-radius:18px;
  margin-bottom:10px;
  box-shadow:0 2px 12px #0001;
  max-width: 90vw;
  text-align: center;
}
.cta-btn {
  margin-top: 24px;
  font-size: 2rem;
  background: linear-gradient(90deg,var(--secondary),var(--primary));
  color: #fff;
  padding: 18px 64px;
  border: none;
  border-radius: 40px;
  font-family: 'Luckiest Guy', cursive, Arial, sans-serif;
  box-shadow: 0 8px 28px #0002, 0 2px 12px #ff495c60;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.22s;
  outline: none;
  text-shadow: 0 2px #ff495c90;
  animation: cta-glow 2s infinite alternate;
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 48px #ff495c55, 0 6px 16px #ffcb0555;
}
@keyframes cta-glow {
  from { box-shadow: 0 8px 28px #0002, 0 2px 12px #ff495c60; }
  to { box-shadow: 0 16px 48px #ff495c90, 0 8px 24px #ffcb0590;}
}
.chips-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  margin-bottom: 8px;
}
.chip {
  width: 36px;
  height: 36px;
  background: var(--secondary);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px #0003;
  position: relative;
  overflow: hidden;
}
.chip:before {
  content: '';
  position: absolute;
  inset: 8px;
  background: #fffbea;
  border-radius: 50%;
}
.chip:after {
  content: '';
  position: absolute;
  top: 13px; left: 14px;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--secondary);
}
footer {
  text-align:center;
  color:#222;
  font-size:.92rem;
  opacity:.6;
  margin-top:30px;
  margin-bottom:18px;
}
@media (max-width: 800px) {
  .casino-logo {
    font-size: 1.3rem;
    padding: 12px 20px 12px 12px;
  }
  .slot-nav .slot-machine img {
    width: 42px; height: 42px;
  }
  .cta-btn {
    font-size: 1.3rem;
    padding: 12px 32px;
  }
}
@media (max-width: 500px) {
  .casino-header { margin-top: 14px;}
  .slot-nav { gap: 10px;}
  .casino-main { margin-top: 8px;}
  .chips-row { gap: 7px;}
}
