/* Complete Redesign - styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

:root {
  /* Color Palette */
  --primary: #ff6b35;         /* Flame orange */
  --primary-dark: #e84a00;
  --primary-light: #ff8c61;
  --secondary: #202639;       /* Dark blue-gray */
  --secondary-light: #394053;
  --secondary-dark: #121624;
  --accent: #3bceac;          /* Mint green */
  --accent-dark: #2bae8e;
  --accent-alt: #efc88b;      /* Sand gold */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e4e6eb;
  --gray-300: #ccd0d5;
  --gray-400: #bec3c9;
  --gray-500: #8d949e;
  --gray-600: #65676b;
  --gray-700: #3e4042;
  --gray-800: #242526;
  --gray-900: #18191a;
  --black: #000000;
  --red: #e71d36;
  --green: #2ec4b6;
  --gold: #ffb703;
  --silver: #b8c0c2;
  --bronze: #cd7f32;
  
  /* Space Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;
  
  /* Font Scale */
  --fs-1: 0.75rem;   /* 12px */
  --fs-2: 0.875rem;  /* 14px */
  --fs-3: 1rem;      /* 16px */
  --fs-4: 1.125rem;  /* 18px */
  --fs-5: 1.25rem;   /* 20px */
  --fs-6: 1.5rem;    /* 24px */
  --fs-7: 1.875rem;  /* 30px */
  --fs-8: 2.25rem;   /* 36px */
  --fs-9: 3rem;      /* 48px */
  --fs-10: 3.75rem;  /* 60px */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* Z-index layers */
  --z-base: 1;
  --z-above: 2;
  --z-drawer: 10;
  --z-dropdown: 20;
  --z-sticky: 100;
  --z-modal: 1000;
  --z-toast: 2000;
  
  /* Transitions */
  --trans-fast: 150ms;
  --trans-normal: 250ms;
  --trans-slow: 350ms;
  --trans-slower: 500ms;
  
  /* Container width */
  --container-max: 1200px;
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #001F3F;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-normal) ease;
}

button, 
input, 
select, 
textarea {
  font: inherit;
  color: inherit;
}

select {
    color: white;
    background-color: #003366;
    border: 1px solid rgba(255,255,255,0.2);
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  color: var(--white);
}

h1 {
  font-size: var(--fs-9);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-7);
  position: relative;
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: var(--fs-6);
}

h4 {
  font-size: var(--fs-5);
}

p {
  margin-bottom: var(--space-4);
}

.lead {
  font-size: var(--fs-5);
  font-weight: 300;
  line-height: 1.5;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--gray-400);
}

.text-accent {
  color: var(--accent);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: rgba(18, 22, 36, 0.9);
  backdrop-filter: blur(8px);
  transition: all var(--trans-normal) ease;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  padding: var(--space-3) 0;
  background-color: rgba(18, 22, 36, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: var(--fs-6);
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-icon {
  color: var(--primary);
  font-size: var(--fs-7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-size: var(--fs-3);
  font-weight: 500;
  color: var(--gray-300);
  transition: all var(--trans-normal) ease;
  position: relative;
  padding: var(--space-2) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--trans-normal) ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: var(--fs-6);
  cursor: pointer;
  transition: color var(--trans-fast) ease;
}

.burger-menu:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  margin-bottom: var(--space-9);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url('../img/hero-svg.svg') no-repeat center/cover;
  z-index: -1;
}

.hero-content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--fs-2);
  box-shadow: var(--shadow-md);
}

.hero-title {
  font-size: clamp(var(--fs-8), 5vw, var(--fs-10));
  margin-bottom: var(--space-5);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: var(--fs-5);
  color: var(--gray-300);
  max-width: 700px;
  margin: 0 auto var(--space-6);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--trans-normal) ease;
  border: none;
  cursor: pointer;
  line-height: 1.4;
  gap: var(--space-2);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  padding: var(--space-4) var(--space-6);
  font-size: var(--fs-4);
  font-weight: 600;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--accent);
  color: var(--secondary-dark);
}

.btn-secondary:hover {
  background-color: var(--accent-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--secondary-dark);
}

.btn-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all var(--trans-normal) ease;
}

.btn-icon:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  padding: var(--space-8) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-6) 0;
}

.section-lg {
  padding: var(--space-9) 0;
}

.section-dark {
  background-color: var(--secondary-dark);
}

.section-light {
  background-color: var(--secondary);
}

.section-divider {
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0;
  border: none;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-8);
}

/* Countdown styles */
.countdown-section {
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  position: relative;
}

.countdown-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.countdown-item {
  min-width: 120px;
  text-align: center;
  position: relative;
}

.countdown-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  padding: var(--space-5);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform var(--trans-normal) ease, box-shadow var(--trans-normal) ease;
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
}

