body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: radial-gradient(circle at center, #0f2027, #203a43, #2c5364);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      color: #fff;
    }
    .atm {
      width: 360px;
      background: #111;
      border-radius: 20px;
      box-shadow: 0 0 25px rgba(0,255,255,0.7);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .screen {
      width: 100%;
      background: #000;
      text-align: center;
      padding: 20px;
      box-sizing: border-box;
      min-height: 220px;
    }
    .screen h2 {
      margin: 0;
      font-size: 1.2rem;
    }
    .btn {
      display: block;
      width: 80%;
      margin: 10px auto;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      background: linear-gradient(45deg, #00c6ff, #0072ff);
      color: #fff;
      transition: transform 0.2s;
    }
    .btn:hover {
      transform: scale(1.05);
    }
    .hidden {
      display: none;
    }
    .drawer {
      width: 100%;
      height: 60px;
      background: #222;
      border-top: 3px solid #00c6ff;
      text-align: center;
      line-height: 60px;
      overflow: hidden;
      position: relative;
    }
    .money {
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 2rem;
      animation: slideDown 1s forwards;
    }
    @keyframes slideDown {
      to { top: 10px; }
    }
    .glow {
      animation: glow 1s infinite alternate;
    }
    @keyframes glow {
      from { text-shadow: 0 0 5px #00c6ff; }
      to { text-shadow: 0 0 20px #00c6ff; }
    }
    .mascot {
      font-size: 2rem;
      margin-bottom: 10px;
    }
    /* Slip Style */
    .slip {
      background: #fff;
      color: #000;
      padding: 15px;
      margin-top: 10px;
      text-align: left;
      border-radius: 10px;
      font-size: 0.9rem;
      box-shadow: 0 0 10px rgba(255,255,255,0.4);
    }
    .slip h3 {
      margin: 0 0 10px 0;
      text-align: center;
      font-size: 1rem;
    }
    .slip p {
      margin: 5px 0;
    }
