@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600&display=swap');

/* PHIZZY site styles — minimal, dark, readable */

:root {
  --bg: #0D0D1A;
  --surface: #16162A;
  --text: #EDEDF2;
  --text-muted: #8B8BA0;
  --accent: #C8A96E;
  --border: rgba(237, 237, 242, 0.08);
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 96px;
}

header.site-header {
  padding: 32px 24px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.brand {
  font-family: "Bebas Neue", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}

.brand em {
  font-style: normal;
  color: inherit;
}

nav.site-nav {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

nav.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.15s;
}

nav.site-nav a:hover,
nav.site-nav a.active {
  color: var(--accent);
}

h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 48px;
}

h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin: 56px 0 16px;
  color: var(--text);
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text);
}

p {
  margin: 0 0 16px;
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(200, 169, 110, 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s;
}

a:hover {
  text-decoration-color: var(--accent);
}

ul, ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

li {
  margin: 6px 0;
}

li > strong {
  color: var(--accent);
  font-weight: 600;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

th, td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--accent);
}

td a {
  word-break: break-all;
}

strong {
  font-weight: 600;
  color: var(--text);
}

em {
  color: var(--text-muted);
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

.meta {
  background: var(--surface);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 0 40px;
  font-size: 14px;
  color: var(--text-muted);
}

.meta p {
  margin: 4px 0;
  color: var(--text-muted);
}

.meta strong {
  color: var(--text);
  display: inline-block;
  min-width: 110px;
}

footer.site-footer {
  text-align: center;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

footer.site-footer a {
  color: var(--text-muted);
  margin: 0 12px;
}

@media (max-width: 600px) {
  .container { padding: 32px 20px 64px; }
  h1 { font-size: 32px; }
  h2 { font-size: 19px; margin: 40px 0 12px; }
  table { font-size: 13px; }
  th, td { padding: 10px 8px; }
}
