/* Same CSS as vc-award.html (omitted here for brevity but use exactly the same) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #e0e7ff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 20px 40px;
  background-attachment: fixed;
}
/**nav starts **/

nav {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  will-change: transform;
}

.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

#nav-toggle-btn {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 1100;
  background: rgba(31, 41, 55, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#nav-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

#nav-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

#nav-toggle-btn.rotate #nav-icon {
  transform: rotate(180deg);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Highlight Competitive link */
nav ul li a#nav-competitive {
  color: #ff9800;
  font-weight: 600;
  border: 1px solid #ff9800;
  padding: 6px 12px;
  border-radius: 4px;
}

nav ul li a#nav-competitive:hover,
nav ul li a#nav-competitive:focus {
  background-color: #ff9800;
  color: #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  nav {
    padding: 6px 0;
  }

  nav ul {
    gap: 8px;
    flex-wrap: wrap;
  }

  nav ul li a {
    font-size: 0.9rem;
    padding: 4px 8px;
  }

  nav ul li a#nav-competitive {
    padding: 5px 10px;
    font-size: 0.9rem;
  }
}
/**nav ends **/
main.container {
  background: #1e293b;
  max-width: 720px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.6),
    0 10px 40px rgba(79, 70, 229, 0.25);
  padding: 50px 45px 60px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  position: relative;
  margin: 30px auto;
}
main.container:hover {
  border-color: #6366f1;
}
h1 {
  font-weight: 800;
  font-size: 2.75rem;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #6366f1, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  user-select: none;
}
p.description {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}
p.description strong {
  color: #818cf8;
}
img.award-image {
  max-width: 560px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.35);
  margin-bottom: 50px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(79, 70, 229, 0.6));
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  user-select: none;
}
img.award-image:hover {
  filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.8));
  transform: scale(1.04);
}
.btn-group {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
a.button {
  text-decoration: none;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
  padding: 16px 38px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 32px;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.2s ease;
  user-select: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
a.button:hover,
a.button:focus {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 12px 30px rgba(67, 56, 202, 0.75);
  transform: translateY(-3px);
  outline: none;
}
@media (max-width: 600px) {
  main.container {
    padding: 35px 25px 45px;
    margin: 20px 10px;
  }
  h1 {
    font-size: 2rem;
  }
  p.description {
    font-size: 1rem;
    max-width: 100%;
  }
  .btn-group {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 25px;
  }
  a.button {
    width: 100%;
    padding: 16px 0;
    font-size: 1.1rem;
  }
}
