:root {
  --primary-color: #ff9fc9;
  --secondary-color: #ffc8e8;
  --accent-color: #c8b6ff;
  --soft-lavender: #e6d9ff;
  --cream: #fff5f7;
  --soft-pink: #ffe4f0;
  --text-dark: #8b5a7d;
  --glow-intensity: 0 0 15px;
  --bg-gradient-start: #fff0f7;
  --bg-gradient-end: #ffd4e8;
}

html {
  font-size: 18px;
}

@media (min-width: 900px) {
  html {
    font-size: 20px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 244, 247, 0.8);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ffb3d9 0%, #ffc8e8 100%);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(255, 159, 201, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff9fc9 0%, #ffb3d9 100%);
  box-shadow: 0 0 12px rgba(255, 159, 201, 0.5);
}

/* Universal cursor override */
* {
  cursor: url(https://r2.fakecrime.bio/assets/cursors/tiny-hand-with-heart.cur), auto !important;
}

/* Allow cursor to be hidden when grabbed */
.app[style*="cursor: none"],
.app[style*="cursor: none"] *,
div[style*="cursor: none"],
div[style*="cursor: none"] * {
  cursor: none !important;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(200, 182, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 200, 232, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 228, 240, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 9999;
  animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Soft Gradient Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 200, 232, 0.03),
    rgba(255, 200, 232, 0.03) 2px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 9998;
  animation: scanline 8s linear infinite;
}

@keyframes scanline {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100vh;
  }
}

::selection {
  background: var(--primary-color);
  color: #ffffff;
}

h1, h2 {
  color: var(--primary-color);
  text-shadow: 0 2px 8px rgba(255, 159, 201, 0.3);
  padding-bottom: 15px;
  margin: 1rem 0;
  font-weight: 700;
  letter-spacing: 2px;
}

.cute-title {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 30px;
  animation: rainbow-glow 3s ease-in-out infinite;
  border: none !important;
}

@keyframes rainbow-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 159, 201, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(200, 182, 255, 0.6));
  }
}

h1 {
  font-size: 2.2rem;
  line-height: 1.15;
}

@media (min-width: 900px) {
  h1 {
    font-size: 2.488rem;
  }
}

h2 {
  font-size: 1.4rem;
  line-height: 1.15;
}

@media (min-width: 900px) {
  h2 {
    font-size: 1.44rem;
  }
}

p {
  margin-top: 0.5rem;
}

a {
  color: #d97fb8;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
  text-shadow: 0 2px 6px rgba(255, 159, 201, 0.4);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .container {
    padding: 20px;
  }
}

.app {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  display: flex;
  box-shadow: 
    0 8px 32px rgba(255, 159, 201, 0.25), 
    0 0 0 1px rgba(255, 255, 255, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 3px solid var(--secondary-color);
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 2rem);
  margin: 1rem;
  overflow: hidden;
  animation: app-glow 4s ease-in-out infinite;
}

@keyframes app-glow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(255, 159, 201, 0.25), 
      0 0 0 1px rgba(255, 255, 255, 0.9),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: 
      0 8px 40px rgba(255, 159, 201, 0.35), 
      0 0 0 1px rgba(255, 255, 255, 0.9),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

.app--debug .grab-zone {
  background: rgba(255, 200, 232, 0.1);
}

.app--debug .grab-zone__debug {
  display: block;
}

.app--debug .grab-zone__danger {
  background: rgba(255, 200, 232, 0.1);
}

.app--debug .grabber__arm-wrapper {
  background: rgba(255, 200, 232, 0.1);
}

.sparkle-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}

.terminal {
  display: none; /* Hide old terminal */
}

.cute-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 247, 0.9));
  padding: 30px;
  margin: 20px 0;
  border-radius: 30px;
  box-shadow: 
    0 10px 40px rgba(255, 159, 201, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 3px solid var(--secondary-color);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.cute-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 30px 30px 0 0;
}

.cute-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
  border-radius: 0 0 30px 30px;
}

.cute-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: center;
  margin: 15px 0;
  font-weight: 500;
}

@keyframes terminal-shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.terminal.no-border {
  border: none;
  background: none;
  padding: 15px;
}

