    :root {
        --felt: #4a3f6b;
        --ink: #181233;
        --dim: rgba(255, 255, 255, .74);
        --accent: #ffd166;
        --good: #7be08a;
    }

    #content ul {
        margin: 0 0 12px;
        padding-left: 20px;
    }

    #content li {
        margin: 6px 0;
    }

    #content .steps {
        list-style: none;
        padding: 0;
        margin: 0 0 12px;
        counter-reset: s;
    }

    #content .steps li {
        position: relative;
        padding: 8px 0 8px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    #content .steps li::before {
        counter-increment: s;
        content: counter(s);
        position: absolute;
        left: 0;
        top: 8px;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--accent);
        color: var(--ink);
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }