@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.montserrat {
  font-family: "Montserrat", sans-serif;
}

@font-face {
  font-family: "AkiraExpanded";
  src: url("../font/Akira\ Expanded\ Demo.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: white;
  background-color: black;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* .background-1 {
  background-image: url("../../images/Mask\ group.png");
  background-position: center center;
  background-repeat: no-repeat;
  top: 20px;
  height: 100vh;
  width: 100%;
} */

/* Content container */
.content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* background-image: url("../images/sky.png");
  background-position: center center;
  background-size: cover;
  background-repeat: repeat; */
}

/* Main Container */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 2rem 2rem;
  min-height: 60vh;
  color: #fff;
  font-family: "AkiraExpanded", sans-serif;
  /* White text for contrast */
}


/* Subtitle Animation */
.subtitle {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  /* Start slightly below and smaller */
  animation: fadeInUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

/* Title Animation */
.title {
  font-size: 2.8rem;
  font-weight: bold;
  max-width: 800px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: fadeInUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: font-size 0.9s ease, background 0.9s ease;
  /* Add font-size transition */
}

/* Hover Effect for Title */
.title:hover {
  font-size: 3rem;
}

/* JOIN UMRT Button Styles */
.join-umrt-container {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: fadeInUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;
}

.join-umrt-btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border: 3px solid transparent;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.join-umrt-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.join-umrt-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
  background: linear-gradient(45deg, #ff5722, #ff9800);
}

.join-umrt-btn:hover::before {
  left: 100%;
}

.join-umrt-btn:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Keyframes for Fade-In, Slide-Up, and Scale Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Sponsors */
.sponsors {
  position: relative;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  /* background-color: #bbb; */
}

.sponsor-titel {
  font-family: Montserrat;
  text-align: center;
  font-size: 1.88rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.sponsors-container {
  /* background-color:#bbb; */
  border-radius: 40px;
  background-color: #ffffffd8;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0% 5%;
}

.sponsor {
  opacity: 0.7;
  transition: transform 0.6s, opacity 0.4s ease-in-out;
}

.sponsor img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.protospace img {
  height: 75px;
  width: auto;
  max-width: 200px;
}

.sponsor:hover {
  opacity: 100%;
  transform: scale(1.1);
}

/* Tablet */
@media (max-width: 768px) {
  .sponsors-container {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .sponsor img {
    height: 44px;
  }

  .sponsor-titel {
    font-size: 1.6rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  /* .sponsor {
    width: 100%;
    justify-content: center;
  } */

  .sponsor img {
    height: 32px;
  }

  .sponsors-container {
    gap: 1rem;
    padding: 1rem;
  }

  .sponsor-titel {
    font-size: 1.4rem;
  }
}

.sub-container {
  text-align: center;
  padding: 50px;
}

.header h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.team-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-photo {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.gradient-mask {
  mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 30%,
      rgba(0, 0, 0, 1) 70%,
      rgba(0, 0, 0, 0) 100%);
}

.achievements {
  display: flex;
  gap: 3rem;
}

.position {
  font-size: 3rem;
}

.achievement {
  text-align: center;
}

.achievement h2 {
  font-size: 36px;
  margin: 0;
}

.achievement p {
  margin: 5px 0;
}

.vertical-line {
  border-left: 5px solid #f87707;
  border-radius: 8px;
  height: auto;
  margin: 8px 8px;
}

.button-5 {
  align-items: center;
  background-color: #fa6400;
  border-radius: .5rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  color: #ffff;
  display: inline-flex;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 600;
  min-height: 3.5rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  text-decoration: none;
  transition: all 250ms;
}

.button-5:hover {
  transform: translateY(6px);
}

.button-5:active {
  background-color: #c85000;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}

/* Background Image */
.background-2 {
  background-image: url("../images/mars2.png");
  z-index: -1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 2em;
}

.content-1 {
  margin: 10px;
  padding: 2em;
  backdrop-filter: blur(3px);
  border-radius: 10px;
  max-width: 600px;
}

.placeholder h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#placeholder-text {
  font-size: 64px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-1 p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.join-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  color: white;
  background-color: #ff5722;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
}

.join-button:hover {
  background-color: #e64a19;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .background-2 {
    flex-direction: column;
    padding: 1em;
  }

  .content-1 {
    max-width: 100%;
    padding: 1em;
  }

  #placeholder-text {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  #placeholder-text {
    font-size: 36px;
  }

  .sub-container{
    padding: 18px;
  }

  .content-1 {
    margin: 2px;
    padding: .25em;
  }

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

  .content-1 p {
    font-size: 1rem;
  }

  .join-button {
    font-size: 1rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  #placeholder-text {
    font-size: 24px;
  }

  .content-1 h1 {
    font-size: 1.5rem;
  }

  .content-1 p {
    font-size: 0.9rem;
  }

  .join-button {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .prev, .next {
    padding: 5px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}


/* General Styles */
.background-3 {
  position: relative;
  overflow: hidden;
  background-image: url("../images/Earth.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
}

.background-3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  z-index: 1;
}

.text-content {
  position: relative;
  font-family: Montserrat;
  z-index: 1;
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  justify-content: space-between; /* Space between content-2 and content-3 */
  max-width: 1200px;
  width: 90%;
  margin-bottom: 20px;
  padding-top: 10px;
}

.content-2 {
  margin: 10px;
  padding: 20px;
  font-family: AkiraExpanded;
  font-size: 2.8rem;
  font-weight: bold;
  border-radius: 10px;
  max-width: 600px;
  color: #fff;
  text-align: left; /* Align text to the left */
  flex: 1; /* Allow it to take available space */
}

.content-3 {
  margin: 10px;
  padding: 1em;
  backdrop-filter: blur(3px);
  border-radius: 10px;
  max-width: 600px;
  width: 100%; /* Ensure it takes full width on smaller screens */
  flex: 1; /* Allow it to take available space */
}

.content-3 p {
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: left;
}

/*Block Quote*/
.box {
  background-color: transparent;
  border-radius: 3px;
  color: #fff;
  position: absolute;
  top: 168%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25rem;
  height: 20rem;
  transform-style: preserve-3d;
  perspective: 2000px;
  transition: 0.4s;
  text-align: center;
}

.box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-top: 20px solid #fff;
  border-left: 20px solid #fff;
  box-sizing: border-box;
}

.box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 20px solid #fff;
  border-right: 20px solid #fff;
  box-sizing: border-box;
}

.box .fas {
  font-size: 25px;
  height: 50px;
  width: 50px;
  line-height: 50px !important;
  background-color: #fff;
  color: #2c3a47;
}

.box .fa2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.box .text {
  position: absolute;
  top: 30px;
  left: -30px;
  width: calc(100% + 60px);
  height: calc(100% - 60px);
  background-color: #2c3a47;
  border-radius: 3px;
  transition: 0.4s;
}

.box .text .fa1 {
  position: absolute;
  top: 0;
  left: 0;
}

.box .text div {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  padding: 30px 60px;
  line-height: 1.5;
  box-sizing: border-box;
}

.box .text div h3 {
  font-size: 30px;
  margin-bottom: 5px;
}

.box .text div p {
  font-size: 15px;
}

.box:hover .text {
  transform: rotateY(20deg) skewY(-3deg);
}

.box:hover {
  transform: translate(-50%, -50%) rotateY(-20deg) skewY(3deg);
}

.media_logos {
  margin-top: 360px;
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
}

.media_logos img {
  width: 113px;
  margin: 8px;
}

.moving-photos {
  /* position: absolute; */
  z-index: 2;
  bottom: 0; /* Position at the bottom */
  left: 0;
  margin-top: 1rem;
  width: 200%;
  height: auto;
  display: flex;
  align-items: center;
  animation: scrollPhotos 20s linear infinite;
}

.moving-photos img {
  width: 200px;
  height: auto;
  margin-right: 20px;
  border-radius: 10px;
}

@keyframes scrollPhotos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.join-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  color: white;
  background-color: #ff5722;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
}

.join-button:hover {
  background-color: #e64a19;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .content-2 {
    font-size: 2.5rem;
  }

  .content-3 p {
    font-size: 1.1rem;
  }

  .moving-photos img {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .content-2 {
    font-size: 2.2rem;
  }

  .content-3 p {
    font-size: 1rem;
  }

  .moving-photos img {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .text-content {
    flex-direction: column; /* Stack content vertically on smaller screens */
  }

  .content-2 {
    font-size: 2rem;
    text-align: center; /* Center text for smaller screens */
  }

  .content-3 p {
    font-size: 0.9rem;
  }

  .moving-photos {
    position: relative; /* Move images below the content */
    top: auto;
    bottom: auto;
    margin-top: 20px; /* Add space between content and images */
  }

  .moving-photos img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .content-2 {
    font-size: 1.8rem;
  }

  .content-3 p {
    font-size: 0.8rem;
  }

  .moving-photos img {
    width: 100px;
    margin-right: 10px;
  }
}

/* General Styles */
.background-4 {
  /* background-image: url("../images/Mask group1.png"); */
  background-image: url("../images/thumbnail_raw.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  min-height: 100vh; /* Use min-height for flexibility */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; /* Add padding for better spacing */
}

.background-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); /* Gradient overlay */
  z-index: 1;
}

.container-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%; /* Ensure it takes full width */
  position: relative;
  z-index: 2;
  gap: 3rem; /* Add gap between logos and button */
}

