/* Reset și font */
* {
  box-sizing: border-box;
}

body {
  margin: 0; padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a1a2a, #13294b, #1a3a6d);
  color: #d4e9f7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  user-select: none;
}

header {
  margin-bottom: 30px;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #00fff7;
  text-shadow: 0 0 10px #00fff7aa;
  letter-spacing: 1.5px;
}

main {
  max-width: 720px;
  width: 100%;
  background: rgba(20, 40, 70, 0.85);
  border-radius: 14px;
  box-shadow: 0 0 30px #00fff740 inset;
  padding: 30px 40px;
  font-size: 1.2rem;
  line-height: 1.6;
  user-select: text;
}

.question {
  margin-bottom: 36px;
  border-left: 6px solid #00fff7;
  padding-left: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(145deg, #142d57, #1d3d78);
  border-radius: 10px;
  box-shadow: 0 0 12px #00fff720;
}

.question:hover {
  transform: scale(1.03);
  box-shadow: 0 0 24px #00fff7bb;
}

.question h2 {
  margin-top: 0;
  color: #00fff7;
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 0 6px #00fff7aa;
}

.question p {
  margin-top: 12px;
  color: #c0eaff;
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #00fff799;
  text-align: center;
  user-select: none;
  text-shadow: 0 0 4px #00fff733;
}
.links {
  margin: 30px auto 40px;
  text-align: center;
  max-width: 720px;
  width: 100%;
}

.btn-link {
  background-color: #00fff7;
  color: #003e3e;
  padding: 12px 28px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 0 15px #00fff7;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  margin: 0 15px;
  user-select: none;
}

.btn-link:hover {
  background-color: #003e3e;
  color: #00fff7;
  box-shadow: 0 0 25px #00fff7;
}