.ascii-art {
  text-align: center;
  margin: 20px 0;
  color: var(--primary-color);
  font-family: monospace;
  white-space: pre;
  text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
}

#ascii-canvas {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  filter: drop-shadow(0 0 15px var(--primary-color));
}

/* Glitch Animation */
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

h1:hover {
  animation: glitch 0.3s infinite;
}

/* Glow pulse on hover */
.cute-card:hover {
  box-shadow: 
    0 15px 50px rgba(255, 159, 201, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

/* Button press effect */
button:active, .trap-button:active {
  transform: scale(0.95);
  transition: transform 0.1s;
}

@keyframes glow-pulse {
  0% {
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px rgba(255, 182, 193, 0.5);
  }
  50% {
    text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color), 0 0 40px rgba(255, 182, 193, 0.7);
  }
  100% {
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px rgba(255, 182, 193, 0.5);
  }
}

.blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  from, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.grab-zone-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(30%) translateY(50%);
}

.grab-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 700px;
  height: 700px;
  border-radius: 50%;
}
.grab-zone__danger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  border-radius: 50%;
}
.grab-zone__debug {
  display: none;
  position: absolute;
  width: 300px;
  top: -100px;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}

.grabber {
  position: relative;
  width: 100px;
  height: 100px;
}
.grabber__arm-wrapper {
  position: absolute;
  top: -80px;
  width: 24px;
  height: 260px;
}
.grabber__arm {
  position: relative;
  width: 24px;
  height: 200px;
  background: linear-gradient(180deg, #f5d5c3 0%, #e8c4b0 100%);
  border: 2px solid #d4b5a0;
  border-radius: 20px;
  overflow: visible;
  transform: translateY(100%);
  transition: transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(212, 181, 160, 0.3);
}
.grabber__hand {
  display: block;
  position: absolute;
  top: -12px;
  transform: scale(1.4) rotate(-10deg) translateY(100%);
  transform-origin: bottom center;
  transition: transform 0.3s ease;
}
.grabber__face {
  position: absolute;
  width: 75px;
  height: 84px;
  right: 5%;
  transition: transform 0.3s ease;
}
.grabber__body {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 110px;
  height: 95px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0ddd0 0%, #e5cfc0 100%);
  border: 3px solid #d4b5a0;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 25px rgba(212, 181, 160, 0.3);
}
.grabber--waiting .grabber__hand {
  transform: scale(1.4) rotate(-10deg);
}
.grabber--waiting .grabber__arm {
  transform: translateY(80%);
}
.grabber--waiting .grabber__face {
  transform: translateY(60%);
}
.grabber--stalking .grabber__hand {
  transform: scale(1.4) rotate(-10deg);
}
.grabber--stalking .grabber__arm {
  transform: translateY(70%);
}
.grabber--stalking .grabber__face {
  transform: translateY(10%);
}
.grabber--grabbing .grabber__face {
  transform: translateY(-40%) rotate(10deg);
}
.grabber--grabbing .grabber__arm {
  transform: translateY(0%);
}
.grabber--grabbing .grabber__body {
  transform: translateY(-20%);
}
.grabber--grabbing .grabber__hand {
  transform: scale(1.7) rotate(10deg);
}
.grabber--grabbed .grabber__arm {
  transition: transform 1s ease;
}
.grabber--grabbed .grabber__hand {
  transition: transform 2.5s ease;
}
.grabber--grabbed .grabber__face {
  transform: translateY(70%);
  transition: transform 1s ease;
}
.grabber--grabbed .grabber__body {
  transform: translateY(50%);
  transition: transform 1s ease;
}
.grabber--extended .grabber__arm {
  transform: translateY(-20%);
}
.grabber--extended .grabber__face {
  transform: translateY(-60%) rotate(15deg);
}
.grabber--extended .grabber__body {
  transform: translateY(-40%);
}
.grabber--shaka .grabber__arm {
  transform: translateY(50%);
}
.grabber--shaka .grabber__hand {
  transform: scale(2.5) translateY(10%);
  -webkit-animation: shaka 0.5s infinite alternate forwards;
          animation: shaka 0.5s infinite alternate forwards;
  transform-origin: 55% 60%;
}
.grabber--shaka .grabber__face {
  transform: translateY(70%);
  transition: transform 1s ease;
}
.grabber--shaka .grabber__body {
  transform: translateY(50%);
  transition: transform 1s ease;
}

.trap-button {
  position: absolute;
  bottom: 80px;
  right: 70px;
  min-width: 150px;
  background: linear-gradient(135deg, #ff9fc9, #ffc8e8, #ff9fc9);
  background-size: 200% 200%;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  display: inline-block;
  padding: 15px 35px;
  margin: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 
    0 8px 25px rgba(255, 159, 201, 0.5),
    0 0 0 3px rgba(255, 255, 255, 0.8);
  animation: button-gradient 3s ease infinite;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 159, 201, 0.3);
}

@keyframes button-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.trap-button:hover {
  background: linear-gradient(135deg, #ff69b4, #ffd4e8, #ff69b4);
  box-shadow: 
    0 12px 35px rgba(255, 105, 180, 0.6),
    0 0 0 4px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 159, 201, 0.8);
  transform: translateY(-5px) scale(1.05);
}

.debug-button {
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 247, 0.9));
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent-color);
  color: var(--text-dark);
  padding: 10px 25px;
  margin: 1rem;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(200, 182, 255, 0.3);
  letter-spacing: 1px;
  opacity: 0.9;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 20px;
}

