body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Georgia', serif;
  background: #000;
}

.memory-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('assets/sunset_memory.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: saturate(0.9) brightness(0.9);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 239, 200, 0.3), rgba(0, 0, 0, 0.7));
  pointer-events: none;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fdf6e3;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.buttons button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buttons button:hover {
  background: rgba(255, 255, 255, 0.3);
}

iframe#viewer {
  width: 90%;
  height: 300px;
  margin-top: 30px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
