
:root {
  --black: #070707;
  --dark: #151515;
  --white: #ffffff;
  --light: #f6f6f6;
  --muted: #666;
  --red: #d71920;
  --gold: #f2b632;
  --border: #e5e5e5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 900;
  font-size: 1.15rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: .92rem;
}

.nav-button {
  background: var(--red);
  color: var(--white);
  padding: 9px 14px;
  border-radius: 999px;
}

.hero {
  min-height: 76vh;
  background: linear-gradient(135deg, rgba(0,0,0,.82), rgba(30,30,30,.75)), radial-gradient(circle at top right, #d71920, transparent 35%), #111;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 80px 6%;
}

.hero-inner {
  max-width: 850px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: .95;
  margin: 10px 0 20px;
  letter-spacing: -3px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 720px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .8rem;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
}

.primary { background: var(--red); color: var(--white); }
.secondary { background: var(--white); color: var(--black); }

.section, .page {
  padding: 70px 6%;
}

.center {
  text-align: center;
  max-width: 950px;
  margin: auto;
}

.center h2,
.page-hero h1,
.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin: 8px 0 18px;
  letter-spacing: -2px;
}

.narrow {
  max-width: 1000px;
  margin: auto;
}

.page-hero {
  max-width: 850px;
  margin-bottom: 35px;
}

.grid {
  display: grid;
  gap: 24px;
}

.two { grid-template-columns: repeat(2, 1fr); }
.three { grid-template-columns: repeat(3, 1fr); }

.card, .content, .product-card, .player-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.card:hover {
  border-color: var(--red);
}

.feature {
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-placeholder,
.product-image,
.player-photo,
.sponsor-box {
  background: var(--light);
  border: 1px dashed #aaa;
  border-radius: 18px;
  min-height: 220px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--muted);
  margin-bottom: 18px;
}

.product-image,
.player-photo {
  background: #f1f1f1;
}

.price {
  color: var(--red);
  font-weight: 900;
  font-size: 1.1rem;
}

.tag {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.table-section {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

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

th {
  background: var(--black);
  color: var(--white);
}

footer {
  background: var(--black);
  color: var(--white);
  padding: 30px 6%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

footer h3 {
  margin: 0;
}

footer p {
  color: #ccc;
  margin: 5px 0 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  nav {
    flex-wrap: wrap;
  }

  .three, .two, .feature {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }
}
