* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.5;
}

.screen {
    width: 100%;
    max-width: 414px;
    margin: 0 auto;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 50% 58%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 18%, rgba(0,0,0,0) 42%),
        linear-gradient(180deg, rgba(8,8,8,0.2) 0%, rgba(0,0,0,0.95) 25%, rgba(0,0,0,1) 100%),
        #000;
    padding: 22px 22px 40px;
}

.page-header {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    align-items: center;
    margin-bottom: 32px;
    gap: 16px;
}

.page-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #f0f0f0;
    letter-spacing: -0.02em;
    margin: 0;
}

.header-spacer {
    width: 52px;
    height: 52px;
}

.back-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 1px 2px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.back-btn::before {
    content: "";
    width: 11px;
    height: 11px;
    border-left: 2.5px solid #8e8e93;
    border-top: 2.5px solid #8e8e93;
    transform: rotate(-45deg);  /* ← повернуто Налево */
    margin-left: 2px;
}

.content {
    padding-top: 8px;
}

.text-block {
    font-size: 17px;
    line-height: 1.55;
    color: #e8e8e8;
    text-align: justify;
}

.text-block p {
    margin-bottom: 24px;
    text-align: left;  /* выравнивание по левому краю как на скрине */
}

.text-block p:last-child {
    margin-bottom: 0;
}

.text-block strong {
    color: #fff;
    font-weight: 700;
}

/* Адаптив */
@media (max-width: 390px) {
    .screen {
        padding: 20px 20px 36px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .text-block {
        font-size: 16px;
    }
}
