/* Suck Vac — KinitoPET-style subdued, friendly */
/* https://www.kinitopet.com/ */

:root {
  --primary: #5b9bd5;
  --primary-dark: #4a8bc2;
  --primary-light: #e8f4fc;
  --text: #333;
  --text-muted: #666;
  --bg: #fafbfc;
  --bg-alt: #f0f4f8;
  --border: #e1e8ed;
  --success: #6ab187;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none !important;
}

/* Website falling apart */
body.site-glitching {
  animation: body-glitch 0.15s ease-in-out infinite;
}

body.site-breaking {
  animation: body-break 0.5s ease-out forwards;
}

@keyframes body-glitch {
  0%, 90%, 100% { filter: none; }
  5% { filter: hue-rotate(90deg); }
  10% { filter: hue-rotate(-90deg); }
  15% { filter: brightness(1.2); }
  20% { filter: contrast(1.3); }
  25% { filter: none; }
}

@keyframes body-break {
  0% { filter: none; background: var(--bg); }
  30% { filter: hue-rotate(-30deg) saturate(2); background: #1a0a0a; }
  60% { filter: hue-rotate(-60deg); background: #0a0a0a; }
  100% { filter: none; background: #000; }
}

.section-glitch {
  animation: section-shake 0.1s ease-in-out infinite !important;
}

.section-glitch:nth-child(odd) {
  animation: section-shake 0.08s ease-in-out infinite, section-red 2s ease-in-out infinite !important;
}

@keyframes section-shake {
  0%, 100% { transform: translate(0); }
  10% { transform: translate(-2px, 1px); }
  20% { transform: translate(2px, -1px); }
  30% { transform: translate(-1px, 2px); }
  40% { transform: translate(1px, -2px); }
  50% { transform: translate(-2px, -1px); }
  60% { transform: translate(2px, 1px); }
  70% { transform: translate(1px, 2px); }
  80% { transform: translate(-1px, -1px); }
  90% { transform: translate(1px, 1px); }
}

@keyframes section-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; box-shadow: inset 0 0 30px rgba(255,0,0,0.3); }
}

/* Game overlay */
#game-overlay {
  position: fixed;
  inset: 0;
  background: #e8f4fc;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#game-overlay.hidden {
  display: none !important;
}

.game-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  z-index: 10003;
}

#game-instructions {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid var(--primary);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  z-index: 10002;
  text-align: center;
  max-width: 90%;
}

#game-instructions.hidden {
  display: none !important;
}

.game-progress {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  z-index: 10002;
}

.game-progress.hidden {
  display: none !important;
}

.game-progress.game-complete {
  background: var(--success);
  animation: progress-bounce 0.5s ease-in-out;
}

@keyframes progress-bounce {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.12); }
  100% { transform: translateX(-50%) scale(1); }
}

.game-secret-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: secret-fade-in 0.5s ease-out;
}

.game-secret-text {
  color: #f00;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem;
  max-width: 90%;
  text-shadow: 0 0 20px #f00;
}

@keyframes secret-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

#dirt-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10002;
}

.dirt-spot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #8b7355, #5c4033);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  animation: dirt-pulse 2.5s ease-in-out infinite;
  transform: translate(-50%, -50%);
}

.dirt-spot.vacuuming {
  animation: dirt-sucked 0.4s ease-out forwards;
}

@keyframes dirt-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

@keyframes dirt-sucked {
  from { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  to { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

.game-vacuum {
  position: absolute;
  width: 95px;
  height: 115px;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  cursor: grab;
  z-index: 10003;
}

.game-vacuum:active {
  cursor: grabbing;
}

.game-vacuum.vacuum-suck .game-vacuum-img {
  animation: vacuum-suck 0.15s ease-out;
}

@keyframes vacuum-suck {
  0% { transform: scale(1); }
  50% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.game-vacuum-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* Demonic ending - hacking terminal */
#terminal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 45vh;
  min-height: 280px;
  max-height: 500px;
  background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  color: #00ff00;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.6;
  padding: 1.5rem 2rem;
  z-index: 99998;
  overflow: hidden;
  border-bottom: 3px solid #00ff00;
  box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
}

#terminal-overlay::before {
  content: 'SUCK_BUDDY_SYSTEM // UNAUTHORIZED_ACCESS';
  display: block;
  color: #00aa00;
  font-size: 12px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

#terminal-overlay.hidden {
  display: none !important;
}

#terminal-content {
  white-space: pre-wrap;
  word-break: break-all;
  overflow-y: auto;
  max-height: calc(45vh - 4rem);
}

#terminal-content::after {
  content: '_';
  animation: terminal-blink 1s step-end infinite;
  color: #00ff00;
}

@keyframes terminal-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

#demonic-vacs-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99997;
}

