
:root {
  --bg: #0a0a0a;
  --text: #e5e5e5;
  --muted: #b3b3b3;
  --panel: #121212;
  --line: #232323;
  --accent: #facc15;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; background: var(--bg); color: var(--text); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.hero { position: relative; min-height: 60vh; background: url('./assets/warrior-banner.png') center/cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,.7), rgba(10,10,10,.85) 60%, #0a0a0a 100%); }
.hero-inner { position: relative; z-index: 1; padding: 80px 0; }
h1 { font-size: clamp(28px, 5vw, 48px); margin: 0; font-weight: 700; }
p.lead { max-width: 800px; margin-top: 14px; font-size: clamp(14px, 2.5vw, 18px); color: #ddd; }

.btns { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 10px 16px; border-radius: 14px; font-weight: 600; font-size: 14px; text-decoration: none; }
.btn-primary { background: var(--accent); color: #111; }
.btn-ghost { background: #1f1f1f; color: #eaeaea; border: 1px solid #2a2a2a; }

.small { color: #e2e2e2; margin-top: 10px; font-size: 13px; }

.section { padding: 56px 0; border-top: 1px solid var(--line); }
.section h2 { font-size: 24px; margin: 0 0 12px 0; }

.grid { display: grid; gap: 18px; }
@media (min-width: 900px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }

.card { background: rgba(18,18,18,.8); border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.card h3 { margin: 0 0 8px 0; font-size: 18px; }

.footer { border-top: 1px solid var(--line); padding: 18px 0; color: #aaa; font-size: 14px; }
.footer a { color: #d4d4d4; text-decoration: none; margin-left: 16px; }
