    body {
      margin: 0;
      font-family: 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(135deg, #1e1e2f, #2c3e50);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      overflow: hidden;
    }
    .container {
      text-align: center;
      max-width: 600px;
      padding: 2rem;
    }
    .logo-img-corner {
      position: absolute;
      top: 18px;
      align-items: center;
      justify-content: center;
      width: 500px;
      height: 500px;
      object-fit: contain;
      z-index: 1000;    
      
      display: block;
    }
    h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: #ccc;
    }
    .btn {
        background: linear-gradient(90deg, #00bcd4 0%, #2196f3 100%);
        color: #fff;
        padding: 0.6rem 1.5rem 0.5rem 1.2rem;
        font-size: 1.15rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
        text-decoration: none;
        z-index: 2;
        position: relative;
        box-shadow: 0 4px 18px 0 rgba(33,150,243,0.18), 0 1.5px 4px 0 rgba(0,188,212,0.12);
        letter-spacing: 0.04em;
        outline: none;
        border-radius: 0;
        border: 2.5px solid rgba(0,188,212,0.25);
        box-sizing: border-box;
        
        -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="100" height="50" viewBox="0 0 100 50" xmlns="http://www.w3.org/2000/svg"><path d="M10,0 Q0,0 0,10 Q0,25 0,40 Q0,50 10,50 Q50,50 90,50 Q100,50 100,40 Q100,25 100,10 Q100,0 90,0 Q50,0 10,0 Z" fill="white"/></svg>');
        -webkit-mask-size: 100% 100%;
        mask-image: url('data:image/svg+xml;utf8,<svg width="100" height="50" viewBox="0 0 100 50" xmlns="http://www.w3.org/2000/svg"><path d="M10,0 Q0,0 0,10 Q0,25 0,40 Q0,50 10,50 Q50,50 90,50 Q100,50 100,40 Q100,25 100,10 Q100,0 90,0 Q50,0 10,0 Z" fill="white"/></svg>');
        mask-size: 100% 100%;
  }

  .btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px 64px 52px 999px/999px 52px 64px 999px;
  z-index: -1;
  background: linear-gradient(120deg, #00bcd4 0%, #2196f3 100%);
  opacity: 0.18;
  filter: blur(6px);
  pointer-events: none;
    }
    .btn:hover {
  background: linear-gradient(90deg, #2196f3 0%, #00bcd4 100%);
  box-shadow: 0 8px 32px 0 rgba(33,150,243,0.28), 0 2px 8px 0 rgba(0,188,212,0.18);
  transform: scale(1.07) rotate(-1.5deg);
  filter: brightness(1.12);
  border-color: #00bcd4;
    }
    #animation-area {
  width: 100%;
  max-width: 100%;
  height: 120px;
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
    }
    #scooter-cart-group {
      display: flex;
      align-items: flex-end;
      position: relative;
      left: 0;
      top: 0;
      transition: transform 0.3s;
    }
    #scooter-sprite {
  width: 40px;
  height: 30px;
  background: url('resources/animations/ScooterRight.png') left center no-repeat;
  background-size: 320px 30px;
  image-rendering: pixelated;
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.2s;
    }
    #cart {
      width: 100px;
      height: 40px;
      background: #fff;
      border-radius: 10px;
      margin-left: -10px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
      border: 2px solid #00bcd4;
    }
    @media (max-width: 600px) {
      h1 {
        font-size: 2.2rem;
      }
      p {
        font-size: 1rem;
      }
    }