/* Import cinematic tech font */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

/* Global body styling */
body {
  background: linear-gradient(to bottom right, #1c1c1c, #3a2a1e);
  color: #f4e9dc;
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  margin: 0;
  text-align: center;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Scene container */
.scene {
  border: 2px solid rgba(255, 165, 100, 0.2);
  box-shadow: 0 0 30px rgba(255, 165, 100, 0.3);
  background-color: rgba(40, 30, 20, 0.95);
  padding: 2em;
  box-sizing: border-box;
  max-width: 680px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Decorative background glow */
.scene::before,
.scene::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(18px);
  z-index: 0;
}

.scene::before {
  top: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(255,165,100,0.2), transparent 70%);
}

.scene::after {
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(255,215,160,0.2), transparent 70%);
}

/* Text box styling */
.scene-text {
  position: relative;
  z-index: 1;
  font-size: 1.15em;
  margin-bottom: 20px;
  padding: 2em 2.5em;
  background-color: rgba(60, 40, 30, 0.85);
  border: 2px dashed rgba(255, 165, 100, 0.6);
  border-radius: 10px;
  width: 100%;
  max-width: 560px;
  min-height: 80px;
  overflow-y: auto;
  line-height: 1.8;
  box-shadow: inset 0 0 10px rgba(255, 165, 100, 0.3);
  color: #fff8f0;
}

/* Image frame styling */
.image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  height: 340px;
  overflow: hidden;
  background-color: rgba(20, 10, 5, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid rgba(255,165,100,0.4);
  box-shadow: 0 0 20px rgba(255,165,100,0.3);
}

.image-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(1.1) contrast(1.2);
}

/* Buttons */
button {
  padding: 1em 2em;
  font-size: 1.1em;
  background: transparent;
  color: #ffd7a0;
  font-family: 'Share Tech Mono', monospace;
  border: 2px solid #ffd7a0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(255, 165, 100, 0.4);
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

button:hover {
  background: rgba(255, 165, 100, 0.2);
  color: #ffffff;
  border-color: #ff8c00;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .scene {
    padding: 1em;
    min-height: auto;
  }

  .scene-text {
    font-size: 1rem;
    line-height: 1.6;
    padding: 1.5em;
    max-width: 95%;
    overflow-y: visible;
  }

  .image-frame {
    height: auto;
    max-height: 40vh;
  }

  .image-frame img {
    max-height: 40vh;
  }

  button {
    font-size: 1rem;
    padding: 0.8em 1.2em;
    width: 90%;
    max-width: 320px;
  }
}

/* Extra-small phones */
@media (max-width: 480px) {
  .scene-text {
    font-size: 0.9rem;
    padding: 1.2em;
  }

