/* Lounge home (lounge.html) — body bg in lounge-toon.css; home-only layout below */
.cf-home-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
}

.cf-toon .wheel-pointer {
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.25));
  background-color: #0284c7 !important;
  border-color: #0369a1 !important;
}

.cf-toon .chat-bubble-left::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 10px;
  border-width: 6px 8px 6px 0;
  border-style: solid;
  border-color: transparent #ffffff transparent transparent;
}
.cf-toon .chat-bubble-right::before {
  content: '';
  position: absolute;
  right: -6px;
  top: 10px;
  border-width: 6px 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #0ea5e9;
}

.cf-toon .has-tooltip { position: relative; }
.cf-toon .has-tooltip .tooltip {
  visibility: hidden;
  width: max-content;
  background-color: #1e293b;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 6px 12px;
  position: absolute;
  z-index: 100;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 0.75rem;
  font-weight: 800;
  border: 2px solid #334155;
  pointer-events: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.cf-toon .has-tooltip .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #1e293b transparent transparent transparent;
}
.cf-toon .has-tooltip:hover .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.cf-toon .carousel-dot {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.cf-toon .carousel-dot.active {
  background-color: white;
  transform: scale(1.4);
  width: 1.5rem;
  border-radius: 1rem;
  border-color: #cbd5e1;
}
