/* HB Outliners - Professional Gaming Website */

:root {
  --gold: #c8a855;
  --gold-light: #dabb66;
  --gold-dark: #9a7b2e;
  --bg-dark: #0a0a14;
  --bg-card: #12121e;
  --bg-section: #0e0e1a;
  --text: #e0ddd4;
  --text-dim: #8a8780;
  --accent: #1a1a2e;
  --border: #2a2a3e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.gold { color: var(--gold); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--bg-dark) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
}

.btn-nav:hover { background: var(--gold-light) !important; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(200, 168, 85, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(200, 168, 85, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(200, 168, 85, 0.1);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a14 70%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><rect fill="none" width="400" height="400"/><circle fill="%23c8a85508" cx="200" cy="200" r="150"/><circle fill="%23c8a85505" cx="100" cy="300" r="200"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: 8px;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(200, 168, 85, 0.3);
}

.hero-tagline {
  font-family: 'Orbitron', monospace;
  font-size: clamp(18px, 3vw, 28px);
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-value {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-section);
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--gold);
}

.feature-card p {
  color: var(--text-dim);
  font-size: 15px;
}

/* Economy */
.economy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .economy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .economy-grid { grid-template-columns: 1fr; }
}

.economy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.economy-card h4 {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.economy-value {
  font-family: 'Orbitron', monospace;
  font-size: clamp(16px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.economy-card p {
  font-size: 13px;
  color: var(--text-dim);
}

.revenue-table {
  max-width: 600px;
  margin: 0 auto;
}

.revenue-table h3 {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.revenue-table table {
  width: 100%;
  border-collapse: collapse;
}

.revenue-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.revenue-table td:last-child {
  text-align: right;
  font-weight: 600;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.step {
  text-align: center;
  padding: 32px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--gold);
}

.step p {
  color: var(--text-dim);
  font-size: 14px;
}

/* Download */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

.download-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.download-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.download-card p {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 20px;
}

.download-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-dim);
}

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--text-dim);
  font-size: 14px;
}

.footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
