
          .animate-typing {
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret .5s step-end infinite;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content-overlay {
    position: relative;
    z-index: 10;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.floating-element {
    transition: transform 0.3s ease;
}

.floating-element:hover {
    transform: translateY(-5px);
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.retro-text {
    text-shadow: 4px 4px 0px #bdbdbd, 7px 7px 0px #999, 10px 10px 0px #777;
}

@keyframes float {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-20px) }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-shine {
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.8) 50%, transparent 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    animation: shine 3s infinite linear;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}

@media (max-width: 768px) {
    .animate-typing {
        font-size: 2rem !important;
    }
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.bg-opacity-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.opacity-90 {
    opacity: 0.9;
}

.partner-logo {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
        