/* ===========================
   ABOUT ACCOUNT PAGE
   =========================== */

#about-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
}

/* Topbar */
.about-topbar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-body);
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.about-topbar .back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    color: var(--text-main);
    background: transparent;
    border: none;
    transition: background 0.15s;
    flex-shrink: 0;
}

.about-topbar .back-btn:hover {
    background: var(--hover-bg);
}

.about-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

/* Body konten */
.about-body {
    padding: 24px 16px 32px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* Card avatar + nama */
.about-user-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 20px;
}

.about-avatar {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    display: block;
    flex-shrink: 0;
}

.about-user-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.about-user-name:hover {
    text-decoration: underline;
}

.about-user-handle {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Badge inline */
.verified-badge-inline {
    color: #1D9BF0;
    font-size: 16px;
    line-height: 1;
}

.premium-badge-inline {
    color: #E2B719;
    font-size: 14px;
    line-height: 1;
}

/* Deskripsi */
.about-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 20px;
    line-height: 1.5;
    text-align: left;
}

/* Item baris info */
.about-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-item:first-of-type {
    border-top: 1px solid var(--border-color);
}

.about-item-clickable {
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.15s;
    padding: 16px 8px;
    margin: 0 -8px;
}

.about-item-clickable:hover {
    background: var(--hover-bg);
}

.about-item-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.about-item-icon.verified-icon {
    color: #1D9BF0;
}

.about-item-icon.premium-icon {
    color: #E2B719;
}

.about-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.about-item-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.about-item-value {
    font-size: 14px;
    color: var(--text-secondary);
}

.about-item-arrow {
    color: var(--text-secondary);
    font-size: 14px;
    flex-shrink: 0;
}

.about-item-arrow i {
    transition: transform 0.2s ease;
}

/* Info toggle terverifikasi */
.about-verified-info {
    background: var(--hover-bg);
    border-radius: 10px;
    padding: 12px 14px;
    margin: 4px 0 8px;
}

.about-verified-info p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Link kembali ke profil */
.about-back-link {
    margin-top: 28px;
    text-align: center;
}

.about-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color, #1D9BF0);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: background 0.15s;
}

.about-back-link a:hover {
    background: var(--hover-bg);
}