.debug-button:hover {
  box-shadow: 0 6px 20px rgba(200, 182, 255, 0.5);
  background: linear-gradient(135deg, var(--accent-color), var(--soft-lavender));
  color: #ffffff;
  transform: translateY(-2px);
}

.status-bar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  color: var(--text-dark);
  padding: 12px 20px;
  border-top: 3px solid var(--secondary-color);
  font-size: 0.8em;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10000;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  box-shadow: 0 -4px 20px rgba(255, 159, 201, 0.15);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .status-bar {
    font-size: 0.65em;
    padding: 6px 10px;
  }
  
  .status-bar span {
    display: inline-block;
    margin: 2px 5px;
  }
}

#spoiler-warning button:hover {
  background: var(--primary-color) !important;
  box-shadow: 0 6px 25px rgba(255, 159, 201, 0.4) !important;
  transform: scale(1.05);
  transition: all 0.3s;
}

@-webkit-keyframes shaka {
  0% {
    transform: scale(2.5) translateY(0%) rotate(-20deg);
  }
  100% {
    transform: scale(2.5) translateY(0%) rotate(20deg);
  }
}

@keyframes shaka {
  0% {
    transform: scale(2.5) translateY(0%) rotate(-20deg);
  }
  100% {
    transform: scale(2.5) translateY(0%) rotate(20deg);
  }
}

/* Interactive Cat Design - SVG Version */
.interactive-cat {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 150;
  cursor: pointer;
  user-select: none;
  width: 180px;
  height: 180px;
}

.interactive-cat:hover {
  transform: translateY(-50%) scale(1.05);
  transition: transform 0.2s ease;
}

#catImage {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(255, 159, 201, 0.3));
}

/* Interactive Teddy Design - SVG Version */
.interactive-teddy {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 150;
  cursor: pointer;
  user-select: none;
  width: 180px;
  height: 180px;
}

.interactive-teddy:hover {
  transform: translateY(-50%) scale(1.05);
  transition: transform 0.2s ease;
}

#teddyImage {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(255, 159, 201, 0.3));
}

/* Hover Tooltip */
.hover-tooltip {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 4px 15px rgba(255, 159, 201, 0.4);
  z-index: 200;
}

.hover-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--secondary-color);
}

.interactive-cat:hover .hover-tooltip,
.interactive-teddy:hover .hover-tooltip {
  transform: translateX(-50%) scale(1);
}

.interactive-cat.animating .hover-tooltip,
.interactive-teddy.animating .hover-tooltip {
  display: none;
}

