body {
  margin: 0;
  overflow: hidden;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
}

#container {
  position: relative;
  width: 576px;
  height: 864px;
}

#base, #overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

#buttons {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

#buttons .consent-text {
  color: #E59F2B;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
}

#buttons button {
  margin: 8px;
  padding: 12px 18px;
  background-color: rgba(0, 40, 60, 0.8);
  color: #E59F2B;
  border: none;
  border-radius: 6px;
  font-size: 1.3em;
  cursor: pointer;
  transition: background 0.3s;
}

#buttons button:hover {
  background-color: rgba(0, 80, 120, 0.9);
}


body {
      background: #111;
      font-family: 'Segoe UI', sans-serif;
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2em;
      padding: 3em;
      height: 100vh;
    }

    .magic-button {
      display: inline-block;
      padding: 1em 2em;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      color: #111;
      background: #FFD93D;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
      position: relative;
      z-index: 1;
    }

    .magic-button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 14px rgba(255, 255, 255, 0.2);
    }

    .magic-button.sparkle {
      background-image: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
      background-size: 200% auto;
      animation: shimmer 4s ease infinite;
      color: white;
    }

    @keyframes shimmer {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
@media (max-width: 768px) {
  html {
    font-size: 287%;
  }

  #container {
  width: 90vw;
  max-width: 576px;
  height: auto;
  position: relative;
  }

  #buttons .consent-text {
    font-size: 1.2rem;
  }

  #buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  }

  #buttons button {
  flex: 1 1 200px;
  max-width: 100%;
  padding: 18px 24px;
  font-size: 1.2em;
  border-radius: 8px;
  white-space: nowrap;
  touch-action: manipulation; 
  }
}
