.live-grid-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;

    --cell-size: 20px;
    --cell-gap: 2px;
}

.live-grid-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 70%);
    z-index: 10;
}

.live-block {
    position: absolute;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    will-change: top, left;
    overflow: hidden;
}

.live-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.live-block.accent-1 {
    background-color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.live-block.accent-2 {
    background-color: var(--accent-2);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.live-block.accent-4 {
    background-color: var(--accent-4);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.live-block.accent-8 {
    background-color: var(--accent-8);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.live-block.accent-16 {
    background-color: var(--accent-16);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}