.countdown-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.countdown-number {
  font-size: var(--fs-8);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
  font-family: 'Oswald', sans-serif;
}

.countdown-label {
  font-size: var(--fs-2);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 1s ease-in-out;
}

/* Trophy section styles */
.trophies-section {
  padding: var(--space-8) 0;
  background-color: var(--secondary);
  position: relative;
}

.category-select {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--fs-3);
  cursor: pointer;
  margin-bottom: var(--space-6);
  width: 100%;
  max-width: 300px;
  transition: all var(--trans-normal) ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 16px;
}

.category-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.trophy-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.trophy-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all var(--trans-normal) ease;
}

.trophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
}

.trophy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.trophy-card:first-child::before {
  background-color: var(--gold);
}

.trophy-year {
  font-family: 'Oswald', sans-serif;
  font-size: var(--fs-5);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

.trophy-card:first-child .trophy-year {
  color: var(--gold);
}

.trophy-team {
  font-size: var(--fs-6);
  font-weight: 500;
  color: var(--white);
}

.trophy-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 600;
}

.trophy-card:first-child .trophy-badge {
  background-color: var(--gold);
  width: 40px;
  height: 40px;
}

/* Results & Startlist Pages */
.results-section,
.startlist-section {
  padding: var(--space-9) 0 var(--space-8);
  background-color: var(--secondary);
}

.section-header-alt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.section-title {
  font-size: var(--fs-7);
  margin-bottom: 0;
}

/* Tables */
.table-container {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-6);
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: var(--fs-3);
}

.table thead {
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
}

.table th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-weight: 500;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--fs-2);
  position: relative;
}

.table th:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table tr:hover td {
  background-color: rgba(255, 255, 255, 0.05);
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr td:first-child {
  font-weight: 500;
}

.position {
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.team-name {
  font-weight: 500;
  color: var(--white);
}

.time {
  font-family: 'Roboto Mono', monospace;
  font-weight: 500;
}

.time-fast {
  color: var(--green);
}

.time-medium {
  color: var(--white);
}

.time-np {
  color: var(--red);
}

.time-pending {
  color: var(--gray-500);
}

.track-a {
  color: var(--accent);
  font-weight: 600;
}

.track-b {
  color: var(--primary);
  font-weight: 600;
}

.top-position {
  position: relative;
}

.top-position::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}

.position-1::before {
  background-color: var(--gold);
}

.position-2::before {
  background-color: var(--silver);
}

.position-3::before {
  background-color: var(--bronze);
}

/* Info box */
.info-box {
  background: linear-gradient(135deg, var(--primary), rgba(255, 107, 53, 0.8));
  padding: var(--space-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.info-box-content {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.info-box-icon {
  color: var(--white);
  font-size: var(--fs-7);
  flex-shrink: 0;
}

.info-box-text {
  font-size: var(--fs-4);
  color: var(--white);
  font-weight: 500;
}

.info-box-text strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: var(--space-2);
}

/* Footer */
.footer {
  background-color: var(--secondary-dark);
  color: var(--gray-400);
  padding: var(--space-6) 0;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: var(--fs-5);
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-logo-icon {
  color: var(--primary);
  font-size: var(--fs-6);
}

.footer-links {
  display: flex;
  gap: var(--space-5);
}

.footer-link {
  transition: all var(--trans-normal) ease;
}

.footer-link:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: all var(--trans-normal) ease;
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  width: 100%;
  text-align: center;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--fs-2);
}

/* Loading States */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Reveal Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.2s;
}

.fade-in-delay-2 {
  transition-delay: 0.4s;
}

.fade-in-delay-3 {
  transition-delay: 0.6s;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  :root {
    --container-max: 1140px;
  }
}

@media (max-width: 992px) {
  :root {
    --container-max: 960px;
  }
  
  h1 {
    font-size: var(--fs-8);
  }
  
  h2 {
    font-size: var(--fs-6);
  }
  
  .trophy-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --container-max: 720px;
  }
  
  h1 {
    font-size: var(--fs-7);
  }
  
  h2 {
    font-size: var(--fs-5);
  }
  
  .navbar {
    position: relative;
  }
  
  .burger-menu {
    display: block;
    z-index: var(--z-above);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--secondary-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-5);
    transition: right var(--trans-normal) ease;
    z-index: var(--z-drawer);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.show {
    right: 0;
  }
  
  .nav-link {
    font-size: var(--fs-4);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
  }
  
  .section-header-alt {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .countdown-wrapper {
    gap: var(--space-3);
  }
  
  .countdown-item {
    min-width: 90px;
  }
  
  .countdown-number {
    font-size: var(--fs-7);
  }
  
  .trophy-container {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  :root {
    --container-max: 540px;
  }
  
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  
  h1 {
    font-size: var(--fs-6);
  }
  
  h2 {
    font-size: var(--fs-5);
  }
  
  .section {
    padding: var(--space-6) 0;
  }
  
  .section-lg {
    padding: var(--space-7) 0;
  }
  
  .hero-content {
    width: 100%;
  }
  
  .countdown-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
  }
  
  .countdown-item {
    min-width: 70px;
  }
  
  .countdown-number {
    font-size: var(--fs-6);
  }
  
  .btn-lg {
    padding: var(--space-3) var(--space-5);
    font-size: var(--fs-3);
  }
  
  .table td, 
  .table th {
    padding: var(--space-3);
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-3);
  }
}


