@import "tailwindcss";
.hud-glass {
    background: rgba(11, 18, 33, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 229, 255, 0.05);
}

.hud-spec-tag {
    border-left: 2px solid #00e5ff;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.1) 0%, transparent 100%);
}


.glass-panel {
    background: rgba(22, 34, 53, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hologram-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 260px;
    background: linear-gradient( to bottom, rgba(11, 18, 33, 0) 0%, rgba(11, 18, 33, 0.35) 35%, rgba(11, 18, 33, 0.75) 70%, rgba(11, 18, 33, 1) 100% );
    pointer-events: none;
    z-index: 5;
}

.next-section {
    position: relative;
    margin-top: -120px;
    padding: 160px 0 80px;
    background: transparent;
    z-index: 20;
}