.sf__title {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-7);
    color: var(--text-default);
    margin-bottom: 0.4rem;
}

.sf__description {
    color: var(--text-secondary);
    font-size: var(--font-size-m);
    display: block;
    margin-bottom: 1.8rem;
}

.sf__search {
    margin-bottom: 2rem;
}

.sf__input-wrapper {
    display: flex;
    gap: 0.8rem;
    background-color: var(--card);
    border: 1px solid var(--transparent-10-w);
    border-radius: var(--br-16);
    padding: 0.6rem;
}

.sf__input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.2rem;
    color: var(--text-default);
    font-size: var(--font-size-m);
    outline: none;
}

.sf__input-wrapper button {
    padding: 0.82rem 2rem;
    border-radius: var(--br-10);
    border: none;
    font-weight: var(--font-weight-6);
    background: var(--span);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.sf__input-wrapper button:hover {
    opacity: 0.9;
}

.sf__card {
    background: var(--card);
    border-radius: var(--br-16);
    border: 1px solid var(--transparent-5-w);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sf__card.height-100 {
    height: calc(100% - 1.5rem);
}

.sf__copycards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sf__copycards-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--input-form);
    border: 1px solid var(--transparent-5-w);
    border-radius: var(--br-12);
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.sf__copycards-card:hover {
    border-color: var(--transparent-20-w);
    transform: translateY(-2px);
}

.sf__copycards-title {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    font-weight: var(--font-weight-6);
}

.sf__copycards-text {
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-6);
    color: var(--text-default);
    font-family: monospace;
    word-break: break-all;
}

.sf__copycards-icon {
    color: var(--text-secondary);
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.sf__copycards-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.sf__user-header {
    position: relative;
    border-bottom: 1px solid var(--transparent-5-w);
    padding-top: 0.6rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--br-12);
}

.sf__user-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sf__user-details {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.sf__user-avatar {
    width: 86px;
    height: 86px;
    min-width: 86px;
    min-height: 86px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--span);
    box-sizing: border-box;
    flex-shrink: 0;
    display: block;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.sf__user-info h2 {
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-7);
    color: var(--text-default);
    margin-bottom: 0.4rem;
}

.sf__user-subinfo {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

.sf__user-subinfo-title {
    color: var(--text-secondary);
}

.sf__user-subinfo-value {
    color: var(--text-default);
    font-weight: var(--font-weight-6);
    margin-left: 0.3rem;
}

.sf__user-comment {
    padding: 0.6rem 1rem;
    border-radius: var(--br-8);
    font-size: var(--font-size-s);
}

.sf__user-comment.good {
    background: rgba(100, 206, 130, 0.1);
    border: 1px solid rgba(100, 206, 130, 0.25);
    color: var(--green);
}

.sf__user-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    overflow: hidden;
}

.sf__user-bg video, .sf__user-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf__user-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.sf__user-link-btn {
    background: var(--transparent-10-w);
    border: 1px solid var(--transparent-10-w);
    border-radius: var(--br-8);
    padding: 0.64rem 1.1rem;
    color: var(--text-default);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    text-decoration: none;
}

.sf__user-link-btn:hover {
    background: var(--transparent-20-w);
    border-color: var(--span);
    color: #fff;
    transform: translateY(-2px);
}

.sf__user-link-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

.sf__user-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.sf__user-body-block {
    margin-bottom: 0.8rem;
}

.sf__user-body-block-title {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.sf__user-body-block-value {
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-6);
    color: var(--text-default);
}

.sf__stat-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.sf__stat-block {
    background: var(--input-form);
    border: 1px solid var(--transparent-5-w);
    border-radius: var(--br-12);
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.sf__stat-block-title {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.sf__stat-block-value {
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-7);
    color: var(--text-default);
}

.sf__stat-block svg {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    width: 1.8rem;
    height: 1.8rem;
    fill: var(--transparent-10-w);
    pointer-events: none;
}

.sf__table-img {
    width: 60px;
    height: 30px;
    border-radius: var(--br-6);
    overflow: hidden;
    display: inline-block;
}

.sf__table-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf__table-center {
    text-align: center;
}
