* {
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
}

body {
  margin: 0;
  padding: 16px;
  font-family: system-ui, sans-serif;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
}

.editor {
  width: 100%;
  max-width: 420px;
}

.canvas-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #ddd;
  overflow: hidden;
  border-radius: 14px;
  touch-action: none;
}

#photo {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  max-width: none;
  max-height: none;
  transform-origin: center;
  will-change: transform;
}

#frame {
  position: absolute;
  inset: 0;
  background: url("../assets/twibbon.png") center / contain no-repeat;
  pointer-events: none;
}

.controls {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

button,
input {
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
}

button {
  background: #111;
  color: #fff;
  transition: background-color 0.25s ease, transform 0.15s ease;
}


/* Hover desktop */
@media (hover: hover) and (pointer: fine) {
  button:hover {
    background: #2563eb;
  }
}

button:active {
  transform: scale(0.97);
}

@media (max-width: 360px) {
  .controls {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tombol Download - hijau Ramadhan */
.btn-download {
  background: #2e7d32; /* hijau utama */
  color: #ffffff;
}

/* Hover hanya desktop */
@media (hover: hover) and (pointer: fine) {
  .btn-download:hover {
    background: #1b5e20; /* hijau lebih gelap */
  }
}

/* Tekan (HP & desktop) */
.btn-download:active {
  transform: scale(0.97);
}

