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

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

.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: 18px 18px 28px;
}

.page-header {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    margin-bottom: 28px;
}

.page-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #8d8d93;
    letter-spacing: -0.02em;
}

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

.back-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.back-btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 2px solid #8e8e93;
    border-bottom: 2px solid #8e8e93;
    transform: rotate(45deg);
    margin-left: 4px;
}

.content {
    padding-top: 6px;
}

.menu-list {
    list-style: none;
}

.menu-list li + li {
    margin-top: 14px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 48px;
    padding: 6px 0 6px 0;
    color: inherit;
    text-decoration: none;
}

.menu-item-wide {
    margin-top: 34px !important;
}

.menu-text {
    min-width: 0;
    flex: 1;
}

.menu-title {
    font-size: 19px;
    line-height: 1.22;
    font-weight: 700;
    color: #f4f4f4;
    letter-spacing: -0.02em;
}

.menu-subtitle {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.28;
    color: #7c7c82;
    max-width: 250px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.arrow-btn::before {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid #8e8e93;
    border-right: 2px solid #8e8e93;
    transform: rotate(45deg);
    margin-left: -2px;
}

@media (max-width: 390px) {
    .screen {
        padding: 16px 16px 24px;
    }

    .menu-title {
        font-size: 18px;
    }

    .menu-subtitle {
        font-size: 14px;
        max-width: 220px;
    }
}
