  .award {
    position: relative;
    background: rgba(20, 25, 40, 0.35);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset,
                0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: background, transform, border-color, box-shadow;
  isolation: isolate;
  overflow: hidden;
  }

  .award > * {
    position: relative;
    z-index: 2;
  }

  .award::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(0, 82, 110, 0.4) 0%, rgba(43, 53, 135, 0.4) 40%, rgba(78, 32, 138, 0.4) 70%, rgba(31, 127, 100, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
  }

  .award::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
  }

  .award:hover::after {
    background: linear-gradient(135deg, rgba(200, 220, 255, 0.12) 0%, rgba(180, 200, 255, 0.05) 50%, transparent 100%);
    opacity: 0.65;
  }

  @keyframes outlinePulse {
    0%, 100% {
      opacity: 0.5;
    }
    50% {
      opacity: 0.7;
    }
  }

  .award:hover {
    background: rgba(22, 28, 42, 0.4);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-color: rgba(200, 220, 255, 0.22);
    transform: translateZ(0) translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45),
                0 0 0 1px rgba(200, 220, 255, 0.06) inset,
                0 1px 0 rgba(200, 220, 255, 0.1) inset;
  }

  .award:hover::before {
    opacity: 0.6;
    animation: outlinePulse 3s ease-in-out infinite;
  }
  
  .award h3 {
    background: linear-gradient(to right, #2563eb, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
  }
  
  .award p {
    margin: 4px 0;
  color: #f5f7fb;
  }

.award p:first-of-type {
  color: #ffffff;
}

.award p:first-of-type strong {
  color: #ffffff;
}

.award p strong {
  color: #ffffff;
}
  
  .award ul {
    margin-top: 8px;
    padding-left: 20px;
    list-style-type: disc;
    opacity: 1;
    overflow: visible;
  }

.award ul li {
  color: #f5f7fb;
}

.award-highlight {
  color: #ffd166;
  font-weight: 600;
}
  
.award-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, width 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
  }

.award-logo:hover {
  transform: translateZ(0) scale(1.3);
}
@media (max-width: 768px) {
  .award-logo {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .award-logo {
    width: 30px;
  }
}

/* Awards Filter Styling */
.filters-container {
  display: flex;
  gap: 30px;
  margin: 20px 0 30px 0;
  flex-wrap: wrap;
}

.filter-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.filter-container label {
  color: #9ad1ff;
  font-weight: bold;
  font-size: 1.1rem;
}

.year-filter {
  background: rgba(20, 25, 40, 0.35);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: border-color, box-shadow, background;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.year-filter:hover {
  border-color: rgba(154, 209, 255, 0.4);
  background: rgba(25, 30, 45, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(154, 209, 255, 0.15) inset;
}

.year-filter:focus {
  outline: none;
  border-color: rgba(154, 209, 255, 0.5);
  box-shadow: 0 0 10px rgba(154, 209, 255, 0.3),
              0 0 0 1px rgba(154, 209, 255, 0.2) inset;
}

.year-filter option {
  background: #1a1a1a;
  color: #f0f0f0;
}

.activity-filter {
  background: rgba(20, 25, 40, 0.35);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: border-color, box-shadow, background;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.activity-filter:hover {
  border-color: rgba(154, 209, 255, 0.4);
  background: rgba(25, 30, 45, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(154, 209, 255, 0.15) inset;
}

.activity-filter:focus {
  outline: none;
  border-color: rgba(154, 209, 255, 0.5);
  box-shadow: 0 0 10px rgba(154, 209, 255, 0.3),
              0 0 0 1px rgba(154, 209, 255, 0.2) inset;
}

.activity-filter option {
  background: #1a1a1a;
  color: #f0f0f0;
}

