html,
body {
    background: #000;
}

.screen {
    max-width: none;
    width: 100%;
    padding: 13px 8px 28px;
    background:
        radial-gradient(ellipse at 50% 54%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.018) 15%, rgba(0, 0, 0, 0) 38%),
        linear-gradient(180deg, #030303 0%, #000 100%);
}

.screen::before {
    top: 174px;
    width: min(330px, 88vw);
    opacity: 0.5;
}

.page-header {
    grid-template-columns: 34px 1fr 34px;
    min-height: 34px;
    margin-bottom: 19px;
}

.page-title {
    color: #85858a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.15;
}

.back-btn {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

.back-btn::before {
    width: 7px;
    height: 7px;
    border-left-width: 1.5px;
    border-bottom-width: 1.5px;
    margin-left: 3px;
}

.content {
    padding-top: 0;
}

.accordion-stack {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 377px;
    margin: 0 auto;
}

.accordion-card {
    overflow: hidden;
    border-radius: 10px;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.accordion-toggle {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 13px;
    color: inherit;
    text-align: left;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.accordion-heading {
    max-width: 165px;
    color: #f3f3f3;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.24;
}

.accordion-meta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    color: #87878c;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
}

.accordion-chevron {
    width: 9px;
    height: 9px;
    position: relative;
}

.accordion-chevron::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 2px;
    width: 4px;
    height: 4px;
    border-right: 1.3px solid #707075;
    border-bottom: 1.3px solid #707075;
    transform: rotate(45deg);
    transition: transform 150ms ease, top 150ms ease;
}

.accordion-card.is-open .accordion-toggle {
    min-height: 44px;
    padding-bottom: 7px;
}

.accordion-card.is-open .accordion-heading {
    max-width: none;
}

.accordion-card.is-open .accordion-chevron::before {
    top: 4px;
    transform: rotate(225deg);
}

.card-body {
    padding: 0 13px 16px;
    color: #b6b6bb;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.43;
}

.card-body p {
    margin: 0;
}

.card-body p + p {
    margin-top: 18px;
}

.card-body strong {
    color: #fff;
    font-weight: 800;
}

.home-indicator {
    background: #fff;
}

@media (max-width: 360px) {
    .accordion-toggle {
        padding-left: 10px;
        padding-right: 10px;
    }

    .accordion-heading {
        max-width: 145px;
        font-size: 12px;
    }

    .accordion-meta {
        font-size: 8px;
    }
}
