.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin-top: 50px;
    perspective: 1000px;
}

.liquid-card {
    position: relative;
    height: 220px;
    background: rgba(10, 10, 12, 0.4);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    transition: transform 0.4s cubic-bezier(0.25, 1.5, 0.5, 1);
    opacity: 0;
    animation: liquidUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.liquid-card:nth-child(1) { animation-delay: 0.1s; }
.liquid-card:nth-child(2) { animation-delay: 0.2s; }
.liquid-card:nth-child(3) { animation-delay: 0.3s; }
.liquid-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes liquidUp {
    from { opacity: 0; transform: translateY(50px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.liquid-bg {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 60%);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
    z-index: 0;
}
.liquid-card:hover .liquid-bg {
    opacity: 1;
    transform: scale(1) rotate(10deg);
}

.liquid-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 50px -10px rgba(59, 130, 246, 0.15);
}

.lq-header {
    display: flex; align-items: center; gap: 15px;
    z-index: 2;
}
.lq-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    display: grid; place-items: center;
    font-size: 1.5rem; color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.lq-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; }
.lq-sub { font-size: 0.75rem; color: #666; font-family: 'JetBrains Mono', monospace; margin-top: 4px; }

.lq-version {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem; color: var(--accent);
    margin: 15px 0;
    padding: 8px 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: space-between; align-items: center;
    z-index: 2;
}

.lq-actions {
    display: flex; gap: 12px; z-index: 2; margin-top: auto;
}

.btn-liquid {
    flex: 1;
    position: relative;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px;
    cursor: pointer; overflow: hidden;
    display: flex; justify-content: center; align-items: center; gap: 8px;
    
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-lq-copy {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
}

.btn-lq-copy:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-lq-copy:active {
    transform: scale(0.96);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lq-dl {
    background: rgba(59, 130, 246, 0.1); 
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.05);
}

.btn-lq-dl::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-lq-dl:hover {
    background: #3b82f6; 
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 10px 40px -5px rgba(59, 130, 246, 0.5); 
    transform: translateY(-3px) scale(1.02);
}

.btn-lq-dl:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.btn-lq-dl:active {
    transform: scale(0.95);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}