/* Basic dark fantasy theme */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #2b2b2b 0, #050505 55%);
  color: #f5f5f5;
}

a {
  color: #e6c16b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f2e2b3;
}

.logo span {
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

nav a {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

nav a:hover,
nav a.active {
  border-color: rgba(230,193,107,0.4);
  background: rgba(230,193,107,0.08);
}

main {
  flex: 1;
}

.main-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero p {
  max-width: 540px;
  margin: 0.5rem auto 0;
  color: #c7c7c7;
}

.tagline {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b49545;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.card {
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle at top left, rgba(230,193,107,0.08) 0, rgba(0,0,0,0.85) 52%);
  box-shadow: 0 18px 45px rgba(0,0,0,0.72);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.card p {
  margin: 0.2rem 0;
  color: #d3d3d3;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.badge {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e8d9a3;
}

.list {
  list-style: none;
  padding-left: 0;
  margin: 0.25rem 0;
}

.list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #e6c16b;
  font-size: 0.75rem;
  top: 0.1rem;
}

.section-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  padding: 0.5rem 0.3rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.table th {
  font-weight: 600;
  color: #e6c16b;
}

.table tr:last-child td {
  border-bottom: none;
}

.muted {
  color: #a5a5a5;
  font-size: 0.9rem;
}

.button-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.btn {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(230,193,107,0.7);
  background: rgba(230,193,107,0.14);
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn span {
  font-size: 1rem;
}

.btn:hover {
  background: rgba(230,193,107,0.24);
}

footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.25rem 1.6rem;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  background: rgba(0,0,0,0.85);
}

footer a {
  color: #c9ae63;
}
