<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media (max-width: 600px) {
  #spotify-iframe {
    width: 80%;
    /* Full width on smaller screens */
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
  }

  #intro {
    top: 18%;
    width: 70%;
    right: 50%;
    transform: translateX(50%);
  }

  .draggable {
    transform: scale(1.3);
    /* Make elements 30% larger */
    touch-action: none;
    user-select: none;
  }

  /* Add this new style for touch feedback */
  .draggable.is-dragging {
    opacity: 0.8;
    transform: scale(1.1);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
    /* Bring to front while dragging */
  }

  .controls {
    transform: scale(0.85, 0.7);
    transform-origin: top center;
  }

  #tutorial,
  #webdance,
  #folder {
    top: 46%;
  }

  /* Center journal modal and container */
  .journal-modal {
    align-items: center;
    justify-content: center;
  }

  .journal-container {
    position: relative;
    width: 85vw !important;
    /* Wider on mobile */
    max-width: 400px;
    margin: 0 auto;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  /* Center the journal header items */
  .journal-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
  }

  /* Make date more prominent */
  .journal-date {
    font-size: 16px !important;
    flex: 1;
    text-align: center;
  }

  /* Make text area larger */
  #journal-text {
    height: 160px;
    font-size: 14px !important;
    padding: 8px;
    width: 100%;
    max-height: 40vh;
  }
}</pre></body></html>