.container {
    padding-bottom: 50px;
}

.server-rack {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #2a2a2a;
    position: relative;
    padding: 8px;
    border-bottom: none;
    display: flex;
    flex-direction: column;
}

.server-rack::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 8%;
    height: 30px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 0 0 8px 8px;
}

.server-rack::before {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 8px;
    background: #1a1a1a;
    border-radius: 4px;
}

.server-top {
    width: 100%;
    height: 20px;
    background: transparent;
    border-radius: 0;
    margin-bottom: 8px;
    display: none;
}

.screen {
    width: 100%;
    flex: 1;
    background: #fafafa;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.vm-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.vm-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.vm-item img {
    animation: float 2.5s ease-in-out infinite;
}

.vm-item:nth-child(1) img, .vm-item:nth-child(1) { animation-delay: 0.2s; }
.vm-item:nth-child(2) img, .vm-item:nth-child(2) { animation-delay: 0.4s; }
.vm-item:nth-child(3) img, .vm-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.vm-label {
    margin-top: 8px;
    font-size: 14px;
    color: var(--grey-c800);
    letter-spacing: 0.6px;
    opacity: 0.8;
}