:root {
  --bg:#1a1a1a;
  --card-bg:rgba(43, 0, 0, 0.5);
  --text:#faf9f7;
  --text-muted:#ac0000;
  --accent:#ac0000;
  --accent-light:#faf9f7;
  --border:#e5e5e5;
  --shadow:0 2px 8px rgba(0,0,0,0.06);
}
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

a {
  cursor:url("blood3.cur"),auto;
}

a:link {
  color: FireBrick;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: DarkRed;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: crimson;
  background-color: transparent;
  text-decoration: underline;
}

body {
  font-family:'Lato',sans-serif;
  font-weight:400;
  font-style:normal;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  min-height:100vh;
  padding:2rem 1rem;
  background-image:url('mapainting.jpg');
  background-repeat:no-repeat;
  background-attachment:fixed;
  background-size:cover;
  background-position:50% 40%;
  cursor:url("cursor.cur"),auto;
}
.container {
  max-width:600px;
  margin:0 auto;
}
header {
  text-align:center;
  margin-bottom:3rem;
}
h1 {
  font-family:"Rubik Wet Paint",system-ui;
  font-weight:400;
  font-style:normal;
  font-size:3rem;
  font-weight:600;
  margin-bottom:0.5rem;
  color:#ac0000;
}
.subtitle {
  color:var(--text-muted);
  font-size:1.1rem;
}
.card {
  background:var(--card-bg);
  padding:2rem;
  box-shadow:var(--shadow);
  margin-bottom:2rem;
}
.card h2 {
  font-family:"Trebuchet MS",sans-serif;
  font-weight:bold;
  font-style:normal;
  font-size:2.2rem;
  margin-bottom:0.5rem;
  color:#ac0000;
}
.card h3 {
  font-family:"Trebuchet MS",sans-serif;
  font-weight:400;
  font-style:normal;
  font-size:1.5rem;
  margin-bottom:0.1rem;
  color:var(--text);
}
.card h4 {
  font-family:"Trebuchet MS",sans-serif;
  font-weight:400;
  font-style:normal;
  font-size:1.2rem;
  margin-bottom:0.6rem;
  color:var(--text);
}
.form-group {
  margin-bottom:1.25rem;
}
label {
  display:block;
  font-weight:500;
  margin-bottom:0.5rem;
  color:var(--text);
  cursor:url("cursor.cur"),auto;
}
input[type="text"] {
  width:100%;
  padding:0.875rem 1rem;
  border:1px solid var(--border);
  font-size:1rem;
  font-family:inherit;
  transition:border-color 0.2s,box-shadow 0.2s;
  cursor:url("cursor.cur"),auto;
}
input[type="text"]:focus {
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px var(--accent-light);
  cursor:url("cursor.cur"),auto;
}
.radio-group {
  display:flex;
  gap:0.75rem;
  flex-wrap:wrap;
  align-items: stretch;
}
.radio-option {
  flex:1 1 0;
  min-width:0;
  display: flex;
}
.radio-option input {
  display:none;
}
.radio-option label {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0.875rem 1rem;
  border:2px solid var(--border);
  cursor:url("blood3.cur"),auto;
  font-weight:500;
  transition:all 0.2s;
  text-align:center;
  flex: 1;
}
.radio-option input:checked+label {
  border-color:var(--accent);
  background:var(--accent-light);
  color:var(--accent);
}
.radio-option label:hover {
  border-color:var(--accent);
}
.submit-btn {
  width:100%;
  padding:1rem;
  background:var(--accent);
  color:white;
  border:none;
  font-size:1rem;
  font-weight:600;
  font-family:inherit;
  cursor:url("macursor.png"),auto;
  transition:background 0.2s,transform 0.1s;
}
.submit-btn:hover {
  background:#6e0000;
}
.submit-btn:active {
  transform:scale(0.98);
}
.submit-btn:disabled {
  background:var(--text-muted);
  cursor:not-allowed;
}
.message {
  padding:1rem;
  margin-bottom:1rem;
  display:none;
}
.message.success {
  background:var(--accent-light);
  color:var(--accent);
  display:block;
}
.message.error {
  background:#fde8e8;
  color:#c53030;
  display:block;
}
.responses-list {
  list-style:none;
}
.response-item {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0.5rem 0;
  border-bottom:1px solid var(--border);
}
.response-item:last-child {
  border-bottom:none;
}
.response-name {
  font-weight:500;
}
.response-status {
  padding:0.375rem 0.75rem;
  font-size:0.875rem;
  font-weight:500;
}
.response-status.yes {
  background:var(--accent);
  color:var(--accent-light);
}
.response-status.no {
  background:#000000;
  color:#ffffff;
}
.response-status.maybe {
  background:#ffc400;
  color:#ffffff;
}
.empty-state {
  text-align:center;
  color:var(--text-muted);
  padding:2rem 0;
}
.loading {
  text-align:center;
  color:var(--text-muted);
  padding:2rem 0;
}
.loading::after {
  content:'';
  animation:dots 1.5s infinite;
}
@keyframes dots {
  0%,20% {
  content:'.';
}
40% {
  content:'..';
}
60%,100% {
  content:'...';
}
}.note {
  font-size:0.875rem;
  color:var(--text-muted);
  margin-top:1rem;
  text-align:center;
}
footer {
  text-align:center;
  color:var(--text-muted);
  font-size:0.875rem;
  margin-top:2rem;
}
@media (max-width:480px) {
  h1 {
  font-size:2rem;
}
.card {
  padding:1.5rem;
}
.radio-option {
  min-width:100%;
}
}
