:root {
  --bg: #0a0a0a;
  --bg-dark: #060606;
  --bg-card: #141414;
  --bg-card2: #1a1a1a;
  --gold: #d4a017;
  --gold-bright: #f5c842;
  --gold-dim: #8a6910;
  --text: #c8c0b0;
  --text-light: #8a8070;
  --border: #2a2515;
  --heading: #f0e8d0;
  --radius: 4px;
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

header {
  position: sticky;
  top: 0;
  background: rgba(6, 6, 6, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--heading);
  text-decoration: none;
  font-family: Georgia, serif;
}
.logo span {
  color: var(--gold-bright);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  font-family: -apple-system, sans-serif;
}

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

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(
      ellipse at center,
      rgba(212, 160, 23, 0.08) 0%,
      transparent 60%
    ),
    var(--bg-dark);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(212, 160, 23, 0.02) 80px,
      rgba(212, 160, 23, 0.02) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(212, 160, 23, 0.02) 80px,
      rgba(212, 160, 23, 0.02) 81px
    );
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero-crown {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

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

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-family: -apple-system, sans-serif;
  font-style: italic;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #0a0a0a;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: -apple-system, sans-serif;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 160, 23, 0.4);
}

.world-shoots {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.ws-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.ws-num {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.ws-label {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: -apple-system, sans-serif;
}

.section {
  padding: 5rem 2rem;
}
.section-dark {
  background: var(--bg-dark);
}

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

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--heading);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 650px;
  margin-bottom: 3rem;
  font-family: -apple-system, sans-serif;
  font-style: italic;
}

.champions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.champ-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: border-color 0.2s;
}

.champ-card:hover {
  border-color: var(--gold-dim);
}
.champ-card.featured {
  border-color: var(--gold-dim);
  background: var(--bg-card2);
}

.champ-rank {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.champ-info h3 {
  font-size: 1.2rem;
  color: var(--heading);
  margin-bottom: 0.3rem;
}

.champ-country {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: -apple-system, sans-serif;
  letter-spacing: 0.5px;
}

.champ-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-family: -apple-system, sans-serif;
  font-style: italic;
}

.champ-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.champ-tags span {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: -apple-system, sans-serif;
  letter-spacing: 0.5px;
}

.records-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.record-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.record-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: -apple-system, sans-serif;
}

.record-card h3 {
  font-size: 1.05rem;
  color: var(--heading);
  margin-bottom: 1rem;
}

.record-value {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--gold-bright);
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.record-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-family: -apple-system, sans-serif;
  font-style: italic;
}

.record-div {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-family: -apple-system, sans-serif;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.guns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gun-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.2s;
}

.gun-card:hover {
  border-color: var(--gold-dim);
}

.gun-div {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: -apple-system, sans-serif;
}

.gun-card h3 {
  font-size: 1.1rem;
  color: var(--heading);
  margin-bottom: 0.75rem;
}
.gun-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-family: -apple-system, sans-serif;
}

.gun-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stars {
  color: var(--gold-bright);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.rating-label {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: -apple-system, sans-serif;
}

.top-gear {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.tg-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
}

.tg-rank {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
  font-family: -apple-system, sans-serif;
}

.gold-bg {
  background: var(--gold);
  color: #000;
}

.tg-cat {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  font-family: -apple-system, sans-serif;
}

.tg-item h3 {
  font-size: 1.05rem;
  color: var(--heading);
  margin-bottom: 0.75rem;
}
.tg-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  font-family: -apple-system, sans-serif;
  font-style: italic;
}

footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--heading);
  margin-bottom: 0.75rem;
}
.footer-brand span {
  color: var(--gold-bright);
}

footer p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  font-family: -apple-system, sans-serif;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold-bright);
}

/* WORLD SHOOT HISTORY TABLE */
.ws-history {
  border: 1px solid var(--border);
  overflow: hidden;
}

.wsh-row {
  display: grid;
  grid-template-columns: 80px 80px 1.5fr 1.5fr 2fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.wsh-row:last-child {
  border-bottom: none;
}
.wsh-row:not(.wsh-header):hover {
  background: rgba(212, 160, 23, 0.04);
}

.wsh-header {
  background: rgba(212, 160, 23, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.wsh-row > div {
  padding: 0.9rem 1.1rem;
  font-size: 0.87rem;
  color: var(--text);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  font-family: -apple-system, sans-serif;
}

.wsh-row > div:last-child {
  border-right: none;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.82rem;
}

.wsh-num {
  font-family: Georgia, serif;
  font-weight: bold;
  color: var(--gold-bright);
  font-size: 1rem !important;
}

.wsh-upcoming {
  background: rgba(212, 160, 23, 0.06);
  border-top: 1px solid var(--gold-dim);
}
.wsh-upcoming .wsh-num {
  color: var(--gold);
}

/* HALL OF FAME */
.hof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.hof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.hof-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.hof-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.hof-card h3 {
  font-size: 1.2rem;
  color: var(--heading);
  margin-bottom: 0.3rem;
  font-family: Georgia, serif;
}

.hof-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-family: -apple-system, sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 0.9rem;
  font-style: italic;
}

.hof-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  font-family: -apple-system, sans-serif;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.hof-legacy {
  font-size: 0.75rem;
  color: var(--gold-dim);
  font-family: -apple-system, sans-serif;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  letter-spacing: 0.3px;
}

/* FRIENDS & COMMUNITY */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  text-align: center;
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

.community-card:hover {
  border-color: var(--gold-dim);
  background: var(--bg-card2);
}

.community-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.community-card h3 {
  font-size: 1.1rem;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.community-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: -apple-system, sans-serif;
  font-style: italic;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .ws-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .champ-card {
    flex-direction: column;
    gap: 0.75rem;
  }
}
