:root {
  --neon-green: #68cc04;
  --dark-bg: #0a0a0a;
  --card-bg: #141414;
  --text-white: #ffffff;
  --text-gray: #b3b3b3;
  --soft-border: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 90px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-title p { color: var(--text-gray); max-width: 760px; margin: 8px auto 0; }
.divider { width: 64px; height: 4px; background: var(--neon-green); margin: 12px auto 0; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--soft-border);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo img { height: 42px; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--soft-border);
  color: var(--text-white);
  padding: 10px 12px;
  border-radius: 10px;
}
.nav ul { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav a { color: var(--text-gray); font-weight: 700; font-size: 0.95rem; }
.nav a:hover, .nav a.active { color: var(--text-white); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050505;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.72) 60%, rgba(0,0,0,0.95) 100%);
  z-index: 1;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.bg-shape {
  position: absolute;
  width: 480px;
  height: 480px;
  background: var(--neon-green);
  filter: blur(180px);
  opacity: 0.18;
  border-radius: 50%;
  z-index: 1;
}
.shape-1 { top: -160px; left: -160px; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 760px;
}
.eyebrow {
  color: var(--neon-green);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.hero h1 { font-size: clamp(3rem, 8vw, 6rem); line-height: 0.95; margin-bottom: 16px; }
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--text-white);
}
.hero p { color: #e5e5e5; font-size: clamp(1rem, 2vw, 1.2rem); max-width: 640px; margin-bottom: 30px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}
.cta-button {
  background: var(--neon-green);
  color: #000;
  clip-path: polygon(8% 0, 100% 0, 100% 74%, 92% 100%, 0 100%, 0 26%);
}
.secondary-button {
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-white);
  background: rgba(255,255,255,0.02);
}
.cta-button:hover, .secondary-button:hover { transform: translateY(-3px); }

.grid-3, .grid-2, .market-grid, .clubs-grid, .news-grid {
  display: grid;
  gap: 24px;
}
.grid-3, .news-grid, .market-grid, .clubs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: linear-gradient(180deg, #161616 0%, #0f0f0f 100%);
  border: 1px solid var(--soft-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}
.card-body { padding: 22px; }
.card h3 { font-size: 1.55rem; margin-bottom: 10px; }
.card p { color: var(--text-gray); }
.card-link { margin-top: 16px; display: inline-flex; color: var(--text-white); border-bottom: 2px solid var(--neon-green); font-weight: 700; }

.news-card img, .market-card img, .club-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news-card .tag, .pill {
  display: inline-block;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(104, 204, 4, 0.12);
  color: var(--neon-green);
  font-weight: 700;
  margin-bottom: 12px;
}
.meta { color: #8d8d8d; font-size: 0.9rem; margin-bottom: 10px; }

.cta-banner {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(104,204,4,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(104,204,4,0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-banner h3 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.cta-banner p { color: var(--text-gray); max-width: 680px; }

.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 20px; }
.feature-list li {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--soft-border);
  padding: 16px;
  border-radius: 14px;
}

.filter-bar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.input, .select {
  width: 100%;
  background: #111;
  border: 1px solid var(--soft-border);
  color: var(--text-white);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--soft-border);
  border-radius: 16px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.table th, .table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}
.table th { background: #111; font-family: 'Oswald', sans-serif; }
.table tr:hover { background: rgba(255,255,255,0.02); }

.footer {
  border-top: 1px solid var(--soft-border);
  padding: 42px 0;
  text-align: center;
  color: #767676;
}
.footer img { height: 40px; margin: 0 auto 16px; opacity: 0.6; }
.small { font-size: 0.9rem; color: #848484; }

.article-hero {
  min-height: 46vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.88));
}
.article-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 60px 0 90px;
}
.article-content p { color: #d6d6d6; margin-bottom: 16px; font-size: 1.04rem; }
.article-content h2 { margin: 30px 0 14px; }

@media (max-width: 960px) {
  .grid-3, .news-grid, .market-grid, .clubs-grid, .grid-2 { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #0d0d0d;
    border-bottom: 1px solid var(--soft-border);
  }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; align-items: flex-start; padding: 18px 4%; }
  .menu-toggle { display: inline-flex; }
}
