html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #0d0d0d;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }
  
  #liquid-background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
  }
  
  /* View system */
  .view {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease;
    z-index: 10;
  }
  
  .view.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  /* Buttons */
  .btn {
    background: transparent;
    border: 1px solid white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
  }
  
  .btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.8);
  }
  
  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
  }
  
  .button-group {
    display: flex;
    gap: 1rem;
  }
  
  /* Textarea */
  #secret-textarea {
    background: #1a1a1a;
    color: white;
    border: 1px solid white;
    padding: 1rem;
    font-size: 1rem;
    width: 300px;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 6px;
    resize: none;
    font-family: 'Inter', sans-serif;
  }
  
  #secret-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
  
  #secret-text {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    max-width: 400px;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  /* Title */
  .title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* Info Button */
  .info-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  /* Modal */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }
  
  .modal.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .modal-content {
    background-color: white;
    color: #0d0d0d;
    padding: 24px;
    border-radius: 8px;
    width: 320px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }
  
  .modal.active .modal-content {
    transform: scale(1);
  }
  
  .close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 20px;
    background: none;
    border: none;
    color: #0d0d0d;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .close:hover {
    opacity: 0.6;
  }
  