body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  min-height: 100vh;
  color: #e1e1e1;
}

.highfive-wrapper {
  min-height: 100vh;
  background: rgba(18, 18, 18, 0.95);
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.highfive-nav {
  background: #0f0f23;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #333;
}

.nav-brand h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-brand a {
  color: white;
  text-decoration: none;
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #e1e1e1;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  padding-bottom: 0.5rem !important;
  border-bottom: none !important;
}

.highfive-content {
  padding: 3rem 2rem;
  line-height: 1.6;
  background: #1a1a1a;
  color: #e1e1e1;
}

.highfive-content h1 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highfive-content h2 {
  color: #e1e1e1;
  border-bottom: 3px solid #ff6b6b;
  padding-bottom: 0.5rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.highfive-content h3 {
  color: #b8b8b8;
  margin-top: 2rem;
}

/* responsive design */
@media (max-width: 768px) {
  .highfive-nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .highfive-content {
    padding: 2rem 1rem;
  }

  .highfive-content h1 {
    font-size: 2rem;
  }
}

/* smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* add some style to the member list */
.highfive-content ul li {
  margin-bottom: 0.5rem;
}

.highfive-content ul li strong {
  color: #ff6b6b;
}

/* additional dark theme elements */
.highfive-content p {
  color: #d1d1d1;
}

.highfive-content a {
  color: #ffd93d;
  text-decoration: none;
}

.highfive-content a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

/* style the divs */
.highfive-content > div {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid #333;
}

/* carousel styles for high five page */
.highfive-content .carousel-container {
  position: relative;
  margin: 30px 0;
  overflow: hidden;
  border: 4px solid #333;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.highfive-content .carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 300px;
}

.highfive-content .carousel-slide {
  min-width: 100%;
  position: relative;
}

.highfive-content .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.highfive-content .carousel-copyright {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 3px 8px;
  font-size: 0.8em;
  border-radius: 4px;
  z-index: 10;
}

.highfive-content .carousel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.02);
}

.highfive-content .carousel-button {
  background: rgba(255, 255, 255, 0.1);
  color: #e1e1e1;
  border: 2px solid #333;
  width: 40px;
  margin: 0;
  height: 40px;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  border-radius: 6px;
}

.highfive-content .carousel-button:hover {
  background-color: #ff6b6b;
  color: white;
}

.highfive-content .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.highfive-content .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0;
  background: #666;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.highfive-content .carousel-dot.active {
  background: #ff6b6b;
}

/* responsive carousel */
@media (max-width: 768px) {
  .highfive-content .carousel-track {
    height: 200px;
  }
  
  .highfive-content .carousel-button {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
}



/* Carousel Styles */
.carousel-container {
  position: relative;
  margin: 30px 0;
  overflow: hidden;
  border: 4px solid $color-black;
  border-radius: 10px;
  background: $color-bg;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 300px;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.carousel-copyright {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 3px 8px;
  font-size: 0.8em;
  border-radius: 4px;
  z-index: 10;
}

.carousel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.carousel-button {
  background: $color-bg-barely;
  color: $color-white;
  border: 2px solid $color-black;
  width: 40px;
  margin: 0;
  height: 40px;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.carousel-button:hover {
  background-color: darken($color-link, 20%);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0;
  background: $color-grey;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background: darken($color-link, 10%);
}

@media screen and (max-width: $br) {
  .carousel-track {
    height: 200px;
  }
  
  .carousel-button {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
}