* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

 a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-subtitle,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: #a3a3a3;
}

.brand h1 {
  font-size: 28px;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: #d4d4d4;
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 24px;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.hero {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h2 {
  margin-top: 16px;
  font-size: 58px;
  line-height: 1.05;
}

.hero-content h2 span {
  color: #9a9a9a;
}

.hero-content p {
  margin-top: 24px;
  max-width: 620px;
  color: #d4d4d4;
  font-size: 18px;
}

.hero-buttons,
.social-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: bold;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #ffffff;
  color: #0d0d0d;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card,
.simple-card,
.info-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
}

.stat-card p {
  color: #b3b3b3;
  font-size: 14px;
}

.stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: 36px;
}

.stat-wide {
  grid-column: 1 / -1;
}

.stat-wide strong {
  font-size: 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section h3 {
  margin-top: 12px;
  font-size: 38px;
}

.section-text {
  margin-top: 20px;
  max-width: 850px;
  color: #d4d4d4;
}

.cards-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.sponsors-grid {
  grid-template-columns: repeat(4, 1fr);
}

.division-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tournament-grid {
  grid-template-columns: repeat(2, 1fr);
}

.simple-card {
  text-align: center;
  font-weight: bold;
  color: #e5e5e5;
}

.info-card h4 {
  margin-bottom: 12px;
  font-size: 22px;
}

.info-card p {
  color: #d4d4d4;
}

.site-footer {
  padding: 24px 0;
  text-align: center;
  color: #9a9a9a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .hero-grid,
  .division-grid,
  .sponsors-grid,
  .tournament-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 20px;
    background-color: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 60px 0;
  }

  .section h3 {
    font-size: 30px;
  }

  .hero-content h2 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
