.glass-card, .glass-point{
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.glass-card::before , .glass-point::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-16px);
  background: rgba(34, 197, 94, 0.12);
  border-color: #22c55e;
  box-shadow: 0 30px 60px rgba(34, 197, 94, 0.25);
}

.glass-point:hover {
  transform: translateY(-16px);
  background: rgba(197, 34, 34, 0.12);
  border-color: #c52222;
  box-shadow: 0 30px 60px rgba(197, 34, 34, 0.25);
}

.glass-card:hover::before, .glass-ponit:hover::before {
  opacity: 1;
}

@media (max-width: 640px) {
  .glass-card {
    padding: 2rem 1rem;
  }
}

.glass {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.glass:hover {
  background: rgba(60, 60, 60, 0.21);
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.text-glow {
  text-shadow: 0 0 40px rgba(34, 197, 94, 0.7);
}

@media (min-width: 768px) {
  .float-parent-md {
    animation: float 9s ease-in-out infinite;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotateZ(0deg);
  }
  50% {
    transform: translateY(-36px) rotateZ(1.6deg);
  }
}