:root { --glass: rgba(255,255,255,0.86); --shadow: 0 10px 32px rgba(0,0,0,0.25); }
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; font-family: ui-serif, Georgia, "Times New Roman", serif; }
.bg {
  min-height: 100%;
  background-image: url("bg.jpg");
  background-size: cover; background-position: center; background-attachment: fixed;
  display: grid; grid-template-rows: 1fr auto; place-items: center; gap: 2rem; padding: 2rem;
}
.card {
  max-width: 760px; width: 100%;
  background: var(--glass); backdrop-filter: blur(8px);
  border-radius: 20px; padding: 2.2rem 2.6rem; box-shadow: var(--shadow);
}
blockquote {
  font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.55; margin: 0; position: relative; text-wrap: balance;
}
blockquote::before, blockquote::after {
  content: "“"; position: absolute; font-size: 5.5rem; color: rgba(0,0,0,0.12); pointer-events: none;
}
blockquote::before { left: -0.8rem; top: -2.4rem; }
blockquote::after  { content: "”"; right: -0.8rem; bottom: -2.4rem; }
.author { margin-top: 1rem; font-weight: 700; text-align: right; }
.actions { margin-top: 1.5rem; display: flex; gap: 0.8rem; justify-content: flex-end; }
button {
  border: none; padding: 0.65rem 1rem; border-radius: 12px; cursor: pointer; font-weight: 600;
  background: black; color: white; box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
button:active { transform: translateY(1px); }
.footer { color: rgba(255,255,255,0.9); text-shadow: 0 2px 8px rgba(0,0,0,0.5); }