/* Fixes for the identified issues */

/* 1. Remove bullets in footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* 2. Fix link styles to stay consistent after visited */
  a, a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none;
  }
  
  /* 3. Fix blurry countdown numbers */
  .countdown-number {
    font-family: 'Oswald', sans-serif;
    font-size: var(--fs-8);
    font-weight: 700;
    color: var(--white);
    text-shadow: none;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
  }
  
  /* 4. Increase hero text size */
  .hero-title {
    font-size: clamp(var(--fs-9), 8vw, var(--fs-10));
    margin-bottom: var(--space-5);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  .hero-subtitle {
    font-size: clamp(var(--fs-4), 2.5vw, var(--fs-6));
    margin-bottom: var(--space-6);
  }
  
  .hero-badge {
    font-size: var(--fs-3);
    padding: var(--space-2) var(--space-5);
  }
  
  /* 5. Improve table styling */
  .table-container {
    margin: var(--space-6) auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  
  .table th {
    background-color: var(--secondary-dark);
    padding: var(--space-4) var(--space-4);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary);
  }
  
  .table td {
    padding: var(--space-4);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
  }
  
  .table tr:last-child td {
    border-bottom: none;
  }
  
  .table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
  }
  
  .table tr:hover td {
    background-color: rgba(255, 255, 255, 0.07);
  }
  
  /* Column styling */
  .table th:first-child,
  .table td:first-child {
    width: 15%;
    text-align: center;
  }
  
  .table th:nth-child(2),
  .table td:nth-child(2) {
    width: 60%;
    text-align: left;
  }
  
  .table th:last-child,
  .table td:last-child {
    width: 25%;
    text-align: center;
  }
  
  /* 6. Fix navigation menu positioning and burger menu functionality */
  .header {
    width: 100%;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-4);
    width: 100%;
  }
  
  .nav-links {
    display: flex;
    gap: var(--space-6);
    margin: 0;
    padding: 0;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-4) var(--space-3);
  }
  
  .burger-menu {
    display: none;
    background: transparent;
    border: none;
    font-size: var(--fs-6);
    cursor: pointer;
    z-index: 1001;
  }
  
  @media (max-width: 768px) {
    .burger-menu {
      display: block;
    }
    
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px;
      height: 100vh;
      background-color: var(--secondary-dark);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      transition: right 0.3s ease;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      z-index: 900;
    }
    
    .nav-links.show {
      right: 0;
    }
    
    .nav-link {
      padding: var(--space-4);
      width: 100%;
      text-align: center;
    }
  }
  
  /* Additional improvements */
  .position {
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: var(--white);
  }
  
  .team-name {
    font-weight: 500;
    color: var(--white);
  }
  
  .time {
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  /* Fix loading spinner */
  .loading-spinner {
    padding: var(--space-6);
  }
  
  .spinner {
    margin: 0 auto;
  }
  
  /* Make the logo clickable area larger */
  .logo {
    display: flex;
    align-items: center;
    padding: var(--space-3) 0;
  }
  
  /* Ensure proper centering of section titles */
  .section h2 {
    margin-left: auto;
    margin-right: auto;
  }

option {
    background-color: #003366;
    color: white;
}

/* Dropdown Menu Styling */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  position: relative;
  padding-right: 1.5rem !important;
}

.dropdown-toggle::after {
  content: '';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--gray-300);
  border-bottom: 2px solid var(--gray-300);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--trans-normal) ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after,
.nav-item.dropdown.show .dropdown-toggle::after {
  transform: translateY(-30%) rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: var(--z-dropdown);
  display: none;
  min-width: 220px;
  padding: var(--space-2) 0;
  margin: 0;
  background-color: var(--secondary-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--trans-normal) ease, transform var(--trans-normal) ease;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.show .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-5);
  font-weight: 400;
  color: var(--gray-300);
  text-align: left;
  transition: all var(--trans-normal) ease;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding-left: var(--space-6);
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--primary);
    background-color: rgba(255, 255, 255, 0.05);
    margin-left: var(--space-4);
    margin-right: var(--space-4);
    border-radius: 0;
  }
  
  .nav-item.dropdown .dropdown-toggle::after {
    top: 50%;
    right: var(--space-5);
  }
}