#demonic-vacs-container.hidden {
  display: none !important;
}

.demonic-vac {
  position: absolute;
  width: 70px;
  height: 85px;
  z-index: 99998;
}

.demonic-vac img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg) brightness(0.9);
}

.demonic-vac-bubble {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1a0a0a;
  color: #f00;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  margin-bottom: 4px;
  border: 1px solid #f00;
}

#shutdown-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#shutdown-overlay.hidden {
  display: none !important;
}

#shutdown-text {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
}

#shutdown-goodbye {
  color: #f00;
  font-size: 1.5rem;
  margin-top: 1rem;
}

/* Jumpscare */
#jumpscare-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#jumpscare-overlay.hidden {
  display: none !important;
}

#jumpscare-overlay.jumpscare-active {
  animation: jumpscare-bg 10s linear forwards;
}

#jumpscare-overlay.jumpscare-active.jumpscare-subtle {
  animation: none;
  background: rgba(0,0,0,0.85);
}

#jumpscare-overlay.jumpscare-subtle #jumpscare-content {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  text-shadow: none;
}

#jumpscare-content {
  color: #f00;
  font-weight: 900;
  text-align: center;
  padding: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px #f00, 0 0 40px #800;
  font-family: inherit;
  z-index: 100000;
  letter-spacing: 0.05em;
}

#jumpscare-content.jumpscare-glitch {
  animation: jumpscare-glitch 0.1s ease-in-out infinite;
}

@keyframes jumpscare-glitch {
  0%, 90%, 100% { transform: translate(0); filter: none; }
  5% { transform: translate(-3px, 2px); filter: hue-rotate(90deg); }
  10% { transform: translate(2px, -3px); filter: hue-rotate(-90deg); }
  15% { transform: translate(3px, 1px); filter: none; }
  20% { transform: translate(-2px, -2px); filter: brightness(1.5); }
  25% { transform: translate(0); filter: none; }
  30% { transform: translate(2px, 3px); filter: invert(0.1); }
  35% { transform: translate(-1px, -1px); filter: none; }
}

#jumpscare-img {
  position: absolute;
  width: 380px;
  max-width: 95vw;
  filter: invert(1) hue-rotate(180deg) brightness(0.85) contrast(1.2);
  animation: jumpscare-img-pulse 0.15s ease-in-out infinite alternate;
}

#jumpscare-img.jumpscare-show {
  display: block !important;
  animation: jumpscare-img-pulse 0.08s ease-in-out infinite alternate;
}

