html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  user-select: none;
  position: relative;
}

/* Clase que se aplicará solo en desktopMode */
.desktop-background {
  background: #e6b3b3 url('../assets/fondo.jpg') no-repeat center center fixed;
  background-size: cover;
}

.soggy-img {
    position: absolute;
    pointer-events: none;
    opacity: 0.8;
}

.texto-loco {
    position: absolute;
    font-size: 2em;
    font-family: 'Comic Sans MS', cursive;
    font-weight: bold;
    color: white;
    opacity: 0.7;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.meow-cat {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    max-width: 80vw;
    max-height: 80vh;
    z-index: 9999;
    opacity: 0.7;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.meow-cat.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
}

.meow-cat.glitch-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.8;
}

#startBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    padding: 1em 2em;
    z-index: 9999;
    background: white;
    border: none;
    cursor: pointer;
    }

#wallpaper {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1000;
    pointer-events: none;
    filter: brightness(0.7);
    display: block;
    }

.loading-indicator {
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    z-index: 10000;
}