/* Logos Container */
.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem; /* Space between logos */
  margin-top: 2rem; /* Add margin to push logos down slightly */
  background: #ffffff1c;
  padding: 70px;
  border-radius: 40px;
  backdrop-filter: blur(5px);
}

.logos {
  width: 200px; /* Set a fixed width */
  height: 100px; /* Set a fixed height */
  object-fit: contain; /* Ensures the image scales proportionally */
}

/* Button Styles */
.btn {
  padding: 1.1em 2em;
  background: none;
  border: 2px solid #fff;
  font-size: 15px;
  color: #131313;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
  border-radius: 12px;
  background-color: #ecd448;
  font-weight: bolder;
  box-shadow: 0 2px 0 2px #000;
  text-decoration: none; /* Remove underline from link */
  display: inline-block; /* Ensure the link behaves like a button */
  text-align: center; /* Center text inside the button */
  margin-bottom: 2rem; /* Add margin to push button up slightly */
}

.btn:hover {
  background-color: #0b3e4d;
  color: #fff;
  box-shadow: 0 2px 0 2px #0d3b66;
}

.btn:active {
  transform: scale(0.9);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .logos {
    width: 180px; /* Slightly smaller logos */
    height: 90px;
  }

  .btn {
    padding: 1em 1.8em; /* Slightly smaller button padding */
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .logos-container {
    gap: 2rem; /* Reduce gap between logos */
  }

  .logos {
    width: 150px; /* Smaller logos */
    height: 80px;
  }

  .btn {
    padding: 1em 1.5em; /* Smaller button padding */
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logos-container {
    flex-direction: column; /* Stack logos vertically on small screens */
    gap: 1.5rem; /* Reduce gap between logos */
  }

  .logos {
    width: 120px; /* Smallest logos */
    height: 60px;
  }

  .btn {
    padding: 0.8em 1.2em; /* Smallest button padding */
    font-size: 13px;
  }
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slides img {
  width: 100%;
  border-radius: 10px;
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Dots for Indicators */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.active {
  background-color: #717171;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .title {
    font-size: 1.75rem;
  }

  .sponsors-container {
    gap: 1rem;
  }

  /* JOIN UMRT Button - Tablet */
  .join-umrt-btn {
    font-size: 1.1rem;
    padding: 14px 28px;
    letter-spacing: 1.5px;
  }

  /* Glassmorphism Banner - Tablet */
  .congrats-banner {
    font-size: 1.2rem;
    padding: 18px 12px 14px 12px;
    margin: 1rem 1.2rem 0rem 1.2rem;
    border-radius: 16px;
  }

  .congrats-banner .confetti {
    font-size: 1.6em;
    margin: 0 10px;
  }

  .congrats-banner .congrats-subline {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

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

  .title {
    font-size: 1.5rem;
  }

  /* JOIN UMRT Button - Mobile */
  .join-umrt-btn {
    font-size: 1rem;
    padding: 12px 24px;
    letter-spacing: 1px;
  }

  .join-umrt-container {
    margin-top: 1.5rem;
  }

  /* Glassmorphism Banner - Mobile */
  .congrats-banner {
    font-size: 1.1rem;
    padding: 16px 10px 12px 10px;
    margin: 0.8rem 1rem 0rem 1rem;
    border-radius: 14px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .congrats-banner .confetti {
    font-size: 1.4em;
    margin: 0 8px;
  }

  .congrats-banner .congrats-subline {
    font-size: 0.95rem;
    margin-top: 0.9rem;
  }

  .congrats-banner .highlight {
    font-size: inherit;
  }
}


/* Glassmorphism Celebration Banner Styles */
.congrats-banner {
  /* Glassmorphism Background */
  background: linear-gradient(135deg, 
    rgba(255, 152, 0, 0.25) 0%, 
    rgba(255, 212, 0, 0.35) 25%,
    rgba(255, 107, 53, 0.3) 50%,
    rgba(247, 147, 30, 0.25) 75%,
    rgba(255, 152, 0, 0.2) 100%);
  
  /* Glass Effects */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(255, 152, 0, 0.3),
    0 4px 16px rgba(255, 212, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  
  /* Typography and Layout */
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  
  /* Spacing and Shape */
  padding: 20px 15px 16px 15px;
  margin: 1rem 1.6rem 0rem 1.6rem;
  border-radius: 20px;
  
  /* Positioning and Animation */
  position: relative;
  animation: glassPopIn 2s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 10;
  overflow: hidden;
}

/* Glass Shine Effect */
.congrats-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 40%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 60%);
  animation: glassShine 3s ease-in-out infinite;
  pointer-events: none;
}

/* Floating Particles Background */
.congrats-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 212, 0, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 60px 60px;
  animation: particleFloat 8s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.congrats-banner .highlight {
  color: #ffeb3b;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(255, 235, 59, 0.5);
  background: linear-gradient(45deg, #ffd700, #ffeb3b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.congrats-banner .confetti {
  font-size: 1.8em;
  margin: 0 12px;
  display: inline-block;
  animation: confettiDance 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.congrats-banner .congrats-subline {
  margin-top: 1.2rem;
  display: block;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Enhanced Animations */
@keyframes glassPopIn {
  0% { 
    transform: scale(0.8) translateY(-20px); 
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  50% {
    transform: scale(1.05) translateY(-10px);
    opacity: 0.8;
    backdrop-filter: blur(10px);
  }
  70% { 
    transform: scale(1.02) translateY(-5px); 
    opacity: 0.9;
    backdrop-filter: blur(15px);
  }
  100% { 
    transform: scale(1) translateY(0); 
    opacity: 1;
    backdrop-filter: blur(20px);
  }
}

@keyframes confettiDance {
  0% { 
    transform: translateY(0) rotate(0deg) scale(1); 
  }
  50% {
    transform: translateY(-8px) rotate(5deg) scale(1.1);
  }
  100% { 
    transform: translateY(-12px) rotate(-8deg) scale(1.05); 
  }
}

@keyframes glassShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}

@keyframes particleFloat {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }
  100% {
    background-position: 100% 100%, -100% -100%, 50% -50%;
  }
}

.confetti-piece {
  position: fixed;
  top: -20px;
  width: 10px;
  height: 18px;
  border-radius: 3px;
  opacity: 0.85;
  z-index: 9999;
  pointer-events: none;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  to {
    transform: translateY(110vh) rotateZ(360deg);
    opacity: 0.7;
  }
}