* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(135deg, #0b3920, #1f6d39);
  color: #13311f;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: auto;
}
header {
  background: linear-gradient(135deg, #0b3920, #1f6d39);
  color: #1f6d39;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}
.header-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  width: clamp(150px, 70vw, 550px);
  height: auto;
  border-radius: 0.5rem;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
}

.drawer {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: linear-gradient(135deg, #0b3920, #1f6d39);
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  transition: left 0.3s ease;
  z-index: 1001;
}

.close-drawer {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.drawer.open {
  left: 0;
}

.drawer a {
  color: white;
  text-decoration: none;
  padding: 1rem 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drawer a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .nav-content {
    display: none !important;
  }
  .hamburger {
    display: block;
  }
  .drawer.open ~ main,
  .drawer.open ~ section {
    display: none;
  }
  .logo {
    margin-top: -10vh;
  }
}
.nav-content {
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 3vw, 2rem);
  padding: clamp(0.75rem, 2vw, 1.5rem) clamp(0.75rem, 3vw, 1.5rem);
  flex-wrap: wrap;
}
.nav-content a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  font-size: clamp(0.65rem, 2vw, 1rem);
}
.nav-content a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.results-section {
  width: 100%;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem);
  background: white;
}

.results-section h2 {
  margin: 0 0 2rem 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0b3920;
  text-align: center;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.results-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.result-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(135deg, #faf0e6, #f5f5dc);
  border-left: 4px solid #1f6d39;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.result-bar:hover {
  box-shadow: 0 4px 12px rgba(31, 109, 57, 0.15);
  transform: translateX(4px);
}

.result-year {
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #0b3920;
  min-width: clamp(50px, 8vw, 80px);
}

.result-location {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #0b3920;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  flex: 1;
}

.result-champion-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
}

.result-champion {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #0b3920;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-name {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #1f6d39;
  font-weight: 600;
}

.dropdown-tables {
  margin-top: 1rem;
  padding: 1rem;
  background: white;
  border: 2px solid #faf0e6;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

.dropdown-tables table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.dropdown-tables th,
.dropdown-tables td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.dropdown-tables th {
  background-color: #f2f2f2;
}