/* Cat Emotion Bubble */
.cat-emoji-bubble {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 8px 20px rgba(255, 159, 201, 0.4);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.cat-emoji-bubble.show {
  transform: translateX(-50%) scale(1);
}


/* Heart particles on teddy click */
@keyframes heart-burst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

/* ===============================================
   MOBILE RESPONSIVE STYLES
   =============================================== */

/* Tablet and smaller */
@media (max-width: 1024px) {
  .interactive-cat,
  .interactive-teddy {
    width: 140px;
    height: 140px;
  }
  
  .app {
    margin: 20px;
    padding: 30px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  /* Cat and teddy on mobile */
  .interactive-cat {
    position: fixed;
    top: auto;
    bottom: 100px;
    left: 15px;
    width: 90px;
    height: 90px;
    transform: none;
    z-index: 999;
  }
  
  .interactive-cat:hover {
    transform: scale(1.05);
  }
  
  .interactive-teddy {
    position: fixed;
    top: auto;
    bottom: 100px;
    right: 15px;
    width: 90px;
    height: 90px;
    transform: none;
    z-index: 999;
  }
  
  .interactive-teddy:hover {
    transform: scale(1.05);
  }
  
  .hover-tooltip {
    font-size: 0.7rem;
    padding: 5px 10px;
    top: -35px;
  }
  
  .app {
    margin: 15px;
    padding: 20px;
    width: calc(100% - 30px);
    margin-bottom: 180px;
  }
  
  .cute-title {
    font-size: 1.5rem !important;
    letter-spacing: 1px !important;
    margin-bottom: 15px !important;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.2rem;
  }
  
  p {
    font-size: 0.9rem;
  }
  
  .cute-card {
    padding: 20px;
    margin: 15px 0;
  }
  
  .cute-text {
    font-size: 1rem;
  }
  
  .trap-button,
  .debug-button {
    padding: 10px 20px;
    font-size: 14px;
    min-height: 44px; /* Touch-friendly size */
  }
  
  .status-bar {
    font-size: 0.7rem;
    padding: 8px 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .status-bar span {
    margin: 2px 5px;
  }
  
  /* Grabber adjustments for mobile */
  .grabber {
    display: none; /* Hide on mobile as it's hard to use */
  }
  
  /* ASCII art smaller on mobile */
  #ascii-canvas {
    height: 120px !important;
  }
  
  .ascii-art {
    min-height: 120px !important;
  }
  
  .trap-button {
    min-width: 180px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .interactive-cat {
    width: 70px;
    height: 70px;
    bottom: 80px;
    left: 10px;
  }
  
  .interactive-teddy {
    width: 70px;
    height: 70px;
    bottom: 80px;
    right: 10px;
  }
  
  .hover-tooltip {
    font-size: 0.65rem;
    padding: 4px 8px;
    top: -30px;
  }
  
  .app {
    margin: 10px;
    padding: 15px;
    margin-bottom: 150px;
  }
  
  .cute-title {
    font-size: 1.2rem !important;
    letter-spacing: 0.5px !important;
  }
  
  h1 {
    font-size: 1.2rem;
  }
  
  h2 {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.85rem;
  }
  
  .cute-card {
    padding: 15px;
    margin: 12px 0;
  }
  
  .cute-text {
    font-size: 0.9rem;
  }
  
  .trap-button,
  .debug-button {
    padding: 8px 16px;
    font-size: 12px;
    width: 100%;
    margin: 10px 0;
  }
  
  .status-bar {
    font-size: 0.6rem;
    padding: 6px 8px;
  }
  
  #spoiler-warning {
    width: 95%;
    padding: 20px;
  }
  
  #spoiler-warning h2 {
    font-size: 1.3em;
  }
  
  #spoiler-warning button {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  /* Cursor trail effects off on mobile for performance */
  .sparkle-bg {
    opacity: 0.2;
  }
  
  /* Hide ASCII art on very small screens */
  .ascii-art {
    display: none;
  }
  
  .trap-button {
    min-width: 160px;
  }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .interactive-cat {
    bottom: 15px;
    left: 10px;
    width: 60px;
    height: 60px;
  }
  
  .interactive-teddy {
    bottom: 15px;
    right: 10px;
    width: 60px;
    height: 60px;
  }
  
  .hover-tooltip {
    display: none;
  }
  
  .app {
    margin: 10px;
    padding: 15px;
    margin-bottom: 100px;
  }
  
  .cute-title {
    font-size: 1rem !important;
  }
  
  .ascii-art {
    display: none;
  }
  
  .status-bar {
    font-size: 0.65rem;
    padding: 8px;
  }
}

.heart-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  animation: heart-burst 1s ease-out forwards;
}