.glass-card {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 0px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.text3 span {
  color: transparent;
  font-size: 26px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.text3 span::before {
  content: "Text...";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-right: 3px solid #956afa;
  overflow: hidden;
  color: black;
  animation: text3-animation 2s linear infinite;
}

@keyframes text3-animation {
  0%,
  10%,
  100% {
    width: 0;
  }

  10%,
  20%,
  30%,
  40%,
  50%,
  60%,
  70%,
  80%,
  90%,
  100% {
    border-right-color: transparent;
  }

  11%,
  21%,
  31%,
  41%,
  51%,
  61%,
  71%,
  81%,
  91% {
    border-right-color: #956afa;
  }

  60%,
  80% {
    width: 100%;
  }
}

.button32 {
    width: 160px;
    height: 60px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background-color: rgba(12, 12, 12, 0.95); /* Slight transparency to show glow */
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease-in-out;
}

.button32:before {
    content: "";
    background: linear-gradient(
        45deg,
        #ff0000,
        #ff7300,
        #fffb00,
        #48ff00,
        #00ffd5,
        #002bff,
        #7a00ff,
        #ff00c8,
        #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glow 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

.button32:hover:before {
    opacity: 1;
}

.button32:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0c0c0c;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.button32:active:after {
    background: transparent;
}

@keyframes glow {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.text10 {
  font-size: 26px;
  font-weight: bold;
  animation: text10-animation 5s 750ms linear infinite;
}

@keyframes text10-animation {
  0% {
    color: #333; 
    text-shadow: 0 0 1em rgba(70, 70, 70, 0.2),
      0 0 0.125em rgba(70, 70, 70, 0.3),
      -1em -0.125em 0.5em rgba(100, 100, 100, 0),
      1em 0.125em 0.5em rgba(30, 30, 30, 0);
  }

  30% {
    color: #555; 
    text-shadow: 0 0 1em rgba(70, 70, 70, 0.5),
      0 0 0.125em rgba(70, 70, 70, 0.5),
      -0.5em -0.125em 0.25em rgba(100, 100, 100, 0.2),
      0.5em 0.125em 0.25em rgba(30, 30, 30, 1.3);
  }

  40% {
    color: #666; 
    text-shadow: 0 0 1em rgba(70, 70, 70, 0.5),
      0 0 0.125em rgba(70, 70, 70, 0.5),
      -0.25em -0.125em 0.125em rgba(100, 100, 100, 0.2),
      0.25em 0.125em 0.125em rgba(30, 30, 30, 1.3);
  }

  70% {
    color: #555; 
    text-shadow: 0 0 1em rgba(70, 70, 70, 0.5),
      0 0 0.125em rgba(70, 70, 70, 0.5),
      0.5em -0.125em 0.25em rgba(100, 100, 100, 0.2),
      -0.5em 0.125em 0.25em rgba(30, 30, 30, 1.3);
  }

  100% {
    color: #333;
    text-shadow: 0 0 1em rgba(70, 70, 70, 0.2),
      0 0 0.125em rgba(70, 70, 70, 0.3),
      1em -0.125em 0.5em rgba(100, 100, 100, 0),
      -1em 0.125em 0.5em rgba(30, 30, 30, 0);
  }
}
