* {
										margin: 0;
										padding: 0;
										line-height: 1.6;
										font-family: 'Noto Sans', sans-serif;
										text-decoration: none;
										box-sizing: border-box;
}

.sr-only {
										position:absolute;
										width:1px;height:1px;
										padding:0;margin:-1px;
										overflow:hidden;clip:rect(0,0,0,0);
										white-space:nowrap;
										border:0;
}

header {
										display: flex;
										align-items: center;
										justify-content: space-between;
										height: 50px;
										width: 100vw;
										position: fixed;
										top: 0;
										background: #08150E;
										z-index: 1000;
}

main {
										margin: 60px 10px 10px;
}

.logo {
										display: flex;
										align-items: center;
										gap: 8px;
										margin: 0 10px;
}

.logo-crest {
										width: 30px;
										height: 30px;
										flex-shrink: 0;
}

.logo-text {
										font-family: 'Anton', 'Noto Sans', sans-serif;
										font-size: 22px;
										font-weight: 400;
										letter-spacing: 1px;
										color: #fff;
}

.hamburger, .search-btn {
										height: 50px;
										width: 50px;
										color: white;
										background: transparent;
										border: none;
										cursor: pointer;
}

nav {
     background: whitesmoke;
     width: 310px;
     height: calc(100vh - 50px);
     margin-top: 50px;
     position: fixed;
     overflow-y: auto;
     overflow-x: hidden;
     display: flex;
     flex-direction: column;
     right: -310px;
     top: 0;
     transition: right 0.3s linear;
     z-index: 1001;
}

nav a {
     text-decoration: none;
     color: #000;
     font-size: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px;
     padding-left: 11px;
     border-bottom: 0.5px dotted #000;
     transition: 0.2s ease;
     box-sizing: border-box;
}

nav a.active {
     font-weight: 700;
     color: #0B3B22;
     border-left: 4px solid #0B3B22;
     background: rgba(0, 0, 0, 0.1);
}

nav a svg {
     width: 18px;
     height: 18px;
     flex-shrink: 0;
}

nav.open {
     right: 0;
}

nav a:hover {
     background: #dcdcdc;
     color: #ff0000;
     font-weight: bolder;
}

/* ===== Hero ===== */
.hero {
  background: radial-gradient(circle at 15% 0%, #123a24 0%, #08150E 55%, #050b07 100%);
  color: #fff;
  margin: -60px -10px 28px;
  padding: 78px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.hero-crest {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6fbf8b;
  margin-bottom: 6px;
}

.hero-title {
  font-family: 'Anton', 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 52px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 15px;
  color: #d7e6dc;
  max-width: 46ch;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.btn-primary {
  background: #1A7A3D;
  color: #fff;
}

.btn-primary:hover {
  background: #218c48;
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-tape {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-tape li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #9fc7ac;
  position: relative;
  padding-left: 14px;
}

.hero-tape li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1A7A3D;
}

/* ===== Section titles ===== */
.section-title {
  font-family: 'Anton', 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #0B3B22;
  margin: 28px 0 14px;
  padding-left: 10px;
  border-left: 4px solid #1A7A3D;
}

/* ===== Quick link cards ===== */
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 24px;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-top: 3px solid #0B3B22;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  color: #111;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  border-color: #1A7A3D;
}

.link-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0B3B22;
  color: #fff;
  flex-shrink: 0;
}

.link-card-icon svg {
  width: 20px;
  height: 20px;
}

.link-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.link-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

@media (min-width: 480px) {
  .quick-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 700px) {
  .hero {
    padding: 100px 40px 44px;
  }
  .hero-title {
    font-size: 72px;
  }
}

/* ===== Footer ===== */
footer.site-footer {
  background: #08150e;
  color: #f2f2f2;
  margin-top: 40px;
  padding: 36px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.footer-logo {
  font-family: 'Anton', 'Noto Sans', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #2e8b3a;
}

.footer-name {
  font-size: 13px;
  color: #cfcfcf;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #e0e0e0;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #4caf50;
}

.footer-copy {
  font-size: 12px;
  color: #8a8a8a;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 480px;
}

/* ===== Tournament listing page ===== */
.page-intro {
  color: #444;
  font-size: 14px;
  margin: 8px 0 20px;
  max-width: 60ch;
}

/* ===== News listing page ===== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== About page ===== */
.about-block {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-left: 4px solid #1A7A3D;
  border-radius: 10px;
  padding: 18px 20px;
  margin: 0 0 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 14px;
}

.about-block p {
  margin-bottom: 12px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-block strong {
  color: #0B3B22;
}

