* {
  box-sizing: border-box;
  font-family: 'Courier New', monospace;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #0b0b0b, #000);
  color: #e5e5e5;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4"/></filter><rect width="200" height="200" filter="url(%23n)"/></svg>');
  opacity: 0.03;
  pointer-events: none;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 3px;
  text-shadow: 0 0 15px #00ffcc55;
}

.subtitle {
  margin-top: 10px;
  opacity: 0.85;
}

.buttons {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.buttons a {
  padding: 12px 22px;
  border: 1px solid #00ffcc;
  color: #00ffcc;
  text-decoration: none;
  transition: all 0.2s ease;
}

.buttons a:hover {
  background: #00ffcc;
  color: #000;
}

.continue {
  margin: 40px auto;
  font-size: 1.2rem;
  opacity: 0.7;
}

section {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #222;
}

.photo img {
  margin-top: 20px;
  max-width: 260px;
  width: 100%;
  border: 1px solid #333;
}

.hint {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 10px;
}
