/* ============== GOOGLE GUARANTEED STRIP ============== */
.gg-strip {
  background: #fff;
  border-top: 2px solid #0e1a2b;
  border-bottom: 2px solid #0e1a2b;
  padding: 28px 0;
}
.gg-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.4fr;
  gap: 0;
  align-items: stretch;
}
.gg-grid > * {
  padding: 0 24px;
  border-right: 1px dashed rgba(13,15,18,0.15);
}
.gg-grid > *:last-child { border-right: none; }
.gg-badge {
  display: flex; align-items: center; gap: 14px;
}
.gg-shield { flex-shrink: 0; }
.gg-h, .gg-h2 {
  font-family: var(--serif); font-size: 18px; line-height: 1;
  letter-spacing: -0.01em;
  color: #0e1a2b;
}
.gg-h2 { color: #34A853; }
.gg-sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  color: rgba(13,15,18,0.65);
  margin-top: 4px;
}
.gg-stat { padding: 4px 24px; }
.gg-stat-stars {
  display: flex; align-items: baseline; gap: 8px;
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.gg-stat-num {
  font-family: var(--serif); font-size: 28px;
  color: #0e1a2b;
  letter-spacing: -0.02em;
  line-height: 1;
}
.gg-stat-num.accent { color: #2473c4; font-size: 36px; }
.gg-stat-unit { font-size: 14px; margin-left: 4px; color: rgba(13,15,18,0.6); }
.gg-stat-l {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: #0e1a2b;
  margin-top: 4px;
  font-weight: 700;
}
.gg-stat-tiny {
  font-size: 11px; line-height: 1.4;
  color: rgba(13,15,18,0.6);
  margin-top: 4px;
}

.gg-cta-wrap { display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.gg-cta {
  display: flex; align-items: center; gap: 10px;
  background: #2473c4;
  color: #0e1a2b;
  border: 2px solid #0e1a2b;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 4px 4px 0 #0e1a2b;
  transition: transform 0.1s, box-shadow 0.1s;
}
.gg-cta:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #0e1a2b; }
.gg-cta:active { transform: translate(2px, 2px); box-shadow: 0 0 0 #0e1a2b; }
.gg-cta-bolt { font-size: 22px; }
.gg-cta-l1, .gg-cta-l2 {
  display: block;
  font-family: var(--serif);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
}
.gg-cta-l1 { font-size: 12px; }
.gg-cta-l2 { font-size: 18px; }
.gg-cta-tiny { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; color: rgba(13,15,18,0.55); text-align: center; }

@media (max-width: 1100px) {
  .gg-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
  .gg-grid > * { border-right: none; border-bottom: 1px dashed rgba(13,15,18,0.15); padding: 12px 14px; min-width: 0; }
  .gg-grid > *:nth-last-child(-n+2) { border-bottom: none; }
  /* the "Get a Quote in 60 seconds" button needs the full row so its text doesn't clip */
  .gg-cta-wrap { grid-column: 1 / -1; border-bottom: none; }
  .gg-cta { justify-content: center; }
}

/* ============== QUICK QUOTE MODAL ============== */
.qq-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  z-index: 220;
  display: grid; place-items: center;
  padding: 16px;
  animation: qq-fade 0.2s ease;
}
@keyframes qq-fade { from { opacity: 0; } to { opacity: 1; } }
.qq-card {
  width: 100%; max-width: 480px;
  background: #fff;
  border: 2px solid #0e1a2b;
  box-shadow: 8px 8px 0 #0e1a2b;
  position: relative;
  max-height: 92vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: qq-pop 0.3s cubic-bezier(.5,1.7,.5,1);
}
@keyframes qq-pop {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.qq-head {
  position: relative;
  height: 140px;
  background: linear-gradient(135deg, #0e1a2b, #1a2638);
  border-bottom: 2px solid #0e1a2b;
  display: grid; place-items: center;
  overflow: hidden;
}
.qq-head-truck {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(74,179,255,0.08) 0 12px, transparent 12px 24px);
  display: grid; place-items: center;
}
.qq-head-truck-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
}
.qq-head-badge {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  padding: 6px 10px;
  border: 1px solid #0e1a2b;
  font-family: var(--serif); font-size: 10px; letter-spacing: 0.06em;
  line-height: 1.1;
}
.qq-x {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: #fff; border: 1px solid #0e1a2b;
  cursor: pointer;
  font-size: 20px; line-height: 1;
  z-index: 5;
}
.qq-x:hover { background: #2473c4; }
.qq-x-light { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); }

.qq-body {
  padding: 24px;
  overflow-y: auto;
}
.qq-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: rgba(13,15,18,0.6);
  margin-bottom: 6px;
}
.qq-h {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #0e1a2b;
}
.qq-sub {
  font-size: 13px; line-height: 1.5;
  color: rgba(13,15,18,0.7);
  margin: 0 0 18px;
}
.qq-fields { display: grid; gap: 12px; margin-bottom: 16px; }
.qq-field {
  display: flex; flex-direction: column; gap: 4px;
}
.qq-field > span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: rgba(13,15,18,0.7);
  font-weight: 700;
}
.qq-field em { font-style: normal; color: rgba(13,15,18,0.4); font-weight: 400; }
.qq-field input, .qq-field select {
  font: inherit;
  font-size: 15px;
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(13,15,18,0.2);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.qq-field input:focus, .qq-field select:focus { border-color: #2473c4; }

.qq-urgency-l {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: rgba(13,15,18,0.7);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.qq-urgency-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.qq-u {
  text-align: left;
  background: #fff;
  border: 1.5px solid rgba(13,15,18,0.15);
  padding: 8px 10px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 2px;
}
.qq-u:hover { border-color: #0e1a2b; }
.qq-u.on { background: #0e1a2b; border-color: #0e1a2b; color: #fff; }
.qq-u-l { font-family: var(--serif); font-size: 11px; letter-spacing: 0.04em; }
.qq-u-d { font-size: 10px; opacity: 0.6; font-family: var(--mono); }

.qq-submit {
  margin-top: 16px;
  width: 100%;
  background: rgba(13,15,18,0.15);
  color: rgba(13,15,18,0.4);
  border: 2px solid rgba(13,15,18,0.15);
  padding: 16px;
  cursor: not-allowed;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-family: var(--serif); font-size: 18px;
  letter-spacing: 0.04em;
  transition: all 0.15s;
}
.qq-submit.on {
  background: #2473c4; color: #0e1a2b; border-color: #0e1a2b;
  cursor: pointer;
  box-shadow: 4px 4px 0 #0e1a2b;
}
.qq-submit.on:hover {
  background: #4ab3ff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #0e1a2b;
}
.qq-submit-tiny { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; opacity: 0.7; }

.qq-trust {
  margin-top: 12px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: rgba(13,15,18,0.5);
}

/* SUCCESS STATE */
.qq-success {
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(52,168,83,0.06), #fff);
  position: relative;
}
.qq-success-check {
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.qq-check-ring {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: qq-ring 0.6s ease-out forwards;
}
.qq-check-tick {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: qq-tick 0.4s 0.5s ease-out forwards;
}
@keyframes qq-ring { to { stroke-dashoffset: 0; } }
@keyframes qq-tick { to { stroke-dashoffset: 0; } }

.qq-success-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: #34A853;
  font-weight: 700;
  margin-bottom: 6px;
}
.qq-success-h {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.qq-success-receipt {
  text-align: left;
  border: 1px dashed rgba(13,15,18,0.3);
  padding: 12px 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.qq-success-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(13,15,18,0.1);
  color: rgba(13,15,18,0.65);
}
.qq-success-row:last-child { border-bottom: none; }
.qq-success-row .v { color: #0e1a2b; font-weight: 700; }
.qq-success-row .v.accent { color: #2473c4; }
.qq-success-row .v.ok { color: #34A853; }
.qq-success-p {
  font-size: 13px; line-height: 1.5;
  color: rgba(13,15,18,0.7);
  margin: 0 0 16px;
}
.qq-success-call {
  display: inline-block;
  background: #0e1a2b;
  color: #4ab3ff;
  font-family: var(--serif); font-size: 22px;
  padding: 14px 28px;
  border: 2px solid #0e1a2b;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.qq-success-call:hover { background: #2473c4; color: #0e1a2b; }

/* ============== PIPE LOTTERY ============== */
.lot {
  background: #0e1a2b;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.lot-bg-dots {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(74,179,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.lot-card {
  max-width: 720px;
  margin: 0 auto;
  background: #1a2638;
  border: 3px solid #4ab3ff;
  position: relative;
  padding: 56px 36px 40px;
  box-shadow: 0 0 80px rgba(74,179,255,0.15);
}
.lot-bulbs {
  position: absolute;
  top: -8px; left: 0; right: 0;
  display: flex; justify-content: space-around;
}
.lot-bulb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #4ab3ff;
  box-shadow: 0 0 8px #4ab3ff, 0 0 16px rgba(74,179,255,0.6);
  animation: lot-blink 1.6s ease-in-out infinite;
}
@keyframes lot-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #4ab3ff, 0 0 16px rgba(74,179,255,0.6); }
  50% { opacity: 0.3; box-shadow: 0 0 4px #4ab3ff; }
}
.lot-head { text-align: center; margin-bottom: 28px; }
.lot-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: #4ab3ff;
  margin-bottom: 14px;
}
.lot-h {
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
.lot-h-stroke {
  -webkit-text-stroke: 2px #4ab3ff;
  color: transparent;
}
.lot-sub {
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin: 14px auto 0;
}

.lot-machine {
  background: #0e1a2b;
  border: 2px solid #4ab3ff;
  padding: 28px;
  margin-bottom: 24px;
  position: relative;
}
.lot-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.lot-reel {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f6 55%, #d8e0e8 100%);
  height: 110px;
  display: grid; place-items: center;
  overflow: hidden;
  border: 3px solid #b7c2cc;
  border-radius: 48% 48% 46% 46% / 34% 34% 64% 64%;
  box-shadow:
    inset 0 -12px 18px rgba(14,26,43,0.18),
    inset 0 8px 10px rgba(255,255,255,0.9),
    0 6px 0 #9fadb9;
  position: relative;
}
/* porcelain bowl water pool */
.lot-reel::before {
  content: '';
  position: absolute;
  left: 50%; top: 58%;
  width: 78%; height: 52%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, #9fd4ff 0%, #4ab3ff 55%, #2473c4 100%);
  border-radius: 50%;
  box-shadow: inset 0 4px 10px rgba(14,26,43,0.25);
  pointer-events: none;
  z-index: 0;
}
/* drain dot */
.lot-reel::after {
  content: '';
  position: absolute;
  left: 50%; top: 60%;
  width: 12px; height: 7px;
  transform: translate(-50%, -50%);
  background: #16456e;
  border-radius: 50%;
  z-index: 0;
}
.lot-reel-icon {
  font-size: 48px;
  display: block;
  line-height: 1;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 3px rgba(14,26,43,0.3));
}
.lot-reel-inner.spin .lot-reel-icon {
  animation: lot-flush 0.5s linear infinite;
}
/* 💩 orbiting the bowl during the flush */
.lot-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  animation: lot-orbit-spin 0.7s linear infinite;
  pointer-events: none;
}
.lot-orbit-poop {
  position: absolute;
  top: 50%; left: 50%;
  line-height: 1;
  animation: lot-poop-bob 1.1s ease-in-out infinite;
}
.lot-orbit-poop.p1 { transform: translate(-50%,-50%) rotate(0deg)   translateX(34px); font-size: 20px; }
.lot-orbit-poop.p2 { transform: translate(-50%,-50%) rotate(120deg) translateX(30px); font-size: 15px; animation-delay: 0.2s; }
.lot-orbit-poop.p3 { transform: translate(-50%,-50%) rotate(240deg) translateX(36px); font-size: 12px; animation-delay: 0.45s; }
@keyframes lot-orbit-spin {
  to { transform: rotate(360deg); }
}
@keyframes lot-poop-bob {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
/* flush swirl — icon spins down the bowl */
@keyframes lot-flush {
  0%   { transform: rotate(0deg) scale(1) translateY(-4px); opacity: 1; }
  50%  { transform: rotate(180deg) scale(0.55) translateY(6px); opacity: 0.6; }
  100% { transform: rotate(360deg) scale(1) translateY(-4px); opacity: 1; }
}
/* water swirl overlay while flushing */
.lot-reel-inner.spin::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(74,179,255,0.55) 0%, rgba(36,115,196,0.25) 45%, transparent 75%);
  animation: lot-swirl 0.7s linear infinite;
  pointer-events: none;
}
@keyframes lot-swirl {
  from { transform: rotate(0deg) scale(1.4); opacity: 0.8; }
  to   { transform: rotate(360deg) scale(1.4); opacity: 0.8; }
}
.lot-reel-inner { position: relative; width: 100%; height: 100%; display: grid; place-items: center; }
@keyframes lot-shake {
  0% { transform: translateY(-2px); }
  50% { transform: translateY(2px); }
  100% { transform: translateY(-2px); }
}

.lot-readout {
  text-align: center;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em;
  background: #050810;
  border: 1px solid rgba(74,179,255,0.3);
  padding: 10px;
  color: #4ab3ff;
  margin-bottom: 18px;
}
.lot-played { color: rgba(74,179,255,0.6); }
.lot-spinning { color: #2473c4; animation: lot-pulse 0.5s infinite; }
.lot-won { color: #50ff8a; font-weight: 700; }
@keyframes lot-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.lot-lever-row { display: grid; place-items: center; }
.lot-lever {
  background: none; border: none; cursor: pointer;
  position: relative;
  width: 80px; height: 100px;
  display: grid; place-items: end center;
  transition: transform 0.15s;
}
.lot-lever:hover { transform: translateY(-2px); }
.lot-lever:active { transform: translateY(2px); }
.lot-lever.disabled { opacity: 0.4; cursor: not-allowed; }
.lot-lever.disabled:hover { transform: none; }
.lot-lever-knob {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff8a4f, #2473c4, #b73a0e);
  box-shadow: 0 0 16px rgba(36,115,196,0.6), inset -4px -4px 8px rgba(0,0,0,0.3);
}
.lot-lever-stem {
  position: absolute;
  top: 18px;
  left: 50%; transform: translateX(-50%);
  width: 8px; height: 60px;
  background: linear-gradient(90deg, #888, #eee, #888);
}
.lot-lever-l {
  position: absolute;
  bottom: -22px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: #4ab3ff;
}

.lot-prize {
  margin-top: 28px;
  text-align: center;
  animation: qq-pop 0.5s cubic-bezier(.5,1.7,.5,1);
}
.lot-prize-tape {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em;
  color: #4ab3ff;
  background: linear-gradient(90deg, transparent, rgba(74,179,255,0.15), transparent);
  padding: 8px 0;
  margin-bottom: 14px;
}
.lot-prize-card {
  background: #fff;
  border: 3px solid #4ab3ff;
  padding: 24px;
  position: relative;
  margin-bottom: 18px;
}
.lot-prize-l {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: rgba(13,15,18,0.5);
  margin-bottom: 8px;
}
.lot-prize-big {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.lot-prize-d {
  font-size: 14px;
  color: rgba(13,15,18,0.7);
  margin: 8px 0 16px;
}
.lot-prize-code {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0e1a2b;
  color: #4ab3ff;
  padding: 10px 14px;
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.lot-prize-code span { font-size: 9px; letter-spacing: 0.2em; opacity: 0.6; }
.lot-prize-code strong { font-size: 16px; letter-spacing: 0.18em; }
.lot-copy {
  background: #4ab3ff; color: #0e1a2b; border: none;
  padding: 4px 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  cursor: pointer;
}
.lot-prize-foot {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  color: rgba(13,15,18,0.4);
}

.lot-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.lot-action {
  padding: 14px 22px;
  font-family: var(--serif); font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid;
}
.lot-action-primary { background: #2473c4; border-color: #2473c4; color: #0e1a2b; }
.lot-action-primary:hover { background: #4ab3ff; border-color: #4ab3ff; }
.lot-action-ghost { background: transparent; border-color: #4ab3ff; color: #4ab3ff; }
.lot-action-ghost:hover { background: #4ab3ff; color: #0e1a2b; }

.lot-replay { text-align: center; margin: 16px 0 0; }
.lot-replay-btn {
  background: none; border: 1px dashed rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.4);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  padding: 6px 12px; cursor: pointer;
}

.lot-odds {
  margin-top: 28px;
  border-top: 1px dashed rgba(74,179,255,0.3);
  padding-top: 20px;
}
.lot-odds-h {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: rgba(74,179,255,0.7);
  text-align: center;
  margin-bottom: 14px;
}
.lot-odds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 16px;
}
.lot-odds-row {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}
.lot-odds-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lot-odds-pct { margin-left: auto; color: #4ab3ff; }

/* ============== GIANT TOILET — FLUSH LOTTERY ============== */
.gt-scene {
  display: grid;
  place-items: center;
  padding: 12px 0 4px;
}
.gt-toilet {
  position: relative;
  width: min(420px, 92%);
}
/* TANK */
.gt-tank {
  position: relative;
  width: 76%;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #e7edf2 70%, #cfd9e2 100%);
  border: 3px solid #b7c2cc;
  border-radius: 12px 12px 6px 6px;
  padding: 26px 16px 14px;
  box-shadow: inset 0 6px 8px rgba(255,255,255,0.9), inset 0 -8px 12px rgba(14,26,43,0.12);
}
.gt-tank-lid {
  position: absolute;
  top: -10px; left: -3%;
  width: 106%; height: 18px;
  background: linear-gradient(180deg, #ffffff, #dbe3ea);
  border: 3px solid #b7c2cc;
  border-radius: 10px;
  box-shadow: 0 3px 0 #9fadb9;
}
.gt-tank-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #6b7a8f;
}
/* FLUSH HANDLE — on the tank, like a real toilet */
.gt-handle {
  position: absolute;
  left: -14%;
  top: 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.15s;
  z-index: 3;
}
.gt-handle:hover { transform: scale(1.08); }
.gt-handle.pulled .gt-handle-bar { transform: rotate(28deg); }
.gt-handle.disabled { opacity: 0.45; cursor: not-allowed; }
.gt-handle.disabled:hover { transform: none; }
.gt-handle-bar {
  display: block;
  width: 46px; height: 14px;
  background: linear-gradient(180deg, #f4f7fa, #9aa6b8);
  border: 2px solid #0e1a2b;
  border-radius: 7px;
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(.5,1.7,.5,1);
  box-shadow: 0 2px 4px rgba(14,26,43,0.3);
}
.gt-handle-l {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #4ab3ff;
  font-weight: 700;
  animation: pulse 1.6s infinite;
}
.gt-handle.disabled .gt-handle-l { animation: none; }
/* BOWL */
.gt-bowl {
  position: relative;
  width: 100%;
  margin-top: -4px;
  background: linear-gradient(180deg, #ffffff 0%, #e7edf2 60%, #cfd9e2 100%);
  border: 3px solid #b7c2cc;
  border-radius: 50% 50% 46% 46% / 22% 22% 78% 78%;
  padding: 5%;
  box-shadow:
    inset 0 -16px 26px rgba(14,26,43,0.18),
    inset 0 10px 12px rgba(255,255,255,0.9),
    0 8px 0 #9fadb9;
  overflow: hidden;
}
.gt-water {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(ellipse at 50% 45%, #9fd4ff 0%, #4ab3ff 55%, #2473c4 100%);
  border-radius: 50%;
  box-shadow: inset 0 6px 14px rgba(14,26,43,0.3);
  overflow: hidden;
}
/* swirl overlay during flush */
.gt-swirl {
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(255,255,255,0.45) 40deg, transparent 80deg,
    rgba(255,255,255,0.3) 140deg, transparent 200deg,
    rgba(255,255,255,0.4) 280deg, transparent 340deg);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.gt-bowl.flushing .gt-swirl {
  opacity: 1;
  animation: gt-swirl-spin 0.6s linear infinite;
}
@keyframes gt-swirl-spin {
  to { transform: rotate(360deg); }
}
/* decorative poops bobbing in the water */
.gt-poop {
  position: absolute;
  font-size: 26px;
  line-height: 1;
  z-index: 2;
  animation: gt-bob 2.4s ease-in-out infinite;
  filter: drop-shadow(0 2px 2px rgba(14,26,43,0.3));
}
.gt-poop.gp1 { left: 26%; top: 30%; }
.gt-poop.gp2 { left: 62%; top: 56%; font-size: 20px; animation-delay: 0.5s; }
.gt-poop.gp3 { left: 44%; top: 22%; font-size: 16px; animation-delay: 1s; }
.gt-bowl.flushing .gt-poop {
  animation: gt-poop-swirl 0.9s ease-in-out infinite;
}
@keyframes gt-bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-6px) rotate(5deg); }
}
@keyframes gt-poop-swirl {
  0%, 100% { transform: translateX(0) rotate(-12deg); }
  50% { transform: translateX(10px) rotate(14deg); }
}
/* coupon chips floating in the bowl */
.gt-chip {
  position: absolute;
  z-index: 3;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #0e1a2b;
  border: 2px solid #0e1a2b;
  border-radius: 99px;
  box-shadow: 0 3px 6px rgba(14,26,43,0.35);
  animation: gt-bob 2.8s ease-in-out infinite;
  transition: left 0.9s cubic-bezier(.6,-0.2,1,.6), top 0.9s cubic-bezier(.6,-0.2,1,.6),
              transform 0.9s cubic-bezier(.6,-0.2,1,.6), opacity 0.8s ease;
  white-space: nowrap;
}
.gt-chip:nth-child(odd) { animation-delay: 0.4s; }
/* ============== COLORED TURDS — each color is a payout ============== */
.gt-turd {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  animation: gt-bob 2.8s ease-in-out infinite;
  transition: left 0.9s cubic-bezier(.6,-0.2,1,.6), top 0.9s cubic-bezier(.6,-0.2,1,.6),
              transform 0.9s cubic-bezier(.6,-0.2,1,.6), opacity 0.8s ease;
}
.gt-turd:nth-child(odd) { animation-delay: 0.4s; }
.gt-turd:nth-child(3n) { animation-delay: 0.9s; }
.gt-turd-emoji {
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 2px 3px rgba(14,26,43,0.35));
}
.gt-turd-amt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #0e1a2b;
  border: 2px solid #0e1a2b;
  border-radius: 99px;
  padding: 2px 7px;
  box-shadow: 0 2px 4px rgba(14,26,43,0.35);
  white-space: nowrap;
}
/* tier tints — different color poop per payout */
.t-p15 .gt-turd-emoji { filter: hue-rotate(165deg) saturate(1.8) drop-shadow(0 2px 3px rgba(14,26,43,0.35)); }
.t-p35 .gt-turd-emoji {
  font-size: 34px;
  filter: sepia(1) saturate(4) hue-rotate(-12deg) brightness(1.2) drop-shadow(0 0 8px rgba(255,210,61,0.9));
}
.t-p50 { z-index: 4; }
.t-p50 .gt-turd-emoji {
  font-size: 38px;
  filter: hue-rotate(225deg) saturate(2.2) brightness(1.1) drop-shadow(0 0 10px rgba(199,125,255,0.95));
  animation: gt-grand-glow 1.6s ease-in-out infinite alternate;
}
/* the crown on the GRAND TURD */
.t-p50::before {
  content: '\1F451';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-12deg);
  font-size: 16px;
  z-index: 5;
  filter: drop-shadow(0 0 6px rgba(255,210,61,0.9));
}
@keyframes gt-grand-glow {
  from { filter: hue-rotate(225deg) saturate(2.2) brightness(1.05) drop-shadow(0 0 6px rgba(199,125,255,0.7)); }
  to   { filter: hue-rotate(225deg) saturate(2.4) brightness(1.25) drop-shadow(0 0 16px rgba(199,125,255,1)); }
}
/* loser turd spirals into the drain */
.gt-turd.gone {
  left: 47% !important;
  top: 58% !important;
  transform: scale(0) rotate(720deg);
  opacity: 0;
  animation: none;
}
/* the survivor celebrates */
.gt-turd.stay {
  animation: gt-winner 1.2s cubic-bezier(.5,1.7,.5,1) infinite alternate;
  z-index: 5;
}
.gt-turd.stay .gt-turd-amt {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.6), 0 0 20px rgba(74,179,255,0.9);
}
/* 💩 confetti when you win */
.gt-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 6;
}
.gt-confetti span {
  position: absolute;
  top: -28px;
  font-size: 18px;
  animation: gt-fall 1.7s ease-in forwards;
}
@keyframes gt-fall {
  to { transform: translateY(480px) rotate(420deg); opacity: 0; }
}
/* golden $35 chip — the one everybody wants */
.gt-chip.gold {
  background: linear-gradient(135deg, #ffe27a 0%, #ffd23d 45%, #e0a92e 100%) !important;
  box-shadow: 0 0 0 2px rgba(255,210,61,0.5), 0 0 16px rgba(255,210,61,0.8), 0 3px 6px rgba(14,26,43,0.35);
  font-size: 12px;
  z-index: 4;
}
.gt-chip.gold::after {
  content: '★';
  margin-left: 4px;
  font-size: 9px;
}
/* loser chip spirals into the drain */
.gt-chip.gone {
  left: 47% !important;
  top: 58% !important;
  transform: scale(0) rotate(720deg);
  opacity: 0;
  animation: none;
}
/* winner chip stays — and celebrates */
.gt-chip.stay {
  animation: gt-winner 1.2s cubic-bezier(.5,1.7,.5,1) infinite alternate;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.5), 0 0 24px rgba(74,179,255,0.9);
  z-index: 4;
}
@keyframes gt-winner {
  from { transform: scale(1.1) rotate(-3deg); }
  to { transform: scale(1.35) rotate(3deg); }
}
/* drain at bottom of water */
.gt-drain {
  position: absolute;
  left: 50%; top: 62%;
  width: 26px; height: 14px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, #0a2a4a 0%, #16456e 100%);
  border-radius: 50%;
  z-index: 1;
}
/* pedestal + base */
.gt-pedestal {
  width: 34%;
  height: 34px;
  margin: -6px auto 0;
  background: linear-gradient(180deg, #dbe3ea, #b7c2cc);
  border: 3px solid #b7c2cc;
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.gt-base {
  width: 56%;
  height: 14px;
  margin: 0 auto;
  background: linear-gradient(180deg, #cfd9e2, #9fadb9);
  border: 3px solid #b7c2cc;
  border-radius: 8px;
  box-shadow: 0 5px 0 rgba(14,26,43,0.35);
}
@media (max-width: 700px) {
  .gt-handle { left: -10%; }
  .gt-handle-bar { width: 36px; }
  .gt-chip { font-size: 9px; padding: 4px 7px; }
  .gt-poop { font-size: 20px; }
}

@media (max-width: 700px) {
  .lot-card { padding: 40px 18px 28px; }
  .lot-machine { padding: 18px; }
  .lot-reel { height: 80px; }
  .lot-reel-icon { font-size: 44px; }
  .lot-odds-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============== STICKY QUOTE PILL ============== */
.quote-pill {
  position: fixed;
  right: 20px; top: 118px;
  transform: rotate(0deg);
  z-index: 89;
  background: #2473c4;
  color: #0e1a2b;
  border: 2px solid #0e1a2b;
  padding: 10px 16px;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 4px 4px 0 #0e1a2b;
  font-family: var(--serif); font-size: 12px;
  letter-spacing: 0.06em;
  animation: pill-wiggle 4s ease-in-out infinite;
}
@keyframes pill-wiggle {
  0%, 92%, 100% { transform: rotate(0deg); }
  94% { transform: rotate(-3deg); }
  96% { transform: rotate(3deg); }
  98% { transform: rotate(-2deg); }
}
.quote-pill:hover { background: #4ab3ff; transform: translateX(-2px); box-shadow: 6px 6px 0 #0e1a2b; }
.quote-pill-bolt { font-size: 16px; }

@media (max-width: 700px) {
  .quote-pill { display: none; }
}