@keyframes jumpscare-bg {
  0% { background: #000; }
  3% { background: #fff; }
  5% { background: #f00; }
  7% { background: #000; }
  10% { background: #300; }
  12% { background: #000; }
  15% { background: #f00; }
  18% { background: #000; }
  22% { background: #400; }
  25% { background: #000; }
  28% { background: #f00; }
  32% { background: #000; }
  35% { background: #200; }
  40% { background: #000; }
  45% { background: #f00; }
  50% { background: #000; }
  55% { background: #300; }
  60% { background: #000; }
  70% { background: #100; }
  80% { background: #000; }
  90% { background: #100; }
  100% { background: #000; }
}

@keyframes jumpscare-img-pulse {
  from { transform: scale(1); opacity: 0.95; }
  to { transform: scale(1.05); opacity: 1; }
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo sup {
  font-size: 0.6em;
  opacity: 0.7;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--text);
}

nav a.nav-cta {
  color: var(--primary);
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 4rem 2rem 6rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-product {
  margin-top: 2rem;
}

.hero-img {
  width: 280px;
  height: auto;
  max-width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-radius: 24px;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 24px;
}

.btn-secondary:hover {
  background: var(--primary-light);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  width: 100%;
}

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.25rem 2rem;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-icon {
  color: var(--success);
  font-weight: 700;
}

/* Features */
.features {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(91, 155, 213, 0.12);
}

.feature-card.feature-highlight {
  border: 2px solid var(--primary);
  box-shadow: 0 4px 24px rgba(91, 155, 213, 0.25);
  background: var(--primary-light);
}

.feature-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* How it works */
.how-it-works {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial p {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--text);
}

.testimonial .author {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-user {
  border-left: 4px solid var(--primary);
}

.testimonial-appear {
  animation: fadeSlideIn 0.5s ease-out;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.superpower-badge {
  position: fixed;
  top: 80px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9990;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.superpower-badge .badge-icon {
  font-size: 1.2rem;
}

.superpower-badge.hidden {
  display: none !important;
}

.badge-appear {
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.suckvac-favorites {
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
  background: var(--bg-alt);
  border: 2px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.suckvac-favorites h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.suckvac-favorites ul {
  list-style: none;
}

.suckvac-favorites li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.suckvac-favorites li:last-child {
  border-bottom: none;
}

.favorites-appear {
  animation: fadeSlideIn 0.5s ease-out;
}

.favorite-item-appear {
  animation: fadeSlideIn 0.3s ease-out;
}

.favorite-snack {
  font-weight: 600;
  color: var(--primary);
}

.time-badge {
  position: fixed;
  bottom: 140px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9990;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-badge .badge-icon {
  font-size: 1.1rem;
}

.time-badge.hidden {
  display: none !important;
}

.funfact-card {
  position: fixed;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 340px;
  background: var(--bg-alt);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.funfact-card.hidden {
  display: none !important;
}

.funfact-appear {
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.funfact-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.funfact-close:hover {
  color: var(--text);
}

.funfact-card .funfact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.funfact-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text);
}

/* Order */
.order {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

.order-card {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
  background: var(--bg);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.order-img {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}

.order-info {
  flex: 1;
}

.order-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.order-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.order-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.order-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  padding: 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content {
  background: var(--bg);
  border-radius: 12px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-content.creepy {
  border: 2px solid #991b1b;
  background: #fef2f2;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-close:hover {
  color: var(--text);
}

#modal-body h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

#modal-body p {
  color: var(--text-muted);
  line-height: 1.6;
}

.color-wheel-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.color-wheel {
  width: 200px;
  height: 200px;
  min-width: 200px;
  min-height: 200px;
  flex-shrink: 0;
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid var(--border);
  background: conic-gradient(from 0deg, red, yellow, lime, cyan, blue, magenta, red);
  transition: transform 0.2s;
}

.color-wheel:hover {
  transform: scale(1.02);
}

.color-wheel-preview {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 2px solid var(--border);
  cursor: pointer;
  background: #3498db;
}

.color-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.color-wheel-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem !important;
}

/* Suck Vac Mascot */
#suckvac-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

#suckvac-container * {
  pointer-events: auto;
}

.intro-click-text {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 10002;
  pointer-events: auto;
}

.intro-click-text p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.intro-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.blackhole {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  margin-left: -100px;
  margin-top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #000 0%, #0a0a0a 30%, #1a1a1a 60%, transparent 80%);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.9), 0 0 80px rgba(0,0,0,0.6);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.blackhole.blackhole-active {
  animation: blackhole-spawn 2s ease-out forwards;
}

@keyframes blackhole-spawn {
  0% { transform: scale(0); opacity: 0; }
  25% { transform: scale(1.2); opacity: 1; }
  60% { transform: scale(1); opacity: 0.95; }
  100% { transform: scale(0); opacity: 0; }
}

#suckvac.mascot-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#suckvac.mascot-spin-out {
  animation: mascot-spin-out 0.5s ease-out forwards;
}

@keyframes mascot-spin-out {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#suckvac {
  position: fixed;
  width: 90px;
  height: 110px;
  bottom: 24px;
  left: 24px;
  cursor: pointer;
  z-index: 10000;
  will-change: transform;
}

#suckvac:hover {
  filter: brightness(1.05);
}

#suckvac.walking .suckvac-img {
  animation: vac-bounce 0.25s ease-in-out infinite alternate;
}

#suckvac.shake .suckvac-img {
  animation: none;
}

#suckvac.shake {
  animation: vac-shake 0.5s ease-in-out;
}

@keyframes vac-bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

@keyframes vac-shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-12px); }
  30% { transform: translateX(12px); }
  45% { transform: translateX(-8px); }
  60% { transform: translateX(8px); }
  75% { transform: translateX(-4px); }
}

.suckvac-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.speech-bubble {
  position: fixed;
  background: #fff;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 10001;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  max-width: 200px;
  border: 1px solid var(--border);
}

.speech-bubble.creepy {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
  }

  nav {
    gap: 1rem;
  }

  .hero {
    padding: 2rem 1rem 4rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  .trust-bar {
    gap: 1.5rem;
    padding: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .order-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .order-img {
    width: 140px;
  }

  .features, .how-it-works, .testimonials, .order {
    padding: 3rem 1rem;
  }

  #suckvac {
    width: 70px;
    height: 85px;
  }

  .modal {
    padding: 1rem;
  }

  .color-wheel {
    width: 160px;
    height: 160px;
    min-width: 160px;
    min-height: 160px;
  }
}

/* Responsive - Phone */
@media (max-width: 480px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  nav a {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .game-close {
    top: 12px;
    right: 16px;
    font-size: 1.75rem;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
  }

  #game-instructions {
    top: 12px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .game-progress {
    top: 56px;
    padding: 6px 16px;
    font-size: 0.9rem;
  }

  .modal {
    padding: 1rem;
    align-items: flex-start;
    padding-top: 2rem;
  }

  .modal-content {
    margin: auto;
  }

  nav a {
    padding: 0.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
