/* Shared Hollowpine theme — used by the download and feedback pages. */
:root{
  --bg: #14181c;
  --panel: #1c2127;
  --panel-2: #232a32;
  --line: #2c343d;
  --text: #e7ebee;
  --text-dim: #8b97a3;
  --accent: #5ec9b8;
  --accent-dim: #2f5851;
  --warn: #e8b14d;
  --danger: #d9684f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
}
*{box-sizing:border-box;}
body{
  margin:0; background:var(--bg); color:var(--text);
  min-height:100vh; display:flex; flex-direction:column;
}

/* Header */
header{
  display:flex; align-items:center; gap:14px;
  padding:14px 18px; border-bottom:1px solid var(--line);
  background:var(--panel); flex-shrink:0;
}
header h1{
  font-size:16px; font-weight:700; margin:0; letter-spacing:.2px; white-space:nowrap;
}
header h1 span{color:var(--accent);}
.spacer{flex:1;}

/* Buttons / links */
a.primary, button.primary{
  display:inline-block; background:var(--accent); color:#0e1418; border:none;
  font-weight:600; padding:12px 22px; border-radius:8px; cursor:pointer;
  font-size:14px; text-decoration:none;
}
a.primary:hover, button.primary:hover{filter:brightness(1.08);}
button.primary:disabled{opacity:.5; cursor:not-allowed;}
a.ghost, button.ghost{
  display:inline-block;
  background:transparent; border:1px solid var(--line); color:var(--text-dim);
  padding:7px 12px; border-radius:6px; cursor:pointer; font-size:13px;
  text-decoration:none;
}
a.ghost:hover, button.ghost:hover{color:var(--text); border-color:var(--text-dim);}

/* Layout */
main{
  flex:1; display:flex; flex-direction:column; align-items:center;
  justify-content:center; padding:24px;
}
.card{
  background:var(--panel); border:1px solid var(--line); border-radius:12px;
  padding:32px; max-width:440px; width:100%; text-align:center;
}
.card h2{ margin:0 0 8px; font-size:20px; }
.card p{ color:var(--text-dim); font-size:14px; line-height:1.5; margin:0 0 24px; }
.card ol{ margin:0; padding-left:20px; }
.note{ margin-top:18px; font-size:12px; color:var(--text-dim); }
li{ text-align:left; margin:0 0 8px; font-size:14px; color:var(--text); }

/* Form fields */
.field{ margin-bottom:16px; text-align:left; }
.field label{
  display:block; font-size:12px; color:var(--text-dim); margin-bottom:6px;
  text-transform:uppercase; letter-spacing:.4px;
}
.field input[type=text], .field input[type=email], .field textarea{
  width:100%; background:var(--panel-2); border:1px solid var(--line);
  color:var(--text); padding:9px 11px; border-radius:6px; font-size:14px;
  font-family:inherit;
}
.field input:focus, .field textarea:focus{
  outline:1px solid var(--accent); border-color:var(--accent);
}
.field textarea{ resize:vertical; min-height:90px; }

/* Inline status messages */
.status{ margin-top:14px; font-size:13px; min-height:18px; }
.status.ok{ color:var(--accent); }
.status.err{ color:var(--danger); }
