.dice-shell {
    display: grid;
    gap: var(--space-4);
    place-items: center;
}

.cube-scene {
    height: 190px;
    perspective: 900px;
    width: 190px;
}

.cube {
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 900ms cubic-bezier(0.2, 0.9, 0.2, 1);
    width: 100%;
}

.cube-face {
    align-items: center;
    background: linear-gradient(135deg, var(--surface-strong), rgba(255, 255, 255, 0.18));
    border: 1px solid var(--stroke-strong);
    border-radius: 26px;
    display: flex;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    height: 190px;
    justify-content: center;
    padding: 1rem;
    position: absolute;
    text-align: center;
    width: 190px;
}
