/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Full page layout */
html, body {
  width: 100%;
  height: 100%;
  background: #0e0e11;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main layout */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 90vw;
  max-height: 90vh;
}

/* Image */
.main-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 16px;
}

/* Button */
.main-button {
  padding: 1.2rem 3rem;
  font-size: 2rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #111;
  box-shadow: 0 10px 30px rgba(251, 133, 0, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Hover / click feel */
.main-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(251, 133, 0, 0.6);
}

.main-button:active {
  transform: translateY(1px);
  box-shadow: 0 8px 20px rgba(251, 133, 0, 0.4